From: Tom Tromey Date: Tue, 14 Jun 2005 20:27:38 +0000 (+0000) Subject: PR libgcj/19877: X-Git-Tag: gdb-csl-arm-20051020-branchpoint~997 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=dfdbbcafa741e19d83c8ae61d5a05f85d0093cda;p=external%2Fbinutils.git PR libgcj/19877: * no-executables.m4: Call real AC_FUNC_MMAP when cache variable is set but not 'no'. --- diff --git a/config/ChangeLog b/config/ChangeLog index bba8698..5fac2d0 100644 --- a/config/ChangeLog +++ b/config/ChangeLog @@ -1,3 +1,9 @@ +2005-06-14 Tom Tromey + + PR libgcj/19877: + * no-executables.m4: Call real AC_FUNC_MMAP when cache variable + is set but not 'no'. + 2005-06-13 Zack Weinberg * depstand.m4, lead-dot.m4: New files. diff --git a/config/no-executables.m4 b/config/no-executables.m4 index ca26b71..54e5a02 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)