1 dnl Process this file with autoconf to produce a configure script.
2 AC_INIT(conf/pam_conv1/pam_conv.y)
4 dnl The configuration header file
5 AC_CONFIG_HEADER(_pam_aconf.h)
11 LIBPAM_VERSION_MAJOR=0
12 LIBPAM_VERSION_MINOR=76
14 AC_SUBST(LIBPAM_VERSION_MAJOR)
15 AC_SUBST(LIBPAM_VERSION_MINOR)
16 AC_DEFINE(LIBPAM_VERSION_MAJOR)
17 AC_DEFINE(LIBPAM_VERSION_MINOR)
20 dnl By default, everything under PAM is installed under the root fs.
26 dnl Rules needed for the following (hardcoded Linux defaults for now)
30 CONF_CFLAGS= ; AC_SUBST(CONF_CFLAGS)
31 MKDIR="mkdir -p" ; AC_SUBST(MKDIR)
32 LOCALSRCDIR=`/bin/pwd` ; AC_SUBST(LOCALSRCDIR)
33 OS=`uname|sed -e 'y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/'`
36 SHLIBMODE=755 ; AC_SUBST(SHLIBMODE)
38 dnl These are most likely platform specific - I think HPUX differs
39 DYNTYPE=so ; AC_SUBST(DYNTYPE)
40 USESONAME=yes ; AC_SUBST(USESONAME)
41 SOSWITCH=-soname ; AC_SUBST(SOSWITCH)
42 NEEDSONAME=no ; AC_SUBST(NEEDSONAME)
43 LDCONFIG=/sbin/ldconfig ; AC_SUBST(LDCONFIG)
45 dnl ### Should enable this INSTALL detection.
46 dnl ### Would need to distribute GNU's config.guess and config.sub
48 INSTALL=/usr/bin/install ; AC_SUBST(INSTALL)
50 dnl Checks for programs.
60 dnl options and defaults
63 dnl lots of debugging information goes to /tmp/pam-debug.log
65 [ --enable-debug qspecify you are building with debugging on],
66 WITH_DEBUG=yes ; AC_DEFINE(DEBUG) , WITH_DEBUG=no)
69 dnl build specially named libraries (for debugging purposes)
70 AC_ARG_ENABLE(libdebug,
71 [ --enable-libdebug specify you are building debugging libraries],
72 WITH_LIBDEBUG=yes ; AC_DEFINE(WITH_LIBDEBUG) , WITH_LIBDEBUG=no)
73 AC_SUBST(WITH_LIBDEBUG)
75 dnl packaging convenience
76 AC_ARG_ENABLE(fakeroot,
77 [ --enable-fakeroot=<path to packaging directory>], FAKEROOT=$enableval)
80 AC_ARG_ENABLE(securedir,
81 [ --enable-securedir=<path to location of PAMs> [default \$libdir/security]],
82 SECUREDIR=$enableval, SECUREDIR=$libdir/security)
85 AC_ARG_ENABLE(sconfigdir,
86 [ --enable-sconfigdir=<path to module conf files> [default \$sysconfdir/security]],
87 SCONFIGDIR=$enableval, SCONFIGDIR=$sysconfdir/security)
90 AC_ARG_ENABLE(suplementedir,
91 [ --enable-suplementedir=<path to module helper binaries> [default \$sbindir]],
92 SUPLEMENTED=$enableval, SUPLEMENTED=$sbindir)
95 AC_ARG_ENABLE(includedir,
96 [ --enable-includedir=<path to include location> - where to put <security>],
97 INCLUDEDIR=$enableval, INCLUDEDIR=/usr/include)
100 AC_ARG_ENABLE(pamlocking,
101 [ --enable-pamlocking configure libpam to observe a global authentication lock],
102 WITH_PAMLOCKING=yes ; AC_DEFINE(PAM_LOCKING) , WITH_PAMLOCKING=no)
103 AC_SUBST(WITH_PAMLOCKING)
105 AC_ARG_ENABLE(uglyhack,
106 [ --enable-uglyhack configure libpam to try to honor old pam_strerror syntax],
107 AC_DEFINE(UGLY_HACK_FOR_PRIOR_BEHAVIOR_SUPPORT))
109 AC_ARG_ENABLE(read-both-confs,
110 [ --enable-read-both-confs read both /etc/pam.d and /etc/pam.conf files],
111 AC_DEFINE(PAM_READ_BOTH_CONFS))
112 AC_SUBST(PAM_READ_BOTH_CONFS)
114 AC_ARG_ENABLE(static-libpam, [ --enable-static-libpam build a libpam.a library],
115 STATIC_LIBPAM=yes , STATIC_LIBPAM=no)
116 AC_SUBST(STATIC_LIBPAM)
118 AC_ARG_ENABLE(dynamic-libpam,
119 [ --disable-dynamic-libpam do not build a shared libpam library],
120 DYNAMIC_LIBPAM=no, DYNAMIC_LIBPAM=yes)
121 AC_SUBST(DYNAMIC_LIBPAM)
123 DYNAMIC=-DPAM_DYNAMIC
126 AC_ARG_ENABLE(static-modules,
127 [ --enable-static-modules do not make the modules dynamically loadable],
131 AC_ARG_ENABLE(lckpwdf,
132 [ --disable-lckpwdf do not use the lckpwdf function],
133 WITH_LCKPWDF=no, WITH_LCKPWDF=yes)
134 AC_SUBST(WITH_LCKPWDF)
136 AC_CHECK_HEADERS(paths.h)
137 AC_ARG_WITH(mailspool,
138 [ --with-mailspool path to mail spool directory
139 [default _PATH_MAILDIR if defined in paths.h, otherwise /var/spool/mail]],
140 with_mailspool=${withval})
141 if test x$with_mailspool != x ; then
142 pam_mail_spool="\"$with_mailspool\""
152 }], pam_mail_spool="_PATH_MAILDIR",
153 pam_mail_spool="\"/var/spool/mail\"",
154 pam_mail_spool="\"/var/spool/mail\"")
156 AC_DEFINE_UNQUOTED(PAM_PATH_MAILDIR, $pam_mail_spool)
158 dnl Checks for libraries.
159 AC_CHECK_LIB(c, __libc_sched_setscheduler, PAM_NEEDS_LIBC=, PAM_NEEDS_LIBC=-lc)
160 AC_SUBST(PAM_NEEDS_LIBC)
162 dnl Checks for the existence of lckpwdf in libc
163 AC_CHECK_LIB(c, lckpwdf, HAVE_LCKPWDF=yes, HAVE_LCKPWDF=no)
164 AC_SUBST(HAVE_LCKPWDF)
166 dnl Checks for the existence of libdl - on BSD its part of libc
167 AC_CHECK_LIB(dl, dlopen, LIBDL=-ldl)
171 dnl At least on Solaris, the existing libcrack must be dynamic.
172 dnl Ought to introduce a check for this.
174 AC_CHECK_LIB(crack, FascistCheck, HAVE_LIBCRACK=yes ; AC_DEFINE(HAVE_LIBCRACK),
176 AC_SUBST(HAVE_LIBCRACK)
178 AC_CHECK_LIB(crypt, fcrypt, HAVE_LIBCRYPT=yes ; AC_DEFINE(HAVE_LIBCRYPT),
180 AC_SUBST(HAVE_LIBCRYPT)
181 AC_CHECK_LIB(util, logwtmp, HAVE_LIBUTIL=yes ; AC_DEFINE(HAVE_LIBUTIL),
183 AC_SUBST(HAVE_LIBUTIL)
184 AC_CHECK_LIB(ndbm, dbm_store, HAVE_LIBNDBM=yes ; AC_DEFINE(HAVE_LIBNDBM),
186 AC_SUBST(HAVE_LIBNDBM)
187 AC_CHECK_LIB(db, dbm_store, HAVE_LIBDB=yes ; AC_DEFINE(HAVE_LIBDB),
190 AC_CHECK_LIB(fl, yylex, yyterminate, HAVE_LIBFL=yes ; AC_DEFINE(HAVE_LIBFL),
193 AC_CHECK_LIB(nsl, yp_maplist, HAVE_LIBNSL=yes ; AC_DEFINE(HAVE_LIBNSL),
195 AC_SUBST(HAVE_LIBNSL)
196 AC_CHECK_LIB(pwdb, pwdb_db_name, HAVE_LIBPWDB=yes ; AC_DEFINE(HAVE_LIBPWDB),
198 AC_SUBST(HAVE_LIBPWDB)
200 dnl Checks for header files.
204 AC_CHECK_HEADERS(fcntl.h limits.h malloc.h sys/file.h sys/ioctl.h sys/time.h syslog.h termio.h unistd.h)
206 dnl Linux wants features.h in some of the source files.
207 AC_CHECK_HEADERS(features.h)
209 dnl For module/pam_cracklib
210 AC_CHECK_HEADERS(crypt.h)
212 dnl For module/pam_userdb
213 AC_CHECK_HEADERS(ndbm.h db.h)
214 dnl I suspect the following two lines are a hack.
215 HAVE_NDBM_H=$ac_cv_header_ndbm_h
216 AC_SUBST(HAVE_NDBM_H)
218 dnl For module/pam_lastlog
219 AC_CHECK_HEADERS(lastlog.h utmp.h utmpx.h)
221 dnl This following rule should be made conditional upon HAVE_LIBCRYPT
224 dnl Look for cracklib dictionary
225 AC_MSG_CHECKING(path to cracklib dictionary)
226 DICT_DIR_CANDIDATES="/usr/lib /usr/share/dict /usr/share/lib \
227 /usr/local/lib /usr/local/share/lib"
228 DICT_FILE_CANDIDATES="pw_dict cracklib_dict"
230 for d in $DICT_DIR_CANDIDATES ; do
231 for f in $DICT_FILE_CANDIDATES ; do
232 if test -r $d/$f.hwm ; then
233 CRACKLIB_DICTPATH=$d/$f
235 elif test -r $d/dict/$f.hwm ; then
236 CRACKLIB_DICTPATH=$d/dict/$f
241 if test -z "$CRACKLIB_DICTPATH" ; then
242 AC_MSG_RESULT(none found)
244 AC_MSG_RESULT($CRACKLIB_DICTPATH)
246 AC_SUBST(CRACKLIB_DICTPATH)
248 dnl Set FLAGS, linker options etc. depending on C compiler.
249 dnl gcc is tested and much preferred; others less so, if at all
251 dnl If compiling with gcc, linking is also supposed to be done with gcc;
252 dnl since we use linker-specific arguments, we may not gain anything by
253 dnl switching LD_L over, but I think we can use LD_D as-is.
255 dnl For the moment, gcc is enforced above at "CC=gcc".
257 dnl There is an issue over _POSIX_SOURCE _BSD_SOURCE and _GNU_SOURCE .
258 dnl The original "Linux-PAM" had blanket inclusion. But portability
259 dnl requires their default absence: if particular OSes require them,
260 dnl this should be done selectively.
262 GCC_WARNINGS="-Wall -Wwrite-strings \
263 -Wpointer-arith -Wcast-qual -Wcast-align \
264 -Wstrict-prototypes -Wmissing-prototypes \
265 -Wnested-externs -Winline -Wshadow"
267 if test "$GCC" = yes; then
269 ### Non-Linux needs attention on per-OS basis
270 OS_CFLAGS="-ansi -D_POSIX_SOURCE -pedantic"
271 WARNINGS="$GCC_WARNINGS"
273 #can/should we use LD=gcc ???
275 LD_D="gcc -shared -Xlinker -x"
276 LD_L="$LD -x -shared"
279 CC_STATIC="-Xlinker -export-dynamic"
282 ### Non-gcc needs attention on per-OS basis
284 ### [These are Solaris-C specific...]
289 LD_D="cc -z text -G -R."
306 dnl Checks for typedefs, structures, and compiler characteristics.
316 dnl Checks for library functions.
318 AC_PROG_GCC_TRADITIONAL
321 AC_CHECK_FUNCS(gethostname gettimeofday mkdir select strcspn strdup strerror strspn strstr strtol uname)
323 dnl Checks for programs/utilities
324 AC_CHECK_PROG(HAVE_SGML2TXT, sgml2txt, yes, no)
325 AC_CHECK_PROG(HAVE_SGML2HTML, sgml2html, yes, no)
326 AC_CHECK_PROG(HAVE_SGML2LATEX, sgml2latex, yes, no)
327 if test $HAVE_SGML2LATEX = "yes" ; then
328 if sgml2latex -h | grep -e --paper | grep ' -p ' > /dev/null ; then
329 PSER="sgml2latex -o ps"
334 AC_CHECK_PROG(HAVE_SGML2PS, sgml2ps, yes, no)
335 if test $HAVE_SGML2PS = yes ; then
341 dnl Files to be created from when we run configure
342 AC_OUTPUT(Make.Rules)