]> git.ipfire.org Git - thirdparty/make.git/commitdiff
Fix autoconf macros for detecting DOS-style pathnames.
authorPaul Smith <psmith@gnu.org>
Mon, 16 Jan 2012 03:53:34 +0000 (03:53 +0000)
committerPaul Smith <psmith@gnu.org>
Mon, 16 Jan 2012 03:53:34 +0000 (03:53 +0000)
Fixes Savannah bug #35256.

config/ChangeLog
config/dospaths.m4

index a6abfa349c4600b03b93744af2979ed86e833bf7..95f115734b3e14b0c76f8f43ae98c65b3e29e33d 100644 (file)
@@ -1,3 +1,8 @@
+2012-01-15  Paul Smith  <psmith@gnu.org>
+
+       * dospaths.m4: Use AC_LANG_PROGRAM to encapsulate the test code.
+       Fixes Savannah bug #35256.  Patch from Sebastian Pipping.
+
 2006-03-09  Paul Smith  <psmith@gnu.org>
 
        * dospaths.m4: Add MSYS to the list of targets allowing DOS-style
index 0615f0adc8ac5974a91fece6b4e65d47d20471f6..b341aca1f82378f07b19289202d4bed1cf7b223d 100644 (file)
 # You should have received a copy of the GNU General Public License along with
 # this program.  If not, see <http://www.gnu.org/licenses/>.
 
-AC_DEFUN([pds_AC_DOS_PATHS],
-  [
-    AC_CACHE_CHECK([whether system uses MSDOS-style paths], [ac_cv_dos_paths],
-      [
-        AC_COMPILE_IFELSE([
+AC_DEFUN([pds_AC_DOS_PATHS], [
+  AC_CACHE_CHECK([whether system uses MSDOS-style paths], [ac_cv_dos_paths], [
+    AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
 #if !defined _WIN32 && !defined __WIN32__ && !defined __MSDOS__ && !defined __EMX__ && !defined __MSYS__ && !defined __CYGWIN__
 neither MSDOS nor Windows nor OS2
 #endif
-],
+]])],
         [ac_cv_dos_paths=yes],
-        [ac_cv_dos_paths=no])
-      ])
+        [ac_cv_dos_paths=no])])
 
-    if test x"$ac_cv_dos_paths" = xyes; then
-      AC_DEFINE_UNQUOTED([HAVE_DOS_PATHS], 1,
-                         [Define if the system uses DOS-style pathnames.])
-    fi
-  ])
+  AS_IF([test x"$ac_cv_dos_paths" = xyes],
+  [ AC_DEFINE_UNQUOTED([HAVE_DOS_PATHS], 1,
+                       [Define if the system uses DOS-style pathnames.])])
+])