[pisa-src] r2299 - trunk/configure.ac

  • From: Mircea Gherzan <mircea.gherzan@xxxxxxxxxxxxxx>
  • To: pisa-src@xxxxxxxxxxxxx
  • Date: Fri, 16 Apr 2010 16:57:46 +0200

Author: gherzan
Date: Fri Apr 16 16:57:45 2010
New Revision: 2299

Log:
Fix the Linux build, by reverting _XOPEN_SOURCE to 600.
With a value of 700, the build crashes when encoutering
the definition of futimes(3).

Modified:
   trunk/configure.ac

Modified: trunk/configure.ac
==============================================================================
--- trunk/configure.ac  Fri Apr 16 16:45:34 2010        (r2298)
+++ trunk/configure.ac  Fri Apr 16 16:57:45 2010        (r2299)
@@ -83,7 +83,7 @@
 AC_MSG_RESULT([$enable_logging])
 
 # Set the preprocessor flags for the entire project
-AC_SUBST(AM_CPPFLAGS, "-D_POSIX_C_SOURCE=200112L -D_XOPEN_SOURCE=700")
+AC_SUBST(AM_CPPFLAGS, "-D_POSIX_C_SOURCE=200112L -D_XOPEN_SOURCE=600")
 
 if test "$(uname -s)" = "Darwin"; then
         AC_SUBST(AM_CPPFLAGS, "$AM_CPPFLAGS -D_DARWIN_C_SOURCE")

Other related posts:

  • » [pisa-src] r2299 - trunk/configure.ac - Mircea Gherzan