diff options
author | steve <steve@FreeBSD.org> | 2000-08-14 01:50:52 +0000 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 2000-08-14 01:50:52 +0000 |
commit | 2837af71c52fae41691c3bf5d2252b4735a4c249 (patch) | |
tree | a77a84555565f77fe72afdc41667bf72769744ba /databases/metakit | |
parent | a6ee4d3e85e44bfe8417febc5c1aa181787fd030 (diff) | |
download | FreeBSD-ports-2837af71c52fae41691c3bf5d2252b4735a4c249.zip FreeBSD-ports-2837af71c52fae41691c3bf5d2252b4735a4c249.tar.gz |
Fix a bogon in the configure script where the executable suffix was being
set to '.C' and causing serious problems with ${ac_link} evaluating to this:
c++ -o conftest.C conftest.C
Diffstat (limited to 'databases/metakit')
-rw-r--r-- | databases/metakit/files/patch-ad | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/databases/metakit/files/patch-ad b/databases/metakit/files/patch-ad index dd9e4cf..6bc45d4 100644 --- a/databases/metakit/files/patch-ad +++ b/databases/metakit/files/patch-ad @@ -1,5 +1,5 @@ ---- ../unix/configure.orig Fri Mar 17 17:57:30 2000 -+++ ../unix/configure Sat Jul 29 16:00:40 2000 +--- ../unix/configure.orig Fri Mar 17 09:57:30 2000 ++++ ../unix/configure Sun Aug 13 19:45:58 2000 @@ -652,7 +652,6 @@ if test x"${ac_cv_c_tclconfig}" = x ; then TCL_BIN_DIR="# no Tcl configs found" @@ -8,7 +8,16 @@ else TCL_BIN_DIR=${ac_cv_c_tclconfig} echo "$ac_t""found $TCL_BIN_DIR/tclConfig.sh" 1>&6 -@@ -2308,7 +2308,7 @@ +@@ -1594,7 +1593,7 @@ + if { (eval echo configure:1595: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then + for file in conftest.*; do + case $file in +- *.c | *.o | *.obj) ;; ++ *.[Cc] | *.o | *.obj) ;; + *) ac_cv_exeext=`echo $file | sed -e s/conftest//` ;; + esac + done +@@ -2308,7 +2307,7 @@ LN_S="$LN_S" NM="$NM" RANLIB="$RANLIB" \ DLLTOOL="$DLLTOOL" AS="$AS" OBJDUMP="$OBJDUMP" \ ${CONFIG_SHELL-/bin/sh} $ac_aux_dir/ltconfig --no-reexec \ |