From: Todd C. Miller Date: Tue, 26 Jul 1994 00:36:54 +0000 (+0000) Subject: no more static binaries for aix X-Git-Tag: SUDO_1_3_1~80 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=648570a53f124116c063798a45bf68beabf63678;p=sudo no more static binaries for aix --- diff --git a/configure.in b/configure.in index 36e6f5b7e..dc2431b27 100644 --- a/configure.in +++ b/configure.in @@ -67,9 +67,6 @@ case "$OS" in ;; "aix") echo "Looks like AIX" AC_DEFINE(_ALL_SOURCE) - if test -z "$GCC"; then - STATIC_FLAGS="-bnso -bI:/lib/syscalls.exp -bI:./aixcrypt.exp -liconv -bnodelcsect" - fi ;; "hp-ux") echo "Looks like HP-UX" if test -z "$GCC"; then @@ -120,9 +117,9 @@ case "$OS" in ;; esac dnl -dnl We can't make a static binary on solaris... +dnl We can't make a static binary on solaris and it causes probs on AIX dnl -if test -n "$GCC" -a -n "$OS" -a "$OS" != "solaris" ; then +if test -n "$GCC" -a -n "$OS" -a "$OS" != "solaris" -a "$OS" != "aix" ; then STATIC_FLAGS="-static" fi dnl