add patch for ASCO, handle OSX as UNIX

This commit is contained in:
Guilherme Brondani Torri 2014-05-09 14:32:36 +02:00
parent 7c0224f76b
commit f1286a90c8

View File

@ -0,0 +1,20 @@
diff --git a/configure.ac b/configure.ac
index 6d362b0..6300469 100644
--- a/configure.ac
+++ b/configure.ac
@@ -53,6 +53,13 @@ if test "x$GCC" = xyes; then
fi
fi
+dnl Force the Unix definition
+case $host_os in
+ *darwin*)
+ CFLAGS="$CFLAGS -DUNIX -I/usr/include/malloc"
+ ;;
+esac
+
dnl Check for MP-ICC.
AC_PATH_PROG(CC_MPI, mpicc, :)
AM_CONDITIONAL(MPI, test "$CC_MPI" != ":")