Changeset: 360847a980da for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=360847a980da Modified Files: MonetDB/src/gdk/gdk_system.mx Branch: default Log Message:
FreeBSD has both sysconf and getrlimit, though to use the latter, it needs sys/resource.h include. This should fix bug #2555 diffs (12 lines): diff -r d3455d727e7f -r 360847a980da MonetDB/src/gdk/gdk_system.mx --- a/MonetDB/src/gdk/gdk_system.mx Sun Jun 13 10:35:09 2010 +0200 +++ b/MonetDB/src/gdk/gdk_system.mx Sun Jun 13 16:13:18 2010 +0200 @@ -69,7 +69,7 @@ #ifdef HAVE_SIGNAL_H # include <signal.h> #endif -#if !(defined(HAVE_SYSCONF) && defined(_SC_PHYS_PAGES)) && defined(HAVE_GETRLIMIT) && defined(HAVE_SYS_RESOURCE_H) +#if defined(HAVE_GETRLIMIT) && defined(HAVE_SYS_RESOURCE_H) # include <sys/resource.h> #endif _______________________________________________ Checkin-list mailing list [email protected] http://mail.monetdb.org/mailman/listinfo/checkin-list
