diff options
author | Greg McGary <greg@mcgary.org> | 1997-04-18 06:34:23 +0000 |
---|---|---|
committer | Greg McGary <greg@mcgary.org> | 1997-04-18 06:34:23 +0000 |
commit | ab66bea0c326c2e18866ad37134dc91bf99c514a (patch) | |
tree | 54cc06ba3cd8ca1b5e8f72284438c5a2172ec5b6 /configure | |
parent | 809b665811bde40439d829d6193b278b26ae00ed (diff) | |
download | idutils-ab66bea0c326c2e18866ad37134dc91bf99c514a.tar.gz idutils-ab66bea0c326c2e18866ad37134dc91bf99c514a.tar.bz2 idutils-ab66bea0c326c2e18866ad37134dc91bf99c514a.zip |
imported from mkid-3.0.1r3_0_1
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -1709,12 +1709,14 @@ EOF fi -if test "$ac_cv_func_re_comp" = no; then REGEXP=rx.o; fi +if test "$ac_cv_func_re_comp" = no; then REGEXP="regex.o"; fi if test "$ac_cv_func_getopt_long" = no; then GETOPT="getopt.o getopt1.o"; fi if test "$ac_cv_func_strcasecmp" = no; then STRCASECMP="strcasecmp.o"; fi +if test "$ac_cv_func_strerror" = no; then STRERROR="strerror.o"; fi + if test "x$prefix" != xNONE; then libdir=$prefix/lib @@ -1729,6 +1731,11 @@ cat >> confdefs.h <<EOF EOF +DEPEND=${srcdir:-.}/depend.out +DEPEND_FILE=$DEPEND + + + trap '' 1 2 15 if test -w $cache_file; then echo "updating cache $cache_file" @@ -1844,8 +1851,12 @@ s%@ALLOCA@%$ALLOCA%g s%@REGEXP@%$REGEXP%g s%@GETOPT@%$GETOPT%g s%@STRCASECMP@%$STRCASECMP%g +s%@STRERROR@%$STRERROR%g s%@libdir@%$libdir%g s%@IID_HELP_FILE@%$IID_HELP_FILE%g +s%@DEPEND@%$DEPEND%g +/@DEPEND_FILE@/r $DEPEND_FILE +s%@DEPEND_FILE@%%g CEOF EOF |