diff options
| -rw-r--r-- | ChangeLog | 9 | ||||
| -rw-r--r-- | admin/ChangeLog | 3 | ||||
| -rwxr-xr-x | admin/merge-gnulib | 2 | ||||
| -rw-r--r-- | m4/gnulib-comp.m4 (renamed from m4/gl-comp.m4) | 0 |
4 files changed, 12 insertions, 2 deletions
| @@ -1,5 +1,14 @@ | |||
| 1 | 2012-05-21 Paul Eggert <eggert@cs.ucla.edu> | 1 | 2012-05-21 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 2 | ||
| 3 | Use full name for m4/gnulib-comp.m4. (Bug#11529) | ||
| 4 | Previously the file was named m4/gl-comp.m4 due to DOS 8+3 restrictions, | ||
| 5 | even though the file's name in gnulib is m4/gnulib-comp.m4. | ||
| 6 | This had a problem when merging from gnulib, as the code temporarily | ||
| 7 | renamed it to the full name, causing problems when interrupted. | ||
| 8 | Now the file has its full name, with the idea that we will find | ||
| 9 | a solution for MS-DOS that does not affect the rest of Emacs. | ||
| 10 | * m4/gnulib-comp.m4: Rename from m4/gl-comp.m4. | ||
| 11 | |||
| 3 | Assume C89 or later. | 12 | Assume C89 or later. |
| 4 | * configure.in (AC_C_PROTOTYPES, AC_C_VOLATILE, AC_C_CONST) | 13 | * configure.in (AC_C_PROTOTYPES, AC_C_VOLATILE, AC_C_CONST) |
| 5 | (POINTER_TYPE, PROTOTYPES): Remove. | 14 | (POINTER_TYPE, PROTOTYPES): Remove. |
diff --git a/admin/ChangeLog b/admin/ChangeLog index 1da647a803d..5ee31127006 100644 --- a/admin/ChangeLog +++ b/admin/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2012-05-21 Paul Eggert <eggert@cs.ucla.edu> | 1 | 2012-05-21 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 2 | ||
| 3 | Use full name for m4/gnulib-comp.m4. (Bug#11529) | ||
| 4 | * merge-gnulib: Leave m4/gnulib-comp.m4's name alone. | ||
| 5 | |||
| 3 | Assume C89 or later. | 6 | Assume C89 or later. |
| 4 | * CPP-DEFINES: Remove NULL, const. | 7 | * CPP-DEFINES: Remove NULL, const. |
| 5 | 8 | ||
diff --git a/admin/merge-gnulib b/admin/merge-gnulib index 57b71ee4a74..fa082d94664 100755 --- a/admin/merge-gnulib +++ b/admin/merge-gnulib | |||
| @@ -79,10 +79,8 @@ test -x "$gnulib_srcdir"/gnulib-tool || { | |||
| 79 | exit 1 | 79 | exit 1 |
| 80 | } | 80 | } |
| 81 | 81 | ||
| 82 | cp -- "$src"m4/gl-comp.m4 "$src"m4/gnulib-comp.m4 && | ||
| 83 | "$gnulib_srcdir"/gnulib-tool --dir="$src" $GNULIB_TOOL_FLAGS $GNULIB_MODULES && | 82 | "$gnulib_srcdir"/gnulib-tool --dir="$src" $GNULIB_TOOL_FLAGS $GNULIB_MODULES && |
| 84 | rm -- "$src"m4/gnulib-cache.m4 "$src"m4/warn-on-use.m4 && | 83 | rm -- "$src"m4/gnulib-cache.m4 "$src"m4/warn-on-use.m4 && |
| 85 | mv -- "$src"m4/gnulib-comp.m4 "$src"m4/gl-comp.m4 && | ||
| 86 | cp -- "$gnulib_srcdir"/build-aux/texinfo.tex "$src"doc/misc && | 84 | cp -- "$gnulib_srcdir"/build-aux/texinfo.tex "$src"doc/misc && |
| 87 | cp -- "$gnulib_srcdir"/build-aux/move-if-change "$src"build-aux && | 85 | cp -- "$gnulib_srcdir"/build-aux/move-if-change "$src"build-aux && |
| 88 | autoreconf -i -I m4 -- ${src:+"$src"} | 86 | autoreconf -i -I m4 -- ${src:+"$src"} |
diff --git a/m4/gl-comp.m4 b/m4/gnulib-comp.m4 index 73a26c41324..73a26c41324 100644 --- a/m4/gl-comp.m4 +++ b/m4/gnulib-comp.m4 | |||