From: <mik...@us...> - 2003-12-29 17:43:24
|
Update of /cvsroot/sharedaemon/sharedaemon-ui-web In directory sc8-pr-cvs1:/tmp/cvs-serv4357 Modified Files: configure Log Message: 29/12/2003 Mikael Barbeaux * Fixed configure script bugs under FreeBSD Index: configure =================================================================== RCS file: /cvsroot/sharedaemon/sharedaemon-ui-web/configure,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- configure 29 Dec 2003 16:39:01 -0000 1.3 +++ configure 29 Dec 2003 17:43:19 -0000 1.4 @@ -31,7 +31,7 @@ check_command g++ COMP_EXE=$COMM - check_command make + check_command make MAKE_EXE=$COMM check_command ar @@ -139,6 +139,9 @@ if test $OS_TEST = "MINGW" then echo "LIBS = -L. -lws2_32 -lsd_threads" >> Makefile + elif test $SYSTEM = "FreeBSD" + then + echo "LIBS = -L. -lsd_threads -pthread" >> Makefile else echo "LIBS = -L. -lpthread -lsd_threads" >> Makefile fi @@ -318,6 +321,11 @@ build_Makefile; echo "" echo "Configure script successfully ended." -echo "Now, type \"make\" for compiling the software." +if test $SYSTEM = "FreeBSD" +then + echo "Now, type \"gmake\" for compiling the software." +else + echo "Now, type \"make\" for compiling the software." +fi # End |