diff options
author | Andrew Bartlett <abartlet@samba.org> | 2013-05-22 12:23:20 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2013-05-28 12:17:10 +1000 |
commit | cd4b413cb0574c459c1c24cf07f8d6b44f5fc077 (patch) | |
tree | 692104ce22e21cb0e8320b5c7aa9c4c2102eafc0 /lib/talloc | |
parent | 97cceb5f8b9fc68cb8942092e92fde2b965883e4 (diff) | |
download | samba-cd4b413cb0574c459c1c24cf07f8d6b44f5fc077.tar.gz samba-cd4b413cb0574c459c1c24cf07f8d6b44f5fc077.tar.bz2 samba-cd4b413cb0574c459c1c24cf07f8d6b44f5fc077.zip |
build: Remove autoconf build system
We are now confident that that waf build system meets enough of our needs
that we will work to improve it, rather than maintain two build systems.
Andrew Bartlett
Reviewed-by: Jelmer Vernooij <jelmer@samba.org>
Reviewed-by: David Disseldorp <ddiss@samba.org>
Diffstat (limited to 'lib/talloc')
-rw-r--r-- | lib/talloc/compat/talloc_compat1.m4 | 14 | ||||
-rw-r--r-- | lib/talloc/libtalloc.m4 | 38 |
2 files changed, 0 insertions, 52 deletions
diff --git a/lib/talloc/compat/talloc_compat1.m4 b/lib/talloc/compat/talloc_compat1.m4 deleted file mode 100644 index 2ec530e079..0000000000 --- a/lib/talloc/compat/talloc_compat1.m4 +++ /dev/null @@ -1,14 +0,0 @@ -TALLOC_COMPAT1_MK="" -AC_SUBST(TALLOC_COMPAT1_MK) - -AC_ARG_ENABLE(talloc-compat1, - [AS_HELP_STRING([--enable-talloc-compat1], - [Build talloc 1.x.x compat library [default=no]])], - [ enable_talloc_compat1=$enableval ], - [ enable_talloc_compat1=no ] -) - -if test "x$enable_talloc_compat1" = x"yes"; then - TALLOC_COMPAT1_MK='include $(tallocdir)/compat/talloc_compat1.mk' -fi - diff --git a/lib/talloc/libtalloc.m4 b/lib/talloc/libtalloc.m4 deleted file mode 100644 index 4b22c8e41a..0000000000 --- a/lib/talloc/libtalloc.m4 +++ /dev/null @@ -1,38 +0,0 @@ -dnl find the talloc sources. This is meant to work both for -dnl talloc standalone builds, and builds of packages using talloc -tallocdir="" -tallocpaths=". lib/talloc talloc ../talloc ../lib/talloc" -for d in $tallocpaths; do - if test -f "$srcdir/$d/talloc.c"; then - tallocdir="$d" - AC_SUBST(tallocdir) - break; - fi -done -if test x"$tallocdir" = "x"; then - AC_MSG_ERROR([cannot find talloc source in $tallocpaths]) -fi -TALLOC_OBJ="talloc.o" -AC_SUBST(TALLOC_OBJ) - -TALLOC_CFLAGS="-I$srcdir/$tallocdir" -AC_SUBST(TALLOC_CFLAGS) - -TALLOC_LIBS="" -AC_SUBST(TALLOC_LIBS) - -AC_CHECK_SIZEOF(size_t,cross) -AC_CHECK_SIZEOF(void *,cross) - -if test $ac_cv_sizeof_size_t -lt $ac_cv_sizeof_void_p; then - AC_WARN([size_t cannot represent the amount of used memory of a process]) - AC_WARN([please report this to <samba-technical@samba.org>]) - AC_WARN([sizeof(size_t) = $ac_cv_sizeof_size_t]) - AC_WARN([sizeof(void *) = $ac_cv_sizeof_void_p]) - AC_ERROR([sizeof(size_t) < sizeof(void *)]) -fi - -if test x"$VERSIONSCRIPT" != "x"; then - EXPORTSFILE=talloc.exports - AC_SUBST(EXPORTSFILE) -fi |