[GRASS-SVN] r56936 - grass/trunk/include

svn_grass at osgeo.org svn_grass at osgeo.org
Wed Jun 26 07:30:10 PDT 2013


Author: mmetz
Date: 2013-06-26 07:30:09 -0700 (Wed, 26 Jun 2013)
New Revision: 56936

Modified:
   grass/trunk/include/config.h.in
Log:
remove AIX hack

Modified: grass/trunk/include/config.h.in
===================================================================
--- grass/trunk/include/config.h.in	2013-06-26 14:23:48 UTC (rev 56935)
+++ grass/trunk/include/config.h.in	2013-06-26 14:30:09 UTC (rev 56936)
@@ -302,19 +302,12 @@
 
 #endif /* MINGW32 LFS */
 
-/* IBM AIX: 
- * -D_LARGE_FILES should be sufficient,
- * but on some systems, struct stat64 must be set explicitly */
-#if defined(_AIX) && defined(__GNUC__)
-#define _STRUCT_STAT_
-typedef struct stat64 STRUCT_STAT;
-#endif
-
 #endif	/* HAVE_LARGEFILES */
 
 
 #ifndef _STRUCT_STAT_
 #define _STRUCT_STAT_
+#include <sys/stat.h>
 typedef struct stat STRUCT_STAT;
 #endif
 



More information about the grass-commit mailing list