You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
162 lines
6.4 KiB
162 lines
6.4 KiB
# DJGPP specific configuration file. |
|
# Sed script for additional DJGPP specific editing |
|
# of the configure script generated by autoconf 2.60. |
|
|
|
|
|
# Additional editing of Makefiles |
|
/^".*ac_file_inputs.*tmp\/out$/ a\ |
|
cat > "$tmp/subs-djgpp.sed" << eof_djgpp\ |
|
# DJGPP specific Makefile changes.\ |
|
s,\\.deps,_deps,g\ |
|
s,\\.libs,_libs,g\ |
|
s,\\.new\\.,_new.,g\ |
|
s,\\.old\\.,_old.,g\ |
|
s,\\.tab\\.,_tab.,g\ |
|
s,config\\.h\\.in,config.h-in,g\ |
|
s,\\.\\([1-9]\\)\\.html,_\\1.html,g\ |
|
s,iconv\\.h\\.inst,iconv_h.ins,g\ |
|
s,iconv\\.h\\.in,iconv.h-in,g\ |
|
s,iconv\\.h\\.build\\.in,iconv.h-build-in,g\ |
|
s,libcharset\\.h\\.in,libcharset.h-in,g\ |
|
s,localcharset\\.h\\.inst,localcharset_h.ins,g\ |
|
s,localcharset\\.h\\.in,localcharset.h-in,g\ |
|
s,localcharset\\.h\\.build\\.in,localcharset.h-build-in,g\ |
|
s,Makefile\\.am\\.in,Makefile.am-in,g\ |
|
s,Makefile\\.in\\.in,Makefile.in-in,g\ |
|
/^\\.y\\.c:/,/^$/ {\ |
|
/\\\$(YACCCOMPILE)/ {\ |
|
a\\\\\ |
|
-@test -f y.tab.c && mv -f y.tab.c y_tab.c\\\\\ |
|
-@test -f y.tab.h && mv -f y.tab.h y_tab.h\ |
|
}\ |
|
}\ |
|
eof_djgpp\ |
|
sed -f "\$tmp/subs-djgpp.sed" \$tmp/out > \$tmp/out.djgpp\ |
|
mv -f \$tmp/out.djgpp \$tmp/out |
|
|
|
|
|
# Rename config.h.in into config.h-in |
|
/ac_config_headers=/s|config\.h|&:config.h-in|g |
|
/CONFIG_HEADERS=/ s|config\.h\.in|&:config.h-in|2 |
|
|
|
# Rename iconv.h.build.in, iconv.h.inst, iconv.h.in and Makefile.in.in into iconv.h-build-in, iconv_h.ins, iconv.h-in and Makefile.in-in |
|
/ac_config_files=/ { |
|
s|iconv\.h\.build\.in|iconv.h-build-in| |
|
s|iconv\.h\.inst|iconv_h.ins| |
|
s|iconv\.h\.in|iconv.h-in| |
|
s|po/Makefile\.in|&:po/Makefile.in-in| |
|
} |
|
/CONFIG_FILES=/ { |
|
s|iconv\.h\.build\.in|iconv.h-build-in| |
|
s|iconv\.h\.inst|iconv_h.ins| |
|
s|iconv\.h\.in|iconv.h-in| |
|
s|po/Makefile\.in|&:po/Makefile.in-in|2 |
|
} |
|
|
|
# Rename localcharset.h.build.in, localcharset.h.inst, localcharset.h.in and Makefile.in.in into localcharset.h-build-in, localcharset_h.ins, localcharset.h-in and Makefile.in-in |
|
/ac_config_files=/ { |
|
s|localcharset\.h\.build\.in|localcharset.h-build-in| |
|
s|localcharset\.h\.inst|localcharset_h.ins| |
|
s|localcharset\.h\.in|localcharset.h-in| |
|
} |
|
/CONFIG_FILES=/ { |
|
s|localcharset\.h\.build\.in|localcharset.h-build-in| |
|
s|localcharset\.h\.inst|localcharset_h.ins| |
|
s|localcharset\.h\.in|localcharset.h-in| |
|
} |
|
|
|
# We always use _deps and _libs instead of .deps and .libs, because |
|
# the latter is an invalid name on 8+3 MS-DOS file system. This makes |
|
# the generated Makefiles good for every DJGPP installation, not only |
|
# the one where the package was configured (which could happen to be |
|
# a Windows box, where leading dots in file names are allowed). |
|
s,\.deps,_deps,g |
|
s,\.libs,_libs,g |
|
/^rmdir[ ]*\.tst/ i\ |
|
am__leading_dot=_ |
|
|
|
# Replace (command) > /dev/null with `command > /dev/null`, since |
|
# parenthesized commands always return zero status in the ported Bash, |
|
# even if the named command doesn't exist |
|
/if ([^|;`]*null/{ |
|
s,(,`, |
|
s,),, |
|
/null[ ]*2>&1/ s,2>&1,&`, |
|
/null.*null/ s,null.*null,&`, |
|
/null.*null/ !{ |
|
/null[ ]*2>&1/ !s,null,&`, |
|
} |
|
} |
|
|
|
# DOS-style absolute file names should be supported as well |
|
/\*) top_srcdir=/s,/\*,[\\\\/]* | ?:[\\\\/]*, |
|
|
|
# The following two items are changes needed for configuring |
|
# and compiling across partitions. |
|
# 1) The given srcdir value is always translated from the |
|
# "x:" syntax into "/dev/x" syntax while we run configure. |
|
/^[ ]*-srcdir=\*.*$/ a\ |
|
ac_optarg=`echo "$ac_optarg" | sed "s,^\\([A-Za-z]\\):,/dev/\\1,"` |
|
/set X `ls -Lt \$srcdir/ i\ |
|
if `echo $srcdir | grep "^/dev/" - > /dev/null`; then\ |
|
srcdir=`echo "$srcdir" | sed -e "s%^/dev/%%" -e "s%/%:/%"`\ |
|
fi |
|
|
|
# Autoconf 2.52e generated configure scripts |
|
# write absolute paths into Makefiles and bison.in |
|
# making them useless for DJGPP installations for |
|
# which the package has not been configured for. |
|
/MISSING=/,/^$/ { |
|
/^fi$/ a\ |
|
am_missing_run=`echo "$am_missing_run" | sed 's%/dev/.*/libiconv[-_0-9]\\{1,1\\}[-.0-9A-Za-z+]*%${top_srcdir}%;s%.:.*/libiconv[-_0-9]\\{1,1\\}[-.0-9A-Za-z+]*%${top_srcdir}%'` |
|
} |
|
/^install_sh=/a\ |
|
install_sh=`echo "$install_sh" | sed 's%/dev/.*/libiconv[-_0-9]\\{1,1\\}[-.0-9A-Za-z+]*%${top_srcdir}%;s%.:.*/libiconv[-_0-9]\\{1,1\\}[-.0-9A-Za-z+]*%${top_srcdir}%'` |
|
|
|
# This will only work if the assumption that the |
|
# testsuite is ran from the following path: |
|
# ${top_srcdir}/tests/testsuite.dir |
|
# holds. The explicit names are of no importance. |
|
# ../../. == ${top_srcdir} |
|
#/^esac$/,/^ac_abs_srcdir=/ { |
|
/^ac_abs_srcdir=/ i\ |
|
ac_abs_builddir=`echo "$ac_abs_builddir" | sed "s%/dev/.*/libiconv[-_0-9]\\{1,1\\}[-.0-9A-Za-z+]*%../../.%;s%.:.*/libiconv[-_0-9]\\{1,1\\}[-.0-9A-Za-z+]*%../../.%"`\ |
|
ac_abs_top_builddir=`echo "$ac_abs_top_builddir" | sed "s%/dev/.*/libiconv[-_0-9]\\{1,1\\}[-.0-9A-Za-z+]*%../../..%;s%.:.*/libiconv[-_0-9]\\{1,1\\}[-.0-9A-Za-z+]*%../../..%"`\ |
|
ac_abs_top_srcdir=`echo "$ac_abs_top_srcdir" | sed "s%/dev/.*/libiconv[-_0-9]\\{1,1\\}[-.0-9A-Za-z+]*%../../..%;s%.:.*/libiconv[-_0-9]\\{1,1\\}[-.0-9A-Za-z+]*%../../..%"` |
|
#ac_abs_srcdir=`echo "$ac_abs_srcdir" | sed "s%/dev/.*/libiconv[-_0-9]\\{1,1\\}[-.0-9A-Za-z+]*%../../.%;s%.:.*/libiconv[-_0-9]\\{1,1\\}[-.0-9A-Za-z+]*%../../.%"` |
|
/^ac_abs_srcdir=/ a\ |
|
for dj_dir in $ac_abs_builddir $ac_abs_top_builddir $ac_abs_top_srcdir $ac_abs_srcdir\ |
|
do\ |
|
ac_abs_builddir=`echo "$ac_abs_builddir" | sed "s%//%/%g"`\ |
|
ac_abs_top_builddir=`echo "$ac_abs_top_builddir" | sed "s%//%/%g"`\ |
|
ac_abs_top_srcdir=`echo "$ac_abs_top_srcdir" | sed "s%//%/%g"`\ |
|
ac_abs_srcdir=`echo "$ac_abs_srcdir" | sed "s%//%/%g"`\ |
|
done |
|
|
|
# Add DJGPP version information. |
|
/^#define VERSION/ s/\$VERSION/& (DJGPP port (r1))/ |
|
|
|
# We need makeinfo to make the html formated docs. |
|
/\$am_missing_run[ ]*makeinfo/ s,\$am_missing_run,, |
|
|
|
# The path to the FORTRAN compiler and libraries |
|
# shall contain no absolute path reference so it |
|
# will be good for all djgpp installations. |
|
/^FLIBS="\$ac_cv_flibs"/ i\ |
|
ac_djgpp_path=`echo "$DJDIR" | sed 's%\\\\\\%/%g' | tr $as_cr_LETTERS $as_cr_letters`\ |
|
ac_cv_flibs=`echo "$ac_cv_flibs" | sed "s%-L$ac_djgpp_path%-L/dev/env/DJDIR%g"` |
|
|
|
# Autoconf generated configure scripts write absolute |
|
# paths of certain header files into Makefiles making |
|
# them useless for DJGPP installations for which the |
|
# package has not been configured for. |
|
/^.*echo "\$as_me:\$LINENO: result: \$gl_cv_absolute_.*$/ { |
|
h |
|
s,^.*\(gl_cv_absolute_\)\([a-z0-9_]*\)\(_h\).*$,\1\2\3=`echo $\1\2\3 | sed "s%[^:]:.*/include/%/dev/env/DJDIR/include/%"`, |
|
G |
|
} |
|
/^.*echo "\$as_me:\$LINENO: result: \$gl_cv_full_.*$/ { |
|
h |
|
s,^.*\(gl_cv_full_\)\([a-z0-9_]*\)\(_h\).*$,\1\2\3=`echo $\1\2\3 | sed "s%[^:]:.*/include/%/dev/env/DJDIR/include/%"`, |
|
G |
|
}
|
|
|