From e509c5af6f70eb3cfd846004b82caaca24fd4a3b Mon Sep 17 00:00:00 2001 From: "Andrew G. Morgan" Date: Wed, 29 May 2002 06:35:46 +0000 Subject: Relevant BUGIDs: 491466 Purpose of commit: cleanup Commit summary: --------------- These were all suggestions from the OS X patch provided by Luke Howard. There is another proposed patch for OS X support which promises to be a little cleaner with the heavy stuff, so I am committing these simple changes now, with the intention of moving to the other patch for the big stuff (see 534205). --- configure.in | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'configure.in') diff --git a/configure.in b/configure.in index f4048fef..69087a03 100644 --- a/configure.in +++ b/configure.in @@ -222,6 +222,12 @@ AC_SUBST(HAVE_LIBNSL) AC_CHECK_LIB(pwdb, pwdb_db_name, HAVE_LIBPWDB=yes ; AC_DEFINE(HAVE_LIBPWDB), HAVE_LIBPWDB=no) AC_SUBST(HAVE_LIBPWDB) +AC_CHECK_LIB(fl, yywrap, HAVE_LIBFLEX=yes ; AC_DEFINE(HAVE_LIBFLEX), + HAVE_LIBFLEX=no) +AC_SUBST(HAVE_LIBFLEX) +AC_CHECK_LIB(l, yywrap, HAVE_LIBLEX=yes ; AC_DEFINE(HAVE_LIBLEX), + HAVE_LIBLEX=no) +AC_SUBST(HAVE_LIBLEX) dnl Checks for header files. AC_HEADER_DIRENT @@ -337,6 +343,11 @@ else ### Non-gcc needs attention on per-OS basis ### case "$OS" in + darwin) +# add some stuff here (see sourceforge bug 534205) +# DOCDIR=/System/Documentation/Administration/Libraries/PAM +# MANDIR=/usr/share/man + ;; solaris) ### Support for Solaris-C OS_CFLAGS="" -- cgit v1.2.3