summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog1
-rw-r--r--configure.in15
2 files changed, 10 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index 99a7c0b08..e55d35728 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,7 @@
120000107 120000107
2 - New config.sub and config.guess to fix problems on SCO. Supplied 2 - New config.sub and config.guess to fix problems on SCO. Supplied
3 by Gary E. Miller <gem@rellim.com> 3 by Gary E. Miller <gem@rellim.com>
4 - Solaris build fix from Gary E. Miller <gem@rellim.com>
4 5
520000106 620000106
6 - Documentation update & cleanup 7 - Documentation update & cleanup
diff --git a/configure.in b/configure.in
index 127cd055e..a6654022b 100644
--- a/configure.in
+++ b/configure.in
@@ -40,6 +40,9 @@ AC_C_INLINE
40 40
41dnl Check for some target-specific stuff 41dnl Check for some target-specific stuff
42case "$host" in 42case "$host" in
43*-*-aix*)
44 AFS_LIBS="-lld"
45 ;;
43*-*-hpux10*) 46*-*-hpux10*)
44 if test -z "$GCC"; then 47 if test -z "$GCC"; then
45 CFLAGS="$CFLAGS -Aa" 48 CFLAGS="$CFLAGS -Aa"
@@ -58,12 +61,6 @@ case "$host" in
58 AC_DEFINE(DISABLE_SHADOW) 61 AC_DEFINE(DISABLE_SHADOW)
59 fi 62 fi
60 ;; 63 ;;
61*-*-solaris*)
62 AC_DEFINE(USE_UTMPX)
63 ;;
64*-*-aix*)
65 AFS_LIBS="-lld"
66 ;;
67*-*-irix5*) 64*-*-irix5*)
68 no_libsocket=1 65 no_libsocket=1
69 no_libnsl=1 66 no_libnsl=1
@@ -73,6 +70,12 @@ case "$host" in
73 no_libsocket=1 70 no_libsocket=1
74 no_libnsl=1 71 no_libnsl=1
75 ;; 72 ;;
73*-*-solaris*)
74 AC_DEFINE(USE_UTMPX)
75 ;;
76*-*-sysv*)
77 LIBS="$LIBS -lgen -lsocket"
78 ;;
76esac 79esac
77 80
78dnl Check for OpenSSL/SSLeay directories. 81dnl Check for OpenSSL/SSLeay directories.