X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=m4%2Ffopen.m4;h=8407ed486293503a691180610f7b043ef8791519;hb=7f3fdea4cbaa7fb29dce64828654ab3ad613a0a1;hp=757d4a15581bf39a3c6f0167ed4187ad4a85c1a9;hpb=df8bc51660941d7464dcd31170690519cb95c0c2;p=gnulib.git diff --git a/m4/fopen.m4 b/m4/fopen.m4 index 757d4a155..8407ed486 100644 --- a/m4/fopen.m4 +++ b/m4/fopen.m4 @@ -1,5 +1,5 @@ -# fopen.m4 serial 6 -dnl Copyright (C) 2007-2010 Free Software Foundation, Inc. +# fopen.m4 serial 7 +dnl Copyright (C) 2007-2011 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. @@ -21,17 +21,20 @@ AC_DEFUN([gl_FUNC_FOPEN], AC_CACHE_CHECK([whether fopen recognizes a trailing slash], [gl_cv_func_fopen_slash], [ - AC_TRY_RUN([ + AC_RUN_IFELSE( + [AC_LANG_SOURCE([[ #include #include int main () { return fopen ("conftest.sl/", "w") != NULL; -}], [gl_cv_func_fopen_slash=yes], [gl_cv_func_fopen_slash=no], +}]])], + [gl_cv_func_fopen_slash=yes], + [gl_cv_func_fopen_slash=no], [ changequote(,)dnl case "$host_os" in - aix* | hpux* | solaris2.[0-9]*) + aix* | hpux* | solaris2.[0-9] | solaris2.[0-9].*) gl_cv_func_fopen_slash="guessing no" ;; *) gl_cv_func_fopen_slash="guessing yes" ;;