mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
d09ef0e846
checks for global system flags
(This used to be commit 6eefd44a87
)
133 lines
3.9 KiB
Plaintext
133 lines
3.9 KiB
Plaintext
dnl -*- mode: m4-mode -*-
|
|
dnl Process this file with autoconf to produce a configure script.
|
|
|
|
dnl disabled 2.53 requirement - we do work with 2.52 on suse 7.3 for example
|
|
dnl AC_PREREQ(2.53)
|
|
|
|
AC_INIT([samba],[],[samba-technical@samba.org])
|
|
|
|
AC_CONFIG_SRCDIR([include/includes.h])
|
|
AC_CONFIG_HEADER(include/config_tmp.h)
|
|
|
|
# Configuration rules.
|
|
m4_include(lib/replace/libreplace.m4)
|
|
m4_include(build/m4/env.m4)
|
|
SMB_EXT_LIB(DL, $LIBDL)
|
|
m4_include(lib/replace/win32/config.m4)
|
|
m4_include(lib/replace/repdir/config.m4)
|
|
m4_include(lib/smbreadline/readline.m4)
|
|
m4_include(heimdal_build/config.m4)
|
|
m4_include(lib/util/fault.m4)
|
|
m4_include(lib/util/signal.m4)
|
|
m4_include(lib/util/util.m4)
|
|
m4_include(lib/util/fsusage.m4)
|
|
m4_include(lib/util/xattr.m4)
|
|
m4_include(lib/util/capability.m4)
|
|
m4_include(lib/util/time.m4)
|
|
m4_include(lib/popt/samba.m4)
|
|
m4_include(lib/charset/config.m4)
|
|
m4_include(lib/socket/config.m4)
|
|
m4_include(lib/talloc/libtalloc.m4)
|
|
m4_include(lib/tdb/libtdb.m4)
|
|
m4_include(lib/ldb/sqlite3.m4)
|
|
m4_include(lib/ldb/libldb.m4)
|
|
m4_include(lib/tls/config.m4)
|
|
m4_include(lib/events/config.m4)
|
|
|
|
dnl disabled until we support external heimdal again
|
|
dnl m4_include(auth/kerberos/config.m4)
|
|
|
|
m4_include(auth/gensec/config.m4)
|
|
m4_include(smbd/process_model.m4)
|
|
m4_include(lib/registry/config.m4)
|
|
m4_include(scripting/swig/config.m4)
|
|
m4_include(gtk/config.m4)
|
|
m4_include(ntvfs/posix/config.m4)
|
|
m4_include(ntvfs/unixuid/config.m4)
|
|
m4_include(lib/socket_wrapper/config.m4)
|
|
m4_include(web_server/config.m4)
|
|
m4_include(auth/config.m4)
|
|
m4_include(kdc/config.m4)
|
|
m4_include(ntvfs/sysdep/config.m4)
|
|
m4_include(lib/appweb/config.m4)
|
|
m4_include(nsswitch/config.m4)
|
|
m4_include(libcli/config.m4)
|
|
|
|
#################################################
|
|
# add *_CFLAGS only for the real build
|
|
CFLAGS="${CFLAGS} ${DEVELOPER_CFLAGS}"
|
|
|
|
#################################################
|
|
# final configure stuff
|
|
|
|
AC_MSG_CHECKING([configure summary])
|
|
AC_TRY_RUN([#include "${srcdir-.}/build/tests/summary.c"],
|
|
AC_MSG_RESULT(yes),
|
|
AC_MSG_ERROR([summary failure. Aborting config]); exit 1;,
|
|
AC_MSG_WARN([cannot run when cross-compiling]))
|
|
|
|
LIBS=`echo $LIBS | sed -e 's/ *//g'`
|
|
if test x"$LIBS" != x""; then
|
|
echo "LIBS: $LIBS"
|
|
AC_MSG_WARN([the global \$LIBS variable contains some libraries!])
|
|
AC_MSG_WARN([this should not happen, please report to samba-technical@lists.samba.org!])
|
|
AC_MSG_ERROR([only _EXT macros from aclocal.m4 should be used!])
|
|
fi
|
|
|
|
dnl Remove -L/usr/lib/? from LDFLAGS and LIBS
|
|
LIB_REMOVE_USR_LIB(LDFLAGS)
|
|
LIB_REMOVE_USR_LIB(LIBS)
|
|
|
|
dnl Remove -I/usr/include/? from CFLAGS and CPPFLAGS
|
|
CFLAGS_REMOVE_USR_INCLUDE(CFLAGS)
|
|
CFLAGS_REMOVE_USR_INCLUDE(CPPFLAGS)
|
|
|
|
AC_SUBST(ac_default_prefix)
|
|
|
|
echo "configure: creating build/smb_build/config.pm"
|
|
cat >build/smb_build/config.pm<<CEOF
|
|
# config.pm - Autogenerate by configure. DO NOT EDIT!
|
|
|
|
package config;
|
|
require Exporter;
|
|
@ISA = qw(Exporter);
|
|
@EXPORT_OK = qw(%enabled %config);
|
|
use strict;
|
|
|
|
use vars qw(%enabled %config);
|
|
|
|
%config = (AC_FOREACH([AC_Var], m4_defn([_AC_SUBST_VARS]), [
|
|
AC_Var => '$AC_Var',])
|
|
);
|
|
|
|
$SMB_INFO_ENABLES
|
|
1;
|
|
CEOF
|
|
|
|
echo "configure: creating config.mk"
|
|
cat >config.mk<<CEOF
|
|
# config.mk - Autogenerated by configure, DO NOT EDIT!
|
|
$SMB_INFO_EXT_LIBS
|
|
$SMB_INFO_SUBSYSTEMS
|
|
$SMB_INFO_LIBRARIES
|
|
CEOF
|
|
|
|
AC_OUTPUT_COMMANDS(
|
|
[test "x$ac_abs_srcdir" != "x$ac_abs_builddir" &&
|
|
(cd $builddir;
|
|
test -d heimdal || cp -r $srcdir/heimdal $builddir/
|
|
test -d heimdal_build || cp -r $srcdir/heimdal_build $builddir/
|
|
test -d build || samba_builddir="$builddir" samba_srcdir="$srcdir" $PERL $srcdir/script/buildtree.pl
|
|
test -f $builddir/include/smb.h || cp $srcdir/include/smb.h $builddir/include
|
|
)
|
|
$PERL -I${builddir} -I${srcdir} -I${srcdir}/build ${srcdir}/build/smb_build/main.pl || exit $?],[
|
|
PERL="$PERL";export PERL;export srcdir; export builddir;
|
|
])
|
|
AC_OUTPUT
|
|
|
|
cmp include/config_tmp.h include/config.h >/dev/null 2>&1
|
|
CMP_RET=$?
|
|
if test $CMP_RET != 0; then
|
|
cp include/config_tmp.h include/config.h
|
|
fi
|