Fix for AIX getmsg.

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@256 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Unknown User d91-jda
1996-02-11 14:58:45 +00:00
parent 139238843e
commit 05e959ead5
2 changed files with 8 additions and 3 deletions

View File

@@ -225,9 +225,14 @@ AC_DEFINE(OLD_ENVIRON)
AC_SUBST(OLD_ENVIRON)
#
# AIX needs /lib/pse.exp for getmsg
# AIX needs /lib/pse.exp for getmsg, but alas that file is broken in
# AIX414
#
if test -f /lib/pse.exp ; then LIBS="$LIBS -bI:/lib/pse.exp"; fi
if test -f /lib/pse.exp ;then
GETMSG_LIB="getmsg.exp";
AC_SUBST(GETMSG_LIB)
fi
AC_CHECK_LIB(termcap, tgetent)
AC_CHECK_LIB(curses, setupterm)

View File

@@ -10,7 +10,7 @@ AR = ar
RANLIB = @RANLIB@
DEFS = @DEFS@
CFLAGS = @CFLAGS@
LIBS = @LIBS@
LIBS = @LIBS@ @GETMSG_LIBS@
INSTALL = @INSTALL@
MKDIRHIER = @top_srcdir@/../../mkdirhier-sh