]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
* acspecific.m4 (_AC_EXEEXT): Skip *.pdb.
authorAkim Demaille <akim@epita.fr>
Thu, 7 Dec 2000 16:09:12 +0000 (16:09 +0000)
committerAkim Demaille <akim@epita.fr>
Thu, 7 Dec 2000 16:09:12 +0000 (16:09 +0000)
From Paul Berrevoets <paul@swi.com>.

ChangeLog
acspecific.m4
lib/autoconf/specific.m4

index f2330b300aa98e8549ca30c0f63bf62b4e8db424..69681faac4a78ce237fecbaad670a6e0013be2b4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2000-12-07  Akim Demaille  <akim@epita.fr>
+
+       * acspecific.m4 (_AC_EXEEXT): Skip *.pdb.
+       From Paul Berrevoets <paul@swi.com>.
+
 2000-12-07  Akim Demaille  <akim@epita.fr>
 
        * tests/atgeneral.m4 (AT_CHECK): Bad typo: assign `exit 1' to
index 61b8fc4f3b4ace7d7fbdfe3fb3949c10b3cea3bb..5b98d0086a243c17ba2447bf13de690a4fa6e2aa 100644 (file)
@@ -1206,6 +1206,9 @@ AC_DEFUN([AC_OBJEXT],   [])
 #
 # Ignore .d files produced by CFLAGS=-MD.
 #
+# On UWIN (which uses a cc wrapper for MSVC), the compiler also generates
+# a .pdb file
+#
 # This macro is called by AC_LANG_COMPILER, the latter being required
 # by the AC_COMPILE_IFELSE macros, so use AC_TRY_EVAL.
 m4_define([_AC_EXEEXT],
@@ -1221,7 +1224,7 @@ m4_define([_AC_EXEEXT],
       # `rm'.
       for ac_file in `ls conftest.exe conftest conftest.* 2>/dev/null`; do
        case $ac_file in
-         *.$ac_ext | *.o | *.obj | *.xcoff | *.tds | *.d) ;;
+         *.$ac_ext | *.o | *.obj | *.xcoff | *.tds | *.d | *.pdb ) ;;
          *) ac_cv_exeext=`expr "$ac_file" : 'conftest\(.*\)'`
             break;;
        esac
index 61b8fc4f3b4ace7d7fbdfe3fb3949c10b3cea3bb..5b98d0086a243c17ba2447bf13de690a4fa6e2aa 100644 (file)
@@ -1206,6 +1206,9 @@ AC_DEFUN([AC_OBJEXT],   [])
 #
 # Ignore .d files produced by CFLAGS=-MD.
 #
+# On UWIN (which uses a cc wrapper for MSVC), the compiler also generates
+# a .pdb file
+#
 # This macro is called by AC_LANG_COMPILER, the latter being required
 # by the AC_COMPILE_IFELSE macros, so use AC_TRY_EVAL.
 m4_define([_AC_EXEEXT],
@@ -1221,7 +1224,7 @@ m4_define([_AC_EXEEXT],
       # `rm'.
       for ac_file in `ls conftest.exe conftest conftest.* 2>/dev/null`; do
        case $ac_file in
-         *.$ac_ext | *.o | *.obj | *.xcoff | *.tds | *.d) ;;
+         *.$ac_ext | *.o | *.obj | *.xcoff | *.tds | *.d | *.pdb ) ;;
          *) ac_cv_exeext=`expr "$ac_file" : 'conftest\(.*\)'`
             break;;
        esac