Re: [Kma-anyg] KMA 0.3.2 released
Brought to you by:
bstard
|
From: Jarl v. K. <ja...@xs...> - 2004-04-07 17:19:05
|
>Congratulations with the new version!
>
>Hate to bug you on this...
>FreeBSD 4.9 also requires the pthread.h in stead of malloc.h, so the check
>in dp500.h
> #ifndef FREEBSD
> #include <malloc.h>
> #else
> #include <pthread.h>
> #endif
>fails for version 4.9.
>I tried to set in the configure.in file
> case "${build_os}" in
> freebsd4*) OS=FREEBSD4 ;;
> freebsd5*) OS=FREEBSD ;;
> dnl *) OS=LINUX ;;
> esac
>to
> freebsd4*) OS=FREEBSD ;;
>but that did not make a difference. It still compiles with the -D FREEBSD4
>set.
>
>
>
Did you ran ./autogen.sh after editing configure.in? Doing so rebuilds
configure, and will probably fix compilation on freebsd4.x. Maybe you
can check.. I commited to changes to cvs just now.
Jarl
|