summaryrefslogtreecommitdiff
path: root/source4/build
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2006-09-10 12:45:37 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:18:11 -0500
commitd82ed849cc3d0e9b3f97653664068faa9433c1df (patch)
treea04f1e24d646333983cd88bf6cf704687018c5c8 /source4/build
parent2e24543b2185a43c9d3c328ff3be9488a899c915 (diff)
downloadsamba-d82ed849cc3d0e9b3f97653664068faa9433c1df.tar.gz
samba-d82ed849cc3d0e9b3f97653664068faa9433c1df.tar.bz2
samba-d82ed849cc3d0e9b3f97653664068faa9433c1df.zip
r18337: more -Ae tests in check_cc.m4
honor the MMAP_BLACKLIST (This used to be commit c2f2dbb5d1c082ee1391908073336a9dfc10f712)
Diffstat (limited to 'source4/build')
-rw-r--r--source4/build/m4/check_cc.m44
-rw-r--r--source4/build/tests/shared_mmap.c2
2 files changed, 2 insertions, 4 deletions
diff --git a/source4/build/m4/check_cc.m4 b/source4/build/m4/check_cc.m4
index 4f714402cf..311caa342e 100644
--- a/source4/build/m4/check_cc.m4
+++ b/source4/build/m4/check_cc.m4
@@ -168,12 +168,8 @@ fi
case "$host_os" in
# Try to work out if this is the native HPUX compiler that uses the -Ae flag.
*hpux*)
- AC_PROG_CC_FLAG(Ae)
# mmap on HPUX is completely broken...
AC_DEFINE(MMAP_BLACKLIST, 1, [Whether MMAP is broken])
- if test $ac_cv_prog_cc_Ae = yes; then
- CPPFLAGS="$CPPFLAGS -Ae"
- fi
;;
*aix*)
diff --git a/source4/build/tests/shared_mmap.c b/source4/build/tests/shared_mmap.c
index 50dad8d696..40d462302e 100644
--- a/source4/build/tests/shared_mmap.c
+++ b/source4/build/tests/shared_mmap.c
@@ -39,6 +39,8 @@ main()
MAP_FILE | MAP_SHARED,
fd, 0);
+ if (buf == (int *)-1) exit(1);
+
while (count-- && buf[9124] != 55732) sleep(1);
if (count <= 0) exit(1);