]> granicus.if.org Git - re2c/commitdiff
- Fixed #1776177 Build on AIX
authorhelly <helly@642ea486-5414-0410-9d7f-a0204ed87703>
Mon, 20 Aug 2007 12:54:10 +0000 (12:54 +0000)
committerhelly <helly@642ea486-5414-0410-9d7f-a0204ed87703>
Mon, 20 Aug 2007 12:54:10 +0000 (12:54 +0000)
re2c/CHANGELOG
re2c/config_w32.h
re2c/config_w32.h.in
re2c/configure.in
re2c/htdocs/index.html
re2c/run_tests.sh.in

index 956269c480179461240664ba51240377d2224d4b..11e19cf84f6ebdecc8ce5a5202590d0c38c010c8 100644 (file)
@@ -1,6 +1,7 @@
 Version 0.13.1 (2007-??-??)
 ---------------------------
 - Fixed issue with some compilers.
+- Fixed #1776177 Build on AIX.
 - Fixed #1743180 fwrite with 0 length crashes on OS X.
 
 Version 0.13.0 (2007-06-24)
index 4bb08da539b7f89923cf48cad51ae522b3c20a44..90dde446b0e855ad6bf6b46d64fabda59b017e67 100644 (file)
@@ -7,10 +7,6 @@
 /* Define to 1 if you have the <inttypes.h> header file. */
 #define HAVE_INTTYPES_H 1
 
-/* Define to 1 if your system has a GNU libc compatible `malloc' function, and
-   to 0 otherwise. */
-#define HAVE_MALLOC 1
-
 /* Define to 1 if you have the <memory.h> header file. */
 #define HAVE_MEMORY_H 1
 
@@ -98,9 +94,6 @@
 /* #undef inline */
 #endif
 
-/* Define to rpl_malloc if the replacement function should be used. */
-/* #undef malloc */
-
 /* Define to `unsigned' if <sys/types.h> does not define. */
 /* #undef size_t */
 
index e91d484cb5eab095e6dfcd83bb07614168579c0f..18eac0458b69e87cb920c4c29ba43434004a8653 100755 (executable)
@@ -7,10 +7,6 @@
 /* Define to 1 if you have the <inttypes.h> header file. */
 #define HAVE_INTTYPES_H 1
 
-/* Define to 1 if your system has a GNU libc compatible `malloc' function, and
-   to 0 otherwise. */
-#define HAVE_MALLOC 1
-
 /* Define to 1 if you have the <memory.h> header file. */
 #define HAVE_MEMORY_H 1
 
@@ -98,9 +94,6 @@
 /* #undef inline */
 #endif
 
-/* Define to rpl_malloc if the replacement function should be used. */
-/* #undef malloc */
-
 /* Define to `unsigned' if <sys/types.h> does not define. */
 /* #undef size_t */
 
index 193638c83bd76dfb644a970e7bf1cfce0e2c2124..48e288b00f578965cedc52ad7f92113441ae3578 100644 (file)
@@ -41,7 +41,6 @@ AC_TYPE_SIZE_T
 AC_C_VOLATILE
 
 # Checks for library functions.
-AC_FUNC_MALLOC
 AC_FUNC_MEMCMP
 AC_FUNC_MMAP
 AC_CHECK_FUNCS([memset munmap strdup strndup])
index 57e0d4dd955ebc749b6f0e4529c76d45aa0a933c..609973e4f0af5ac4a3df66878d38d4777cafb823 100755 (executable)
@@ -83,6 +83,7 @@ fixes which were incorporated. <a href=
 <h2>2007-??-??: 0.13.1</h2>
 <ul>
 <li>Fixed issue with some compilers.</li>
+<li>Fixed #1776177 Build on AIX.</li>
 <li>Fixed #1743180 fwrite with 0 length crashes on OS X.</li>
 </ul>
 <h2>2007-06-24: 0.13.0</h2>
@@ -94,6 +95,7 @@ fixes which were incorporated. <a href=
 <h2>????-??-??: 0.12.3</h2>
 <ul>
 <li>Fixed issue with some compilers.</li>
+<li>Fixed #1776177 Build on AIX.</li>
 </ul>
 <h2>2007-06-26: 0.12.2</h2>
 <ul>
index 684a133883d8c44050d4beaf03355bfff5bb71ad..27a348a257d8d26ff4f9d282dce784e73667a9d1 100644 (file)
@@ -3,8 +3,8 @@ _XPG=1
 result=0
 errcnt=0
 tstcnt=0;
-#diff='diff -u -I "#line [0-9]*"'
-diff='diff -u'
+diff -u $0 $0 >/dev/null 2>&1 && diff='diff -u' || diff='diff'
+#diff="${diff} -I '#line [0-9]*'"
 if test $# = 0; then
 tests=`for i in test lessons; do find @top_srcdir@/$i -name '*.re'; done|sort`
 else