r15002: More cleanups in build/m4/rewrite.m4
[samba.git] / source4 / configure.in
1 dnl -*- mode: m4-mode -*-
2 dnl Process this file with autoconf to produce a configure script.
3
4 dnl disabled 2.53 requirement - we do work with 2.52 on suse 7.3 for example
5 dnl AC_PREREQ(2.53)
6
7 AC_INIT([samba],[],[samba-technical@samba.org])
8
9 AC_CONFIG_SRCDIR([include/includes.h])
10 AC_CONFIG_HEADER(include/config_tmp.h)
11
12 # Configuration rules.
13 sinclude(build/m4/env.m4)
14 sinclude(build/m4/rewrite.m4)
15 sinclude(lib/replace/config.m4)
16 sinclude(lib/replace/win32/config.m4)
17 sinclude(lib/replace/repdir/config.m4)
18 sinclude(heimdal_build/config.m4)
19 sinclude(lib/util/fsusage.m4)
20 sinclude(lib/util/capability.m4)
21 sinclude(lib/util/time.m4)
22 sinclude(lib/popt/config.m4)
23 sinclude(lib/charset/config.m4)
24 sinclude(lib/socket/config.m4)
25 sinclude(lib/netif/config.m4)
26 sinclude(lib/talloc/config.m4)
27 sinclude(lib/tdb/config.m4)
28 sinclude(lib/ldb/sqlite3.m4)
29 sinclude(lib/ldb/config.m4)
30 sinclude(lib/tls/config.m4)
31 sinclude(lib/events/config.m4)
32
33 dnl disabled until we support external heimdal again
34 dnl sinclude(auth/kerberos/config.m4)
35
36 sinclude(auth/gensec/config.m4)
37 sinclude(libcli/config.m4)
38 sinclude(smbd/process_model.m4)
39 sinclude(lib/registry/config.m4)
40 sinclude(scripting/swig/config.m4)
41 sinclude(gtk/config.m4)
42 sinclude(ntvfs/posix/config.m4)
43 sinclude(lib/socket_wrapper/config.m4)
44 sinclude(web_server/config.m4)
45 sinclude(auth/config.m4)
46 sinclude(kdc/config.m4)
47 sinclude(ntvfs/sysdep/config.m4)
48
49 AC_ARG_ENABLE(dso,
50 [  --enable-dso                 Enable building internal libraries as DSO's (experimental)],
51 [ if test x$enable_dso != xyes; then
52         BLDSHARED=false
53   fi], 
54 [BLDSHARED=false])
55
56 #################################################
57 # add *_CFLAGS only for the real build
58 CFLAGS="${CFLAGS} ${DEVELOPER_CFLAGS}"
59
60 #################################################
61 # final configure stuff
62
63 AC_MSG_CHECKING([configure summary])
64 AC_TRY_RUN([#include "${srcdir-.}/build/tests/summary.c"],
65            AC_MSG_RESULT(yes),
66            AC_MSG_ERROR([summary failure. Aborting config]); exit 1;,
67            AC_MSG_WARN([cannot run when cross-compiling]))
68
69 LIBS=`echo $LIBS | sed -e 's/ *//g'`
70 if test x"$LIBS" != x""; then
71         echo "LIBS: $LIBS"
72         AC_MSG_WARN([the global \$LIBS variable contains some libraries!])
73         AC_MSG_WARN([this should not happen, please report to samba-technical@lists.samba.org!])
74         AC_MSG_ERROR([only _EXT macros from aclocal.m4 should be used!])
75 fi
76
77 dnl Remove -L/usr/lib/? from LDFLAGS and LIBS
78 LIB_REMOVE_USR_LIB(LDFLAGS)
79 LIB_REMOVE_USR_LIB(LIBS)
80
81 dnl Remove -I/usr/include/? from CFLAGS and CPPFLAGS
82 CFLAGS_REMOVE_USR_INCLUDE(CFLAGS)
83 CFLAGS_REMOVE_USR_INCLUDE(CPPFLAGS)
84
85 AC_SUBST(ac_default_prefix)
86
87 echo "configure: creating config.pm"
88 cat >config.pm<<CEOF
89 # config.pm - Autogenerate by configure. DO NOT EDIT!
90
91 package config;
92 require Exporter;
93 @ISA = qw(Exporter);
94 @EXPORT_OK = qw(%enabled %config);
95 use strict;
96
97 use vars qw(%enabled %config);
98
99 %config = (AC_FOREACH([AC_Var], m4_defn([_AC_SUBST_VARS]), [
100         AC_Var => '$AC_Var',])
101 );
102
103 $SMB_INFO_ENABLES
104 1;
105 CEOF
106
107 echo "configure: creating config.mk"
108 cat >config.mk<<CEOF
109 # config.mk - Autogenerated by configure, DO NOT EDIT!
110 $SMB_INFO_EXT_LIBS
111 $SMB_INFO_SUBSYSTEMS
112 $SMB_INFO_LIBRARIES
113 CEOF
114
115 AC_OUTPUT_COMMANDS(
116 [$PERL -I${builddir} -I${srcdir} -I${srcdir}/build ${srcdir}/build/smb_build/main.pl || exit $?],[
117 PERL="$PERL";export PERL;export srcdir; export builddir;
118 ])
119 AC_OUTPUT
120
121 cmp include/config_tmp.h include/config.h >/dev/null 2>&1
122 CMP_RET=$?
123 if test $CMP_RET != 0; then
124         cp include/config_tmp.h include/config.h
125 fi