From: helly Date: Mon, 20 Aug 2007 12:54:10 +0000 (+0000) Subject: - Fixed #1776177 Build on AIX X-Git-Tag: 0.13.6~123 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a775d0e70ded793c610bc9d8711df9edbbec5c88;p=re2c - Fixed #1776177 Build on AIX --- diff --git a/re2c/CHANGELOG b/re2c/CHANGELOG index 956269c4..11e19cf8 100644 --- a/re2c/CHANGELOG +++ b/re2c/CHANGELOG @@ -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) diff --git a/re2c/config_w32.h b/re2c/config_w32.h index 4bb08da5..90dde446 100644 --- a/re2c/config_w32.h +++ b/re2c/config_w32.h @@ -7,10 +7,6 @@ /* Define to 1 if you have the 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 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 does not define. */ /* #undef size_t */ diff --git a/re2c/config_w32.h.in b/re2c/config_w32.h.in index e91d484c..18eac045 100755 --- a/re2c/config_w32.h.in +++ b/re2c/config_w32.h.in @@ -7,10 +7,6 @@ /* Define to 1 if you have the 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 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 does not define. */ /* #undef size_t */ diff --git a/re2c/configure.in b/re2c/configure.in index 193638c8..48e288b0 100644 --- a/re2c/configure.in +++ b/re2c/configure.in @@ -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]) diff --git a/re2c/htdocs/index.html b/re2c/htdocs/index.html index 57e0d4dd..609973e4 100755 --- a/re2c/htdocs/index.html +++ b/re2c/htdocs/index.html @@ -83,6 +83,7 @@ fixes which were incorporated. 2007-??-??: 0.13.1
  • Fixed issue with some compilers.
  • +
  • Fixed #1776177 Build on AIX.
  • Fixed #1743180 fwrite with 0 length crashes on OS X.

2007-06-24: 0.13.0

@@ -94,6 +95,7 @@ fixes which were incorporated.
????-??-??: 0.12.3
  • Fixed issue with some compilers.
  • +
  • Fixed #1776177 Build on AIX.

2007-06-26: 0.12.2

    diff --git a/re2c/run_tests.sh.in b/re2c/run_tests.sh.in index 684a1338..27a348a2 100644 --- a/re2c/run_tests.sh.in +++ b/re2c/run_tests.sh.in @@ -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