- Solaris build fix from Gary E. Miller <gem@rellim.com>
This commit is contained in:
parent
2edcda5d4c
commit
75b1d106d7
|
@ -1,6 +1,7 @@
|
|||
20000107
|
||||
- New config.sub and config.guess to fix problems on SCO. Supplied
|
||||
by Gary E. Miller <gem@rellim.com>
|
||||
- Solaris build fix from Gary E. Miller <gem@rellim.com>
|
||||
|
||||
20000106
|
||||
- Documentation update & cleanup
|
||||
|
|
15
configure.in
15
configure.in
|
@ -40,6 +40,9 @@ AC_C_INLINE
|
|||
|
||||
dnl Check for some target-specific stuff
|
||||
case "$host" in
|
||||
*-*-aix*)
|
||||
AFS_LIBS="-lld"
|
||||
;;
|
||||
*-*-hpux10*)
|
||||
if test -z "$GCC"; then
|
||||
CFLAGS="$CFLAGS -Aa"
|
||||
|
@ -58,12 +61,6 @@ case "$host" in
|
|||
AC_DEFINE(DISABLE_SHADOW)
|
||||
fi
|
||||
;;
|
||||
*-*-solaris*)
|
||||
AC_DEFINE(USE_UTMPX)
|
||||
;;
|
||||
*-*-aix*)
|
||||
AFS_LIBS="-lld"
|
||||
;;
|
||||
*-*-irix5*)
|
||||
no_libsocket=1
|
||||
no_libnsl=1
|
||||
|
@ -73,6 +70,12 @@ case "$host" in
|
|||
no_libsocket=1
|
||||
no_libnsl=1
|
||||
;;
|
||||
*-*-solaris*)
|
||||
AC_DEFINE(USE_UTMPX)
|
||||
;;
|
||||
*-*-sysv*)
|
||||
LIBS="$LIBS -lgen -lsocket"
|
||||
;;
|
||||
esac
|
||||
|
||||
dnl Check for OpenSSL/SSLeay directories.
|
||||
|
|
Loading…
Reference in New Issue