mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=5222
This commit is contained in:
parent
90b9a9a001
commit
d2f8307ac6
|
@ -23297,3 +23297,8 @@ David 27 Jan 2005
|
||||||
|
|
||||||
sched/
|
sched/
|
||||||
sched_shmem.C
|
sched_shmem.C
|
||||||
|
|
||||||
|
David 27 Jan 2005
|
||||||
|
- build fixes from Reinhard
|
||||||
|
|
||||||
|
configure.ac
|
||||||
|
|
10
configure.ac
10
configure.ac
|
@ -140,6 +140,7 @@ dnl (note, we also don't define HAVE_LIBXXX, because currently they aren't used
|
||||||
AC_CHECK_LIB(nsl, gethostbyname, [BOINC_EXTRA_LIBS="-lnsl ${BOINC_EXTRA_LIBS}"])
|
AC_CHECK_LIB(nsl, gethostbyname, [BOINC_EXTRA_LIBS="-lnsl ${BOINC_EXTRA_LIBS}"])
|
||||||
AC_CHECK_LIB(socket, setservent, [BOINC_EXTRA_LIBS="-lsocket ${BOINC_EXTRA_LIBS}"])
|
AC_CHECK_LIB(socket, setservent, [BOINC_EXTRA_LIBS="-lsocket ${BOINC_EXTRA_LIBS}"])
|
||||||
AC_CHECK_LIB(z, gzopen, [BOINC_EXTRA_LIBS="-lz ${BOINC_EXTRA_LIBS}"])
|
AC_CHECK_LIB(z, gzopen, [BOINC_EXTRA_LIBS="-lz ${BOINC_EXTRA_LIBS}"])
|
||||||
|
AC_CHECK_LIB(dl, dlopen, [BOINC_EXTRA_LIBS="-ldl ${BOINC_EXTRA_LIBS}"])
|
||||||
|
|
||||||
dnl check for pthread
|
dnl check for pthread
|
||||||
ACX_PTHREAD(AC_DEFINE(HAVE_PTHREAD,1, [Have pthread]))
|
ACX_PTHREAD(AC_DEFINE(HAVE_PTHREAD,1, [Have pthread]))
|
||||||
|
@ -381,7 +382,14 @@ if test "${enable_client_release}" = yes; then
|
||||||
|
|
||||||
## extend this list as necessary if you find additional libs required on your system
|
## extend this list as necessary if you find additional libs required on your system
|
||||||
## ****************************************
|
## ****************************************
|
||||||
blacklist="gtk gdk gmodule gthread glib Xi png jpeg tiff nsl z socket"
|
blacklist="gtk gdk gmodule gthread glib Xi png jpeg tiff nsl socket"
|
||||||
|
case $target in
|
||||||
|
*linux*)
|
||||||
|
blacklist="$blacklist z"
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
;;
|
||||||
|
esac
|
||||||
## ****************************************
|
## ****************************************
|
||||||
|
|
||||||
## now we walk through the blacklist and turn all matching libs found in
|
## now we walk through the blacklist and turn all matching libs found in
|
||||||
|
|
Loading…
Reference in New Issue