Skip to content

Commit 0ff0167

Browse files
author
thornbem
committed
Autotools:
Upgraded configuration input files (configure.in etc) to be usable with autoconf 2.61 and automake 1.10 Regenerate all the configuration output files using autoreconf in all directories where there is a configure.in (recursion into subdirectories does not work) except db4/PORT db4: Added further configuration items to db4/PORT to support regeneration of configuration output files. Regeneration is carried out using shell script s_config Changed the settings of configuration items so that a db1.85 version is built by default. General: Adjusted Makefile.am in various directories to find db4 header files in the build directory, not source directory. Source Navigator can now again be configured and built out of the source tree.
1 parent a5a3c89 commit 0ff0167

File tree

144 files changed

+125204
-31846
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

144 files changed

+125204
-31846
lines changed

config/acinclude.m4

Lines changed: 25 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -284,18 +284,16 @@ if test x"${ac_cv_c_tkh}" = x ; then
284284
dnl find the top level Tk source directory
285285
for i in $dirlist; do
286286
if test -n "`ls -dr $srcdir/$i/tk* 2>/dev/null`" ; then
287-
tkpath=$srcdir/$i
288-
break
289-
fi
290-
done
291287
292-
dnl find the exact Tk source dir. We do it this way, cause there
293-
dnl might be multiple version of Tk, and we want the most recent one.
294-
for i in `ls -dr $tkpath/tk* 2>/dev/null ` ; do
295-
if test -f $i/generic/tk.h ; then
296-
ac_cv_c_tkh=`(cd $i/generic; ${PWDCMD-pwd})`
297-
break
298-
fi
288+
dnl find the exact Tk source dir. We do it this way, cause there
289+
dnl might be multiple version of Tk, and we want the most recent one.
290+
for j in `ls -dr $srcdir/$i/tk* 2>/dev/null ` ; do
291+
if test -f $j/generic/tk.h ; then
292+
ac_cv_c_tkh=`(cd $j/generic; ${PWDCMD-pwd})`
293+
break
294+
fi
295+
done
296+
fi
299297
done
300298
fi
301299
@@ -375,25 +373,23 @@ if test x"${no_tk}" = x ; then
375373
dnl find the top level Tk source directory
376374
for i in $dirlist; do
377375
if test -n "`ls -dr $i/tk* 2>/dev/null`" ; then
378-
tkconfpath=$i
379-
break
380-
fi
381-
done
382376
383-
dnl find the exact Tk dir. We do it this way, cause there
384-
dnl might be multiple version of Tk, and we want the most recent one.
385-
for i in `ls -dr $tkconfpath/tk* 2>/dev/null ` ; do
386-
dnl need to test both unix and win directories, since
387-
dnl cygwin's tkConfig.sh could be in either directory depending
388-
dnl on the cygwin port of tk.
389-
if test -f $i/unix/tkConfig.sh ; then
390-
ac_cv_c_tkconfig=`(cd $i/unix; ${PWDCMD-pwd})`
391-
break
392-
fi
393-
if test -f $i/win/tkConfig.sh ; then
394-
ac_cv_c_tkconfig=`(cd $i/win; ${PWDCMD-pwd})`
395-
break
396-
fi
377+
dnl find the exact Tk dir. We do it this way, cause there
378+
dnl might be multiple version of Tk, and we want the most recent one.
379+
for j in `ls -dr $i/tk* 2>/dev/null ` ; do
380+
dnl need to test both unix and win directories, since
381+
dnl cygwin's tkConfig.sh could be in either directory depending
382+
dnl on the cygwin port of tk.
383+
if test -f $j/unix/tkConfig.sh ; then
384+
ac_cv_c_tkconfig=`(cd $j/unix; ${PWDCMD-pwd})`
385+
break
386+
fi
387+
if test -f $j/win/tkConfig.sh ; then
388+
ac_cv_c_tkconfig=`(cd $j/win; ${PWDCMD-pwd})`
389+
break
390+
fi
391+
done
392+
fi
397393
done
398394
fi
399395

0 commit comments

Comments
 (0)