|
From: <sv...@va...> - 2012-03-27 10:04:08
|
sewardj 2012-03-27 11:03:56 +0100 (Tue, 27 Mar 2012)
New Revision: 12465
Log:
rlimit64_nofile won't build on Darwin, so don't try.
Modified files:
trunk/none/tests/Makefile.am
Modified: trunk/none/tests/Makefile.am (+5 -1)
===================================================================
--- trunk/none/tests/Makefile.am 2012-03-27 10:39:22 +01:00 (rev 12464)
+++ trunk/none/tests/Makefile.am 2012-03-27 11:03:56 +01:00 (rev 12465)
@@ -186,7 +186,7 @@
rcrl readline1 \
require-text-symbol \
res_search resolv \
- rlimit_nofile rlimit64_nofile selfrun sem semlimit sha1_test \
+ rlimit_nofile selfrun sem semlimit sha1_test \
shortpush shorts stackgrowth sigstackgrowth \
syscall-restart1 syscall-restart2 \
syslog \
@@ -218,6 +218,10 @@
manythreads \
thread-exits
endif
+# This doesn't appear to be compilable on Darwin.
+if ! VGCONF_OS_IS_DARWIN
+ check_PROGRAMS += rlimit64_nofile
+endif
AM_CFLAGS += $(AM_FLAG_M3264_PRI)
|