From af4f43db8d8d2b79d04f33e513555bdb72e265f6 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sun, 24 Sep 2006 02:28:28 +0000 Subject: [PATCH] r18863: the test for immediate structures has moved to lib/replace/ (This used to be commit 46d8433a4f8918b5e21def2dc55a62adfde234b1) --- source3/configure.in | 23 +---------------------- 1 file changed, 1 insertion(+), 22 deletions(-) diff --git a/source3/configure.in b/source3/configure.in index 624587573a0..53b78e9e0eb 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -324,7 +324,7 @@ if test "x$CFLAGS" = x; then CFLAGS="-O" fi -CFLAGS="${CFLAGS} -D_SAMBA_BUILD_" +CFLAGS="${CFLAGS} -D_SAMBA_BUILD_=3" AC_LIBREPLACE_CC_CHECKS @@ -991,27 +991,6 @@ fi AC_SEARCH_LIBS(dlopen, [dl]) # dlopen/dlclose/dlsym/dlerror will be checked again later and defines will be set then -############################################ -# check if the compiler can do immediate structures -AC_CACHE_CHECK([for immediate structures],samba_cv_immediate_structures, [ - AC_TRY_COMPILE([ -#include ], -[ - typedef struct {unsigned x;} FOOBAR; - #define X_FOOBAR(x) ((FOOBAR) { x }) - #define FOO_ONE X_FOOBAR(1) - FOOBAR f = FOO_ONE; - struct { - FOOBAR y; - } f2[] = { - {FOO_ONE} - }; -], - samba_cv_immediate_structures=yes,samba_cv_immediate_structures=no)]) -if test x"$samba_cv_immediate_structures" = x"yes"; then - AC_DEFINE(HAVE_IMMEDIATE_STRUCTURES,1,[Whether the compiler supports immediate structures]) -fi - ############################################ # check if the compiler can do immediate structures AC_CACHE_CHECK([if the compiler will optimize out function calls],samba_cv_optimize_out_funcation_calls, [ -- 2.34.1