]> andersk Git - moira.git/blame - configure.in
make things depend on libmoira.a, libgdss.a, and rsaref.a as appropriate
[moira.git] / configure.in
CommitLineData
ea0caf4a 1AC_INIT(patchlevel.h)
2
3dnl On Athena at least, many of the packages (krb, zephyr, hesiod, etc)
4dnl will all be in /usr/athena... this hack lets us not end up with 10
5dnl copies of -I/usr/athena/include -L/usr/athena/lib in our command lines
6AC_DEFUN(MR_EXTEND, [
7 case $$1 in
8 *$2*) ;;
9 *) $1=$2\ $$1 ;;
10 esac
11])
12
13dnl Define for both C and Pro*C
14AC_DEFUN(MR_DEFINE, [
15 AC_DEFINE($1)
16 MR_EXTEND(PRO_C_DEFS, DEFINE=$1)
17])
18
19dnl Add to include path for both C and Pro*C
20AC_DEFUN(MR_INCLUDE, [
21 MR_EXTEND(CPPFLAGS, -I$1)
22 MR_EXTEND(PRO_C_INCLUDES, INCLUDE=$1)
23])
24
25dnl Add to lib path
26AC_DEFUN(MR_LIBS, [MR_EXTEND(LIBPATH, -L$1)])
27
28AC_PROG_CC
29AC_PROG_INSTALL
30AC_PROG_RANLIB
31AC_PROG_MAKE_SET
32
33if test "$athena" = true; then
34 enable_athena=yes
35 with_readline=/mit/gnu
25f58600 36 unset with_com_err
ea0caf4a 37 prefix=/afs/athena.mit.edu/system/moira
38 bindir=$prefix/arch/$ATHENA_SYS/bin
39 sbindir=$bindir
40fi
41
42# We currently just don't support changing this
43mrbindir=/moira/bin
44AC_SUBST(mrbindir)
45
46# Athena-local policy decisions
47AC_MSG_CHECKING(for Athena)
48AC_ARG_ENABLE(athena,
49 [ --enable-athena Enable Athena-specific policy decisions],
50 , [if test "$athena" = true; then
51 enableval=yes
52 else
53 enableval=no
54 fi])
55AC_MSG_RESULT($enableval)
56if test "$enableval" = yes; then
57 MR_DEFINE(ATHENA)
58fi
59
60# Networking libraries
61AC_CHECKING(network libraries...)
62AC_CHECK_FUNC(gethostbyname, :,
63 AC_CHECK_LIB(nsl, gethostbyname, ,
64 AC_CHECK_LIB(resolv, gethostbyname)))
65AC_CHECK_FUNC(socket, :,
66 AC_CHECK_LIB(socket, socket, ,
67 AC_CHECK_LIB(socket, socket,
68 LIBS="-lsocket -lnsl $LIBS", :,
69 -lnsl)))
70
7f7f279f 71# com_err (required, but can be built)
72AC_MSG_CHECKING(for com_err)
73AC_ARG_WITH(com_err,
74 [ --with-com_err=PREFIX Specify location of com_err],
75 [AC_MSG_RESULT($withval)
76 if test $withval = "no"; then
77 AC_MSG_ERROR(com_err is required for Moira)
78 fi
79 if test $withval != "yes"; then
80 MR_INCLUDE($withval/include)
81 MR_LIBS($withval/lib)
82 fi
83 COMPILE_ET=compile_et],
84 [AC_MSG_RESULT(util/et)
85 COM_ERR_SUBDIR=util/et;
86 MR_INCLUDE(`pwd`/util/et)
87 MR_LIBS(`pwd`/util/et)
88 COMPILE_ET=`pwd`/util/et/compile_et
89 AC_CONFIG_SUBDIRS($COM_ERR_SUBDIR)])
90AC_SUBST(COM_ERR_SUBDIR)
91AC_SUBST(COMPILE_ET)
92
93# Kerberos (Kerberos 4 required, Kerberos 5 optional for reg_svr)
ea0caf4a 94AC_MSG_CHECKING(for Kerberos 4)
95AC_ARG_WITH(krb4,
96 [ --with-krb4=PREFIX Specify location of krb4],
97 [krb4="$withval"], [krb4=no])
98AC_MSG_RESULT($krb4)
99if test $krb4 = "no"; then
100 AC_MSG_ERROR(Kerberos is required for Moira)
101fi
102if test "$krb4" != yes; then
103 MR_INCLUDE($krb4/include)
104 if test -d "$krb4/include/kerberosIV"; then
105 MR_INCLUDE($krb4/include/kerberosIV)
106 fi
107 MR_LIBS($krb4/lib)
108elif test -d /usr/include/kerberosIV; then
109 MR_INCLUDE(/usr/include/kerberosIV)
110fi
111AC_CHECK_LIB(krb4, krb_rd_req,
112 [KRB4_LIBS="-lkrb4 -ldes425 -lkrb5 -lcrypto"],
113 [AC_CHECK_LIB(krb, krb_rd_req,
114 [KRB4_LIBS="-lkrb -ldes"],
115 [AC_MSG_ERROR(Kerberos 4 libraries not found)],
116 $LIBPATH -ldes)],
7f7f279f 117 $LIBPATH -ldes425 -lkrb5 -lcrypto -lcom_err)
ea0caf4a 118
7f7f279f 119AC_MSG_CHECKING(for Kerberos 5)
120AC_ARG_WITH(krb5,
121 [ --with-krb5=PREFIX Specify location of krb5 (for reg_svr)],
122 [krb5="$withval"], [krb5=no])
123AC_MSG_RESULT($krb5)
124if test "$krb5" != no; then
125 REG_SVR_DEFS=-DKRB5
126 if test "$krb5" != yes; then
127 REG_SVR_INCLUDES=-I$krb5/include
128 REG_SVR_LIBS=-L$krb5/lib
129 fi
130 REG_SVR_LIBS="$REG_SVR_LIBS -lkadm5clnt -lgssapi_krb5 -lgssrpc -ldyn -lkrb4 -ldes425 -lkrb5 -lcrypto"
131else
132 REG_SVR_DEFS=-DKRB4
133 REG_SVR_LIBS=-lkadm
134fi
135AC_SUBST(REG_SVR_DEFS)
136AC_SUBST(REG_SVR_INCLUDES)
137AC_SUBST(REG_SVR_LIBS)
33567bea 138
ea0caf4a 139# Hesiod support
140AC_MSG_CHECKING(for Hesiod)
141AC_ARG_WITH(hesiod,
142 [ --with-hesiod=PREFIX Specify location of Hesiod],
143 [hesiod="$withval"], [hesiod=no])
144AC_MSG_RESULT($hesiod)
145if test "$hesiod" != no; then
146 if test "$hesiod" != yes; then
147 MR_INCLUDE($hesiod/include)
148 MR_LIBS($hesiod/lib)
149 fi
150 AC_CHECK_FUNC(res_send, :,
151 AC_CHECK_LIB(resolv, res_send))
152 AC_CHECK_LIB(hesiod, hes_resolve, :,
153 [AC_MSG_ERROR(Hesiod library not found)],
154 $LIBPATH $LIBS)
155 MR_DEFINE(HAVE_HESIOD)
156fi
157
158# Zephyr support
159AC_MSG_CHECKING(for Zephyr)
160AC_ARG_WITH(zephyr,
161 [ --with-zephyr=PREFIX Specify location of Zephyr],
162 [zephyr="$withval"], [zephyr=no])
163AC_MSG_RESULT($zephyr)
164if test "$zephyr" != no; then
165 if test "$zephyr" != yes; then
166 MR_INCLUDE($zephyr/include)
167 MR_LIBS($zephyr/lib)
168 fi
169 AC_CHECK_LIB(zephyr, ZInitialize, :,
170 [AC_MSG_ERROR(Zephyr library not found)],
171 $LIBPATH $KRB4_LIBS -lcom_err)
172 MR_DEFINE(HAVE_ZEPHYR)
173fi
174
175# GDSS support (default: build util/gdss if present)
176AC_MSG_CHECKING(for GDSS)
177AC_ARG_WITH(gdss,
178 [ --with-gdss=PREFIX Specify location of GDSS],
179 [gdss="$withval"
180 GDSS_CPPFLAGS="-I$gdss/include"
181 GDSS_LIBS="-L$gdss/lib -lgdss"],
182 [if test -d $srcdir/util/gdss; then
183 gdss=$srcdir/util/gdss
184 GDSS_SUBDIR=util/gdss
185 GDSS_OUTPUT_FILES="util/gdss/Makefile util/gdss/lib/Makefile \
186 util/gdss/lib/crypto/Makefile util/gdss/lib/crypto/bignum/Makefile \
187 util/gdss/lib/crypto/algorithm/Makefile"
188 # autoconf can't deal with creating util/gdss if util doesn't exist
189 if test ! -d util; then
190 mkdir util
191 fi
46fa38eb 192 MR_INCLUDE('-I$(SRCTOP)/util/gdss/include')
ea0caf4a 193 GDSS_LIBS='-L$(BUILDTOP)/util/gdss/lib -lgdss'
3fb6166b 194 GDSS_LIBDEP='$(BUILDTOP)/util/gdss/lib/libgdss.a'
ea0caf4a 195 else
196 gdss=no
197 fi])
198AC_MSG_RESULT($gdss)
199if test "$gdss" != no; then
200 GDSS_OBJS='$(GDSS_OBJS)'
201 GDSS_CFILES='$(GDSS_CFILES)'
202 GDSS_TARGET='$(GDSS_TARGET)'
203 MR_DEFINE(HAVE_GDSS)
204fi
205AC_SUBST(GDSS_CPPFLAGS)
206AC_SUBST(GDSS_LIBS)
207AC_SUBST(GDSS_SUBDIR)
208AC_SUBST(GDSS_OBJS)
209AC_SUBST(GDSS_CFILES)
210AC_SUBST(GDSS_TARGET)
3fb6166b 211AC_SUBST(GDSS_LIBDEP)
ea0caf4a 212
33567bea 213# RSAREF support (default: build util/rsaref if present)
214AC_MSG_CHECKING(for RSAREF)
215AC_ARG_WITH(rsaref,
216 [ --with-rsaref=PREFIX Specify location of RSAREF],
217 [rsaref="$withval"
218 RSAREF_CPPFLAGS="-I$rsaref/include"
219 RSAREF_LIBS="$rsaref/lib/rsaref.a"],
220 RSAREF_SUBDIRS=reg_svr
221 [if test -d $srcdir/util/rsaref; then
222 rsaref=$srcdir/util/rsaref
223 RSAREF_SUBDIRS="util/rsaref reg_svr"
224 RSAREF_OUTPUT_FILES="util/rsaref/Makefile"
225 # autoconf can't deal with creating util/rsaref if util doesn't exist
226 if test ! -d util; then
227 mkdir util
228 fi
46fa38eb 229 RSAREF_CPPFLAGS='-I$(SRCTOP)/util/rsaref'
33567bea 230 RSAREF_LIBS='$(BUILDTOP)/util/rsaref/rsaref.a'
3fb6166b 231 RSAREF_LIBDEP='$(BUILDTOP)/util/rsaref/rsaref.a'
33567bea 232 else
233 rsaref=no
234 fi])
235AC_MSG_RESULT($rsaref)
236if test "$rsaref" != no; then
237 MR_DEFINE(HAVE_RSAREF)
238fi
239AC_SUBST(RSAREF_CPPFLAGS)
240AC_SUBST(RSAREF_LIBS)
241AC_SUBST(RSAREF_SUBDIRS)
3fb6166b 242AC_SUBST(RSAREF_LIBDEP)
33567bea 243
ea0caf4a 244# Oracle (default: yes, if $ORACLE_HOME is set)
245AC_MSG_CHECKING(for Oracle)
246AC_ARG_WITH(oracle,
247 [ --with-oracle=PREFIX Specify location of Oracle (for server)],
248 [oracle="$withval"],
249 [if test -n "$ORACLE_HOME" -a -d "$ORACLE_HOME"; then
250 oracle=$ORACLE_HOME
251 else
252 oracle=no
253 fi])
254AC_MSG_RESULT($oracle)
255if test "$oracle" != no; then
256 SQL_LIBS="-L$oracle/lib -lsql $oracle/lib/osntab.o -lsqlnet -lora -lsqlnet -lnlsrtl -lcv6 -lcore -lnlsrtl -lcore -lm"
257 SVRSUBDIRS='$(SVRDIRS)'
258 SERVER_OUTPUT_FILES="db/Makefile server/Makefile afssync/Makefile backup/Makefile dbck/Makefile dcm/Makefile gen/Makefile incremental/Makefile reg_svr/Makefile regtape/Makefile"
259 PRO_C=$oracle/bin/proc
260 PRO_C_OPTS=CODE=ANSI_C
261fi
262AC_SUBST(PRO_C)
263AC_SUBST(PRO_C_DEFS)
264AC_SUBST(PRO_C_INCLUDES)
265AC_SUBST(PRO_C_OPTS)
266AC_SUBST(SQL_LIBS)
267AC_SUBST(SVRSUBDIRS)
268
269# AFS support
270AC_MSG_CHECKING(for AFS)
271AC_ARG_WITH(afs,
272 [ --with-afs=PREFIX Specify location of AFS libs (for server)],
273 [afs="$withval"], [afs=no])
274AC_MSG_RESULT($afs)
275if test "$afs" != no -a "$oracle" != no; then
276 if test "$afs" != yes; then
277 AFS_CPPFLAGS="-I$afs/include -I$afs/include/afs -I$afs/include/rx"
278 AFS_PRO_C_INCLUDES="INCLUDE=$afs/include INCLUDE=$afs/include/afs INCLUDE=$afs/include/rx"
279 AFS_LIBS="-L$afs/lib -L$afs/lib/afs"
280 AFS_DIR=$afs
281 fi
282 AC_CHECK_FUNC(insque, :, AC_CHECK_LIB(compat, insque,
283 AFS_EXTRA_LIBS="-lcompat",
284 AC_MSG_ERROR(insque not found)))
285 AC_CHECK_FUNC(sigvec, :, AC_CHECK_LIB(ucb, sigvec,
286 AFS_EXTRA_LIBS="$AFS_EXTRA_LIBS -L/usr/ucblib -lc -lucb",
287 :, -L/usr/ucblib))
288 AC_CHECK_LIB(sys, pioctl, :,
289 [AC_MSG_ERROR(AFS libraries not found)],
290 $AFS_LIBS -lrx -llwp -lsys $AFS_EXTRA_LIBS)
291 MR_DEFINE(HAVE_AFS)
292fi
293AC_SUBST(AFS_CPPFLAGS)
294AC_SUBST(AFS_PRO_C_INCLUDES)
295AC_SUBST(AFS_LIBS)
296AC_SUBST(AFS_EXTRA_LIBS)
297AC_SUBST(AFS_DIR)
298
299# GNU readline
300AC_CHECKING(for GNU readline...)
301AC_ARG_WITH(readline,
302 [ --with-readline=PREFIX Specify location of GNU readline],
303 [readline="$withval"],
304 [AC_CHECK_LIB(readline, readline, [readline=yes], :, -ltermcap)])
305if test "$readline" != no; then
306 if test "$readline" != yes; then
307 READLINE_CPPFLAGS="-I$readline/include/readline -DHAVE_READLINE"
308 READLINE_LIBS="-L$readline/lib -lreadline -ltermcap"
309 fi
310fi
311AC_SUBST(READLINE_CPPFLAGS)
312AC_SUBST(READLINE_LIBS)
313
314# Curses
315curses=curses
316AC_CHECKING(for curses)
317AC_CHECK_LIB(curses, main, :, AC_CHECK_LIB(ncurses, main, curses=ncurses))
318if test -n "$curses"; then
319 OLDLIBS=$LIBS
320 LIBS=-l$curses
321 AC_CHECKING(if curses needs termcap)
322 dnl we need to use AC_TRY_RUN because under NetBSD, the program will
323 dnl link with just -lcurses, but then fail with a runtime linker error
324 dnl because you didn't use -ltermcap
325 AC_TRY_RUN([#include <curses.h>
326 main(int argc, char **argv)
327 {
328 initscr();
329 endwin();
330 return 0;
331 }], [CURSES_LIBS="-l$curses"],
332 LIBS="-l$curses -ltermcap"
333 AC_TRY_RUN([#include <curses.h>
334 main(int argc, char **argv)
335 {
336 initscr();
337 endwin();
338 return 0;
339 }], [CURSES_LIBS="-l$curses -ltermcap"],
340 :, :),
341 :)
342 LIBS=$OLDLIBS
343fi
344if test -n "$CURSES_LIBS"; then
345 OLDLIBS=$LIBS
346 LIBS=$CURSES_LIBS
347 AC_TRY_LINK([#include <curses.h>],[WINDOW *w; getmaxx(w);],
348 :,
349 AC_TRY_COMPILE([#include <curses.h>],[WINDOW *w; w->_maxx;],
350 [CURSES_CPPFLAGS="-D'getmaxx(w)=w->_maxx'"],
351 [CURSES_CPPFLAGS="-D'getmaxx(w)=w->maxx'"]))
352 LIBS=$OLDLIBS
353 CURSES_CPPFLAGS="-DHAVE_CURSES $CURSES_CPPFLAGS"
354 CURSES_SUBDIRS='$(CURSES_SUBDIRS)'
355else
356 AC_MSG_WARN(Couldn't find -lcurses)
357fi
358AC_SUBST(CURSES_CPPFLAGS)
359AC_SUBST(CURSES_LIBS)
360AC_SUBST(CURSES_SUBDIRS)
361
362
363AC_CHECK_FUNCS(getusershell)
364
25f58600 365MR_EXTEND(PRO_C_INCLUDES, INCLUDE='$(srcdir)')
ea0caf4a 366MR_INCLUDE('$(SRCTOP)/include')
25f58600 367MR_INCLUDE('$(SRCTOP)/lib')
ea0caf4a 368MR_INCLUDE('$(BUILDTOP)/lib')
369MR_INCLUDE('$(BUILDTOP)/db')
f4036eed 370MR_INCLUDE('$(srcdir)')
ea0caf4a 371LDFLAGS="$LDFLAGS -L\$(BUILDTOP)/lib $LIBPATH"
372KLIBS="-lzephyr $KRB4_LIBS -lcom_err -lhesiod $LIBS"
373LIBS="-lmoira $KLIBS"
374AC_SUBST(KLIBS)
375
3fb6166b 376MR_LIBDEP='$(BUILDTOP)/lib/libmoira.a'
377AC_SUBST(MR_LIBDEP)
378
ea0caf4a 379AC_OUTPUT(Makefile lib/Makefile include/Makefile clients/Makefile \
380 clients/addusr/Makefile clients/blanche/Makefile \
381 clients/mailmaint/Makefile clients/moira/Makefile \
382 clients/mrcheck/Makefile clients/mrtest/Makefile \
1c1c45eb 383 clients/passwd/Makefile update/Makefile man/Makefile \
33567bea 384 $SERVER_OUTPUT_FILES $GDSS_OUTPUT_FILES $RSAREF_OUTPUT_FILES)
This page took 4.706463 seconds and 5 git commands to generate.