mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-14 21:47:19 +02:00
See ChangeLog: Mon May 17 21:54:43 CEST 1999 Werner Koch
This commit is contained in:
parent
a1dcec76c1
commit
3983f30bd2
24 changed files with 378 additions and 182 deletions
16
configure.in
16
configure.in
|
@ -7,6 +7,7 @@ AC_REVISION($Revision$)dnl
|
|||
dnl Must reset CDPATH so that bash's cd does not print to stdout
|
||||
CDPATH=
|
||||
|
||||
AC_PREREQ(2.13)
|
||||
AC_INIT(g10/g10.c)
|
||||
AC_CONFIG_AUX_DIR(scripts)
|
||||
AM_CONFIG_HEADER(config.h)
|
||||
|
@ -221,9 +222,20 @@ if test "$try_gdbm" = yes; then
|
|||
AC_CHECK_LIB(gdbm,gdbm_firstkey)
|
||||
fi
|
||||
|
||||
dnl Solaris needs -lsocket and -lnsl
|
||||
AC_CHECK_LIB(socket, socket)
|
||||
dnl Solaris needs -lsocket and -lnsl. Unisys system includes
|
||||
dnl gethostbyname in libsocket but needs libnsl for socket.
|
||||
AC_CHECK_LIB(nsl, gethostbyname)
|
||||
AC_CHECK_LIB(socket, socket, ac_need_libsocket=1, ac_try_nsl=1)
|
||||
if test x$ac_need_libsocket = x1; then
|
||||
LIBS="$LIBS -lsocket"
|
||||
fi
|
||||
if test x$ac_try_nsl = x1; then
|
||||
AC_CHECK_LIB(nsl, gethostbyname, ac_need_libnsl=1)
|
||||
if test x$ac_need_libnsl = x1
|
||||
then
|
||||
LIBS="$LIBS -lnsl"
|
||||
fi
|
||||
fi
|
||||
|
||||
|
||||
if test "$try_dynload" = yes ; then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue