summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Rice <tim@multitalents.net>2018-03-25 10:00:21 -0700
committerTim Rice <tim@multitalents.net>2018-03-25 10:00:21 -0700
commit4afeaf3dcb7dc70efd98fcfcb0ed28a6b40b820e (patch)
tree214f9ec728a6dc46ba6243c4209e176b82451935
parentbba02a5094b3db228ceac41cb4bfca165d0735f3 (diff)
Use libiaf on all sysv5 systems
-rw-r--r--configure.ac6
1 files changed, 1 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac
index 54e187aa1..bedacc2db 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1091,20 +1091,16 @@ mips-sony-bsd|mips-sony-newsos4)
1091 AC_DEFINE([PASSWD_NEEDS_USERNAME]) 1091 AC_DEFINE([PASSWD_NEEDS_USERNAME])
1092 AC_DEFINE([BROKEN_TCGETATTR_ICANON]) 1092 AC_DEFINE([BROKEN_TCGETATTR_ICANON])
1093 TEST_SHELL=$SHELL # let configure find us a capable shell 1093 TEST_SHELL=$SHELL # let configure find us a capable shell
1094 check_for_libcrypt_later=1
1094 case "$host" in 1095 case "$host" in
1095 *-*-sysv5SCO_SV*) # SCO OpenServer 6.x 1096 *-*-sysv5SCO_SV*) # SCO OpenServer 6.x
1096 maildir=/var/spool/mail 1097 maildir=/var/spool/mail
1097 AC_DEFINE([BROKEN_LIBIAF], [1],
1098 [ia_uinfo routines not supported by OS yet])
1099 AC_DEFINE([BROKEN_UPDWTMPX]) 1098 AC_DEFINE([BROKEN_UPDWTMPX])
1100 AC_CHECK_LIB([prot], [getluid], [ LIBS="$LIBS -lprot" 1099 AC_CHECK_LIB([prot], [getluid], [ LIBS="$LIBS -lprot"
1101 AC_CHECK_FUNCS([getluid setluid], , , [-lprot]) 1100 AC_CHECK_FUNCS([getluid setluid], , , [-lprot])
1102 AC_DEFINE([HAVE_SECUREWARE])
1103 AC_DEFINE([DISABLE_SHADOW])
1104 ], , ) 1101 ], , )
1105 ;; 1102 ;;
1106 *) AC_DEFINE([LOCKED_PASSWD_STRING], ["*LK*"]) 1103 *) AC_DEFINE([LOCKED_PASSWD_STRING], ["*LK*"])
1107 check_for_libcrypt_later=1
1108 ;; 1104 ;;
1109 esac 1105 esac
1110 ;; 1106 ;;