]> arthur.barton.de Git - netatalk.git/blob - configure.in
Add check for openssl and enable DHX and RANDNUM when it is available.
[netatalk.git] / configure.in
1 dnl configure.in for netatalk
2
3 AC_INIT(bin/adv1tov2/adv1tov2.c)
4
5 NETATALK_VERSION=`cat VERSION`
6 AC_SUBST(NETATALK_VERSION)
7
8 AC_CANONICAL_SYSTEM
9 AM_INIT_AUTOMAKE(netatalk, ${NETATALK_VERSION})
10 AM_CONFIG_HEADER(config.h)
11
12 dnl Reset locations to proper places
13 AC_PREFIX_DEFAULT(/usr)
14
15 dnl Checks for programs.
16 AC_PROG_AWK
17 AC_PROG_CC
18 AC_PROG_INSTALL
19 AC_PROG_LN_S
20 AC_PROG_MAKE_SET
21 AC_PROG_LIBTOOL
22
23 dnl *********************************************************************
24 dnl FIXME! FIXME! These should be selectable properly, and should produce
25 dnl the proper flags and defines...
26 dnl *********************************************************************
27
28 dnl Checks for libraries.
29 dnl Replace `main' with a function in -labs:
30 AC_CHECK_LIB(abs, main)
31 dnl Replace `main' with a function in -laudit:
32 AC_CHECK_LIB(audit, main)
33 dnl Replace `main' with a function in -lauth:
34 AC_CHECK_LIB(auth, main)
35 dnl Replace `main' with a function in -lcmd:
36 AC_CHECK_LIB(cmd, main)
37 dnl Replace `main' with a function in -lcom_err:
38 AC_CHECK_LIB(com_err, main)
39 dnl Replace `main' with a function in -lcrypt:
40 AC_CHECK_LIB(crypt, main)
41 dnl Replace `main' with a function in -lcrypto:
42 AC_CHECK_LIB(crypto, main)
43 dnl Replace `main' with a function in -ld:
44 AC_CHECK_LIB(d, main)
45 dnl Replace `main' with a function in -ldb:
46 AC_CHECK_LIB(db, main)
47 dnl Replace `main' with a function in -ldes:
48 AC_CHECK_LIB(des, main)
49 dnl Replace `main' with a function in -ldl:
50 AC_CHECK_LIB(dl, main)
51 dnl Replace `main' with a function in -lkauth:
52 AC_CHECK_LIB(kauth, main)
53 dnl Replace `main' with a function in -lkrb:
54 AC_CHECK_LIB(krb, main)
55 dnl Replace `main' with a function in -llwp:
56 AC_CHECK_LIB(lwp, main)
57 dnl Replace `main' with a function in -ln:
58 AC_CHECK_LIB(n, main)
59 dnl Replace `main' with a function in -lnsl:
60 AC_CHECK_LIB(nsl, main)
61 dnl Replace `main' with a function in -lprot:
62 AC_CHECK_LIB(prot, main)
63 dnl Replace `main' with a function in -lresolv:
64 AC_CHECK_LIB(resolv, main)
65 dnl Replace `main' with a function in -lrpcsvc:
66 AC_CHECK_LIB(rpcsvc, main)
67 dnl Replace `main' with a function in -lrx:
68 AC_CHECK_LIB(rx, main)
69 dnl Replace `main' with a function in -lrxkad:
70 AC_CHECK_LIB(rxkad, main)
71 dnl Replace `main' with a function in -lsocket:
72 AC_CHECK_LIB(socket, main)
73 dnl Replace `main' with a function in -lsys:
74 AC_CHECK_LIB(sys, main)
75 dnl Replace `main' with a function in -lubik:
76 AC_CHECK_LIB(ubik, main)
77
78 dnl Checks for header files.
79 AC_HEADER_DIRENT
80 AC_HEADER_STDC
81 AC_HEADER_SYS_WAIT
82 AC_CHECK_HEADERS(fcntl.h limits.h strings.h sys/file.h sys/ioctl.h sys/time.h syslog.h unistd.h)
83
84 # Allow user to specify flags
85 AC_ARG_WITH(cflags,
86         [  --with-cflags           Specify additional flags to pass to compiler],
87         [
88                 if test "x$withval" != "xno" ; then
89                         CFLAGS="$CFLAGS $withval"
90                 fi
91         ]       
92 )
93 AC_ARG_WITH(libs,
94         [  --with-libs             Specify additional libraries to link with],
95         [
96                 if test "x$withval" != "xno" ; then
97                         LIBS="$LIBS $withval"
98                 fi
99         ]
100 )
101
102 dnl Checks for typedefs, structures, and compiler characteristics.
103 AC_C_CONST
104 AC_TYPE_UID_T
105 AC_C_INLINE
106 AC_TYPE_MODE_T
107 AC_TYPE_OFF_T
108 AC_TYPE_PID_T
109 AC_TYPE_SIZE_T
110 AC_STRUCT_ST_RDEV
111 AC_HEADER_TIME
112 AC_STRUCT_TM
113
114 dnl Checks for library functions.
115 AC_TYPE_GETGROUPS
116 AC_PROG_GCC_TRADITIONAL
117 AC_FUNC_MEMCMP
118 AC_HEADER_MAJOR
119 AC_FUNC_MMAP
120 AC_TYPE_SIGNAL
121 AC_FUNC_UTIME_NULL
122 AC_FUNC_WAIT3
123 AC_CHECK_FUNCS(getcwd gethostname gettimeofday getusershell mkdir rmdir select socket strdup strstr strtoul)
124
125 dnl --------------------------------------------------------------------------
126 dnl specific configuration comes in here:
127 dnl --------------------------------------------------------------------------
128
129 AC_ARG_WITH(admin-group,
130         [  --with-admin-group=grp  enable and set administrative group],
131         admin_grp="$withval"
132         AC_DEFINE_UNQUOTED(ADMIN_GRP, "$admin_grp")
133         AC_MSG_RESULT([enabling administrative group "$admin_grp"]),
134 )
135
136 AC_ARG_WITH(auth-printing-dir,
137         [  --with-auth-printing-dir=path
138               path to authenticated printing directory],
139                 cap_dir="$withval"
140                 AC_DEFINE_UNQUOTED(CAPDIR, "$cap_dir")
141                 AC_DEFINE(USE_CAP)
142                 AC_MSG_RESULT([enabling authenticated printing support]),
143 )
144
145 AC_ARG_WITH(config-dir,
146         [  --with-config-dir=path  path to config files [default=/etc/atalk]],
147                 config_dir="$withval",
148                 config_dir="/etc/atalk"
149 )
150 AC_DEFINE_UNQUOTED(CONFIG_DIR, "$config_dir",
151         [path to config dir [default=/etc/atalk]])
152 CONFIG_DIR="$config_dir"
153 AC_SUBST(CONFIG_DIR)
154 AC_MSG_RESULT([setting configuration files location to $CONFIG_DIR])
155
156 AC_ARG_WITH(cracklib,
157         [  --with-cracklib=dict    enable/set location of cracklib dictionary],
158         cracklib="$withval"
159         AC_CHECK_LIB(crack, main,
160                 AC_DEFINE(USE_CRACKLIB) 
161                 LIBS="$LIBS -lcrack"
162                 AC_MSG_RESULT([enabling cracklib support])
163                 if test "$cracklib" = "yes"; then
164                         cracklib="/usr/lib/cracklib_dict"
165                 fi
166                 AC_DEFINE_UNQUOTED(_PATH_CRACKLIB, "$cracklib",
167                         [path to cracklib dictionary])
168                 AC_MSG_RESULT([setting cracklib dictionary to $cracklib]),
169                 AC_MSG_ERROR([cracklib not found!])
170         )
171 )
172
173 AC_ARG_ENABLE(ddp,
174         [  --disable-ddp           disable DDP],
175         if test "$enableval" = "no"; then 
176                 AC_DEFINE(NO_DDP, 1)
177                 AC_MSG_RESULT([disabling DDP])
178         fi
179 )
180
181 AC_ARG_ENABLE(debug,
182         [  --enable-debug          enable debug code],
183         if test "$enableval" != "no"; then
184                 if test "$enableval" = "yes"; then
185                         AC_DEFINE(DEBUG, 1)
186                 else
187                         AC_DEFINE_UNQUOTED(DEBUG, $enableval)
188                 fi 
189                 AC_MSG_RESULT([enabling debugging code])
190         else
191                 AC_DEFINE(DEBUG, 0)
192         fi
193 )
194
195
196 dnl ----------- A NOTE ABOUT DROPKLUDGE
197 dnl The trouble with this fix is that if you know what the file is called, it
198 dnl can be read from the Unix side.  That's okay for most academic institutions
199 dnl since the students don't have telnet access to the Mac servers.  There is
200 dnl currently no one working on further development/fixes of DROPKLUDGE.
201 dnl -----------
202
203 AC_ARG_ENABLE(dropkludge,
204         [  --enable-dropkludge    enable the experimental dropbox fix (INSECURE!) ],
205         AC_DEFINE(DROPKLUDGE, 1)
206         AC_MSG_RESULT([enabling experimental dropbox support])
207 )
208
209 msg_dir=""
210 AC_ARG_WITH(message-dir,
211         [  --with-msg-dir=path     path to message files [default=/etc/atalk/msg]],
212                 msg_dir="$withval"
213                 if test x"$msg_dir" = "x"; then
214                         msg_dir="$CONFIG_DIR/msg"
215                 fi
216                 AC_DEFINE_UNQUOTED(SERVERTEXT, "$msg_dir",
217                         [path to message dir [default=$CONFIG_DIR/msg]])
218                 SERVERTEXT="$msg_dir"
219                 AC_SUBST(SERVERTEXT)
220 )
221
222 AC_ARG_WITH(pam,
223         [  --with-pam              enable password authentication modules support],
224         AC_CHECK_LIB(pam, main,
225                 AC_DEFINE(USE_PAM)
226                 LIBS="$LIBS -lpam"
227                 AC_MSG_RESULT([enabling pam modules support])
228         )
229 )
230
231 AC_ARG_WITH(shadow,
232         [  --with-shadow           enable shadow password support],
233         AC_MSG_RESULT([enabling shadow password support])
234         AC_DEFINE(SHADOWPW)
235 )
236
237 AC_ARG_WITH(flock-locks,
238         [  --with-flock-locks      enable flock locks support],
239         AC_MSG_RESULT([enabling flock locks])
240         AC_DEFINE(USE_FLOCK_LOCKS)
241 )
242
243 AC_ARG_WITH(tcp-wrappers,
244         [  --with-tcp-wrappers     enable TCP wrappers support],
245         AC_CHECK_LIB(wrap, main,
246                 AC_DEFINE(TCPWRAP)
247                 LIBS="$LIBS -lwrap"
248                 AC_MSG_RESULT([enabling TCP wrappers support])
249         )
250 )
251
252 AC_ARG_WITH(uams-path,
253         [  --with-uams-path=path   path to UAMs [default=/etc/atalk/uams]],
254         uams_path="$withval",
255         uams_path="/etc/atalk/uams"
256 )
257 AC_DEFINE_UNQUOTED(UAMS_PATH, "$uams_path",
258         [path to UAMs [default=/etc/atalk/uams]])
259 UAMS_PATH="$uams_path"
260 AC_SUBST(UAMS_PATH)
261
262 dnl --------------------------------------------------------------------------
263 dnl drop in includes for top level directory structures here...
264 dnl --------------------------------------------------------------------------
265 LIBS="$LIBS -L\$(top_srcdir)/libatalk/"
266 CFLAGS="$CFLAGS -I\$(top_srcdir)/include -I\$(top_srcdir)/sys"
267
268 dnl --------------------------------------------------------------------------
269 dnl specific configuration comes in here:
270 dnl --------------------------------------------------------------------------
271
272 dnl --------------------- determine operating system from "target"
273 case "$ac_cv_target_os" in
274         *freebsd*)                      this_os=freebsd ;;
275         *linux*)                        this_os=linux ;;
276         *openbsd*)                      this_os=openbsd ;;
277         *netbsd*)                       this_os=netbsd ;;
278         *solaris*)                      this_os=solaris ;;
279 esac
280
281 case "$ac_cv_target_cpu" in
282         i386|i486|i586|i686|k7)         this_cpu=x86 ;;
283         alpha)                          this_cpu=alpha ;;
284         mips)                           this_cpu=mips ;;
285         powerpc|ppc)                    this_cpu=ppc ;;
286 esac
287
288 dnl --------------------- operating system specific flags (port from sys/*)
289
290 dnl ----- FreeBSD specific -----
291 if test x"$this_os" = "xfreebsd"; then 
292         AC_MSG_RESULT([ * FreeBSD specific configuration])
293         AC_DEFINE(BSD4_4)
294         AC_DEFINE(SENDFILE_FLAVOR_BSD)
295 fi
296
297 dnl ----- Linux specific -----
298 if test x"$this_os" = "xlinux"; then 
299         AC_MSG_RESULT([ * Linux specific configuration])
300         AC_DEFINE(SENDFILE_FLAVOR_LINUX)
301
302         dnl ----- check if we need the quotactl wrapper
303         AC_CHECK_HEADER(sys/quota.h,,
304                 AC_MSG_RESULT([enabling quotactl wrapper])
305                 AC_DEFINE(NEED_QUOTACTL_WRAPPER)
306         )
307
308         dnl ----- Linux/alpha specific -----
309         if test x"$this_cpu" = "xalpha"; then 
310                 AC_MSG_RESULT([enabling gcc memcpy bug workaround])
311                 AC_DEFINE(HAVE_GCC_MEMCPY_BUG)
312         fi
313         need_dash_r=no
314 fi
315
316 dnl ----- NetBSD specific -----
317 if test x"$this_os" = "xnetbsd"; then 
318         AC_MSG_RESULT([ * NetBSD specific configuration])
319         AC_DEFINE(BSD4_4)
320         AC_DEFINE(DLSYM_PREPEND_UNDERSCORE)
321         CFLAGS="-I\$(top_srcdir)/sys/netbsd -I/usr/include/kerberosIV $CFLAGS"
322         need_dash_r=yes 
323 fi
324
325 dnl ----- OpenBSD specific -----
326 if test x"$this_os" = "xopenbsd"; then 
327         AC_MSG_RESULT([ * OpenBSD specific configuration])
328         AC_DEFINE(BSD4_4)
329 fi
330
331 dnl ----- Solaris specific -----
332 if test x"$this_os" = "xsolaris"; then 
333         AC_MSG_RESULT([ * Solaris specific configuration])
334         AC_DEFINE(__svr4__)
335         AC_DEFINE(_ISOC9X_SOURCE)
336         AC_DEFINE(NO_STRUCT_TM_GMTOFF)
337         AC_DEFINE(SOLARIS)
338         need_dash_r=yes
339 fi
340
341 dnl -- look for openssl  
342 AC_ARG_WITH(ssl-dir,
343         [  --with-ssl-dir=PATH  Specify path to openssl installation (must contain lib and include dirs) ],
344         [
345                 if test "x$withval" != "$xno"; then
346                         tryssldir=$withval
347                 fi
348         ]
349 )
350
351 for ssldir in "" $tryssldir /usr/local/openssl /usr/lib/openssl/ /usr/local/ssl /usr/lib/ssl /usr/local /usr/pkg /opt /opt/openssl ; do
352         if test -f "$ssldir/include/openssl/cast.h" ; then
353                 LIBS="$LIBS -L$ssldir/lib -L$ssldir"
354                 CFLAGS="$CFLAGS -I$ssldir/include -I$ssldir/include/openssl"
355                 if test "$need_dash_r" = "yes"; then
356                         LIBS="$LIBS -R$ssldir/lib -R$ssldir"
357                 fi
358                 LIBS="$LIBS -lcrypto"
359                 AC_DEFINE(OPENSSL_DHX,  1)
360                 AC_DEFINE(UAM_DHX,      1)
361                 AC_DEFINE(UAM_RNDNUM,   1)
362                 compile_dhx=yes
363                 AC_MSG_RESULT([Found ssl and enabling RANDNUM and DHX support "$ssldir"])
364                 break
365         fi
366 done
367
368 dnl --------------------- last minute substitutions
369
370 AC_SUBST(LIBS)
371 AC_SUBST(CFLAGS)
372 AM_CONDITIONAL(USE_DHX, test x$compile_dhx = xyes)
373
374 dnl --------------------- generate files
375
376 AC_OUTPUT([Makefile
377         bin/Makefile
378         bin/adv1tov2/Makefile
379         bin/aecho/Makefile
380         bin/afile/Makefile
381         bin/afppasswd/Makefile
382         bin/getzones/Makefile
383         bin/megatron/Makefile
384         bin/nbp/Makefile
385         bin/pap/Makefile
386         bin/psorder/Makefile
387         config/Makefile
388         contrib/Makefile
389         contrib/nu/Makefile
390         contrib/printing/Makefile
391         contrib/shell_utils/Makefile
392         contrib/timelord/Makefile
393         distrib/Makefile
394         distrib/config/Makefile
395         distrib/config/netatalk-config
396         distrib/initscripts/Makefile
397         distrib/initscripts/rc.atalk.redhat
398         distrib/m4/Makefile
399         etc/Makefile
400         etc/afpd/Makefile
401         etc/afpd/nls/Makefile
402         etc/atalkd/Makefile
403         etc/uams/Makefile
404         etc/papd/Makefile
405         etc/psf/Makefile
406         include/Makefile
407         include/atalk/Makefile
408         libatalk/Makefile
409         libatalk/adouble/Makefile
410         libatalk/asp/Makefile
411         libatalk/atp/Makefile
412         libatalk/compat/Makefile
413         libatalk/dsi/Makefile
414         libatalk/nbp/Makefile
415         libatalk/netddp/Makefile
416         libatalk/util/Makefile
417         man/Makefile
418         man/man1/Makefile
419         man/man3/Makefile
420         man/man4/Makefile
421         man/man8/Makefile
422         sys/Makefile
423         sys/netatalk/Makefile
424         ],
425         [chmod a+x distrib/config/netatalk-config contrib/shell_utils/apple_*]
426 )
427