mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-27 01:59:38 -05:00
Added -lnet for BeOS libs. Also need to add some sort of workaround for inet_aton() since BeOS does not have this call.
This commit is contained in:
parent
af25d94db9
commit
8c8249c005
2 changed files with 4 additions and 4 deletions
4
configure
vendored
4
configure
vendored
|
|
@ -2803,7 +2803,7 @@ if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
|
|||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
ac_save_LIBS="$LIBS"
|
||||
LIBS="-lbe -lroot $LIBS"
|
||||
LIBS="-lbe -lroot -lnet $LIBS"
|
||||
cat > conftest.$ac_ext <<EOF
|
||||
#line 2809 "configure"
|
||||
#include "confdefs.h"
|
||||
|
|
@ -2831,7 +2831,7 @@ LIBS="$ac_save_LIBS"
|
|||
fi
|
||||
if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
|
||||
echo "$ac_t""yes" 1>&6
|
||||
LIBS="$LIBS -lbe -lroot"
|
||||
LIBS="$LIBS -lbe -lroot -lnet"
|
||||
else
|
||||
echo "$ac_t""no" 1>&6
|
||||
:
|
||||
|
|
|
|||
|
|
@ -369,8 +369,8 @@ AC_AIX
|
|||
AC_ISC_POSIX
|
||||
AC_MINIX
|
||||
|
||||
dnl BeOS requires -lbe -lroot
|
||||
AC_CHECK_LIB(be, be_app, [LIBS="$LIBS -lbe -lroot"], :, [-lroot])
|
||||
dnl BeOS requires -lbe -lroot -lnet
|
||||
AC_CHECK_LIB(be, be_app, [LIBS="$LIBS -lbe -lroot -lnet"], :, [-lroot -lnet])
|
||||
|
||||
dnl Checks for system services
|
||||
AC_CYGWIN
|
||||
|
|
|
|||
Loading…
Reference in a new issue