r13248: Revert revision 13071. It turns out that sys/param.h can be implicitly
authorJames Peach <jpeach@samba.org>
Tue, 31 Jan 2006 01:51:31 +0000 (01:51 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 18:51:38 +0000 (13:51 -0500)
included from other headers. In this case, undeffing MIN and MAX is a
really bad idea because the subsequent include of sys/param.h will do
nothing because of its include guards.
(This used to be commit 8aa8be93b09cfbd176455738dfd305047030fd50)

source4/build/m4/rewrite.m4
source4/include/system/filesys.h

index 0bdd181a55f69015218fe8d7bb7cabb8fd51ba7b..92bcdc04143fc5127db53db8e1d0422b4450c2a1 100644 (file)
@@ -67,27 +67,6 @@ AC_CHECK_HEADERS(sys/mount.h, , , [AC_INCLUDES_DEFAULT
 #include <sys/param.h>
 #endif])
 
-AC_CACHE_CHECK([for MAX in sys/param.h], samba_cv_sys_param_h_max,
-       AC_TRY_COMPILE([
-#ifdef HAVE_SYS_PARAM_H
-#include <sys/param.h>
-#endif], [int i = MAX(1,2)],
-       samba_cv_sys_param_h_max=yes, samba_cv_sys_param_h_max=no) )
-
-if test x"$samba_cv_sys_param_h_max" = x"yes"; then
-       AC_DEFINE(HAVE_SYS_PARAM_H_MAX, 1, [Whether sys/param.h declares the MAX macro])
-fi
-
-AC_CACHE_CHECK([for MIN in sys/param.h], samba_cv_sys_param_h_min, [
-       AC_TRY_COMPILE([
-#ifdef HAVE_SYS_PARAM_H
-#include <sys/param.h>
-#endif], [int i = MIN(1,2)],
-       samba_cv_sys_param_h_min=yes, samba_cv_sys_param_h_min=no)] )
-
-if test x"$samba_cv_sys_param_h_min" = x"yes"; then
-       AC_DEFINE(HAVE_SYS_PARAM_H_MIN, 1, [Whether sys/param.h declares the MIN macro])
-fi
 
 AC_TYPE_SIGNAL
 AC_TYPE_UID_T
index b79ec33c1ae78167c8176db1d52aa04b4e96c628..e81eec13e9d85300406e7ca438b54dce1f87d022 100644 (file)
 #include <sys/stat.h>
 
 #ifdef HAVE_SYS_PARAM_H
-/* On (at least) IRIX and Linux, sys/param.h unconditionally defines the MAX
- * and MIN macros. Since smb_macros.h might have already defined this, we
- * choose to use the system versions if they are present. This avoids a MIPSPro
- * compiler warning whenever this file is included.
- */
-#if defined(HAVE_SYS_PARAM_H_MIN) && defined(MIN)
-#undef MIN
-#endif
-#if defined(HAVE_SYS_PARAM_H_MAX) && defined(MAX)
-#undef MAX
-#endif
 #include <sys/param.h>
 #endif