diff options
author | Tom Tromey <tromey@redhat.com> | 2005-06-14 20:27:38 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2005-06-14 20:27:38 +0000 |
commit | 3e80bcc6def1bcc09861e1484bf16990374389c8 (patch) | |
tree | fa0d41f0ceb6f9690cbf4e740e91040e47b6e147 /config | |
parent | 5f91f66bbc107226d8119cf632580a83fb30f448 (diff) | |
download | gdb-3e80bcc6def1bcc09861e1484bf16990374389c8.tar.gz |
PR libgcj/19877:
* no-executables.m4: Call real AC_FUNC_MMAP when cache variable
is set but not 'no'.
Diffstat (limited to 'config')
-rw-r--r-- | config/ChangeLog | 6 | ||||
-rw-r--r-- | config/no-executables.m4 | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/config/ChangeLog b/config/ChangeLog index bba86988df4..5fac2d0f49b 100644 --- a/config/ChangeLog +++ b/config/ChangeLog @@ -1,3 +1,9 @@ +2005-06-14 Tom Tromey <tromey@redhat.com> + + PR libgcj/19877: + * no-executables.m4: Call real AC_FUNC_MMAP when cache variable + is set but not 'no'. + 2005-06-13 Zack Weinberg <zack@codesourcery.com> * depstand.m4, lead-dot.m4: New files. diff --git a/config/no-executables.m4 b/config/no-executables.m4 index ca26b7112c6..54e5a024288 100644 --- a/config/no-executables.m4 +++ b/config/no-executables.m4 @@ -53,7 +53,7 @@ if test x$gcc_no_link = xyes; then ac_cv_func_mmap_fixed_mapped=no fi fi -if test "x${ac_cv_func_mmap_fixed_mapped+set}" != xset; then +if test "x${ac_cv_func_mmap_fixed_mapped}" != xno; then m4_defn([AC_FUNC_MMAP]) fi) |