* acspecific.m4 (_AC_EXEEXT): Skip *.pdb.

From Paul Berrevoets <paul@swi.com>.
This commit is contained in:
Akim Demaille 2000-12-07 16:09:12 +00:00
parent 5561d67cf9
commit cce1813e74
3 changed files with 13 additions and 2 deletions

View File

@ -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

View 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

View 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