11cc83814Sespie#! /bin/sh 2*3fb98d4aSespie# Site defaults for the DJGPP configuration 31cc83814Sespie 41cc83814Sespie# These two variables are required, otherwise looking for 51cc83814Sespie# programs along the PATH will not work. 61cc83814SespiePATH_SEPARATOR=: 71cc83814SespiePATH_EXPAND=y 81cc83814Sespie 9*3fb98d4aSespie# This is required in for "test -f foo" to find foo.exe. 10*3fb98d4aSespieexport TEST_FINDS_EXE=y 11*3fb98d4aSespie 121cc83814Sespie# The root of the DJGPP tree serves as the default prefix 13*3fb98d4aSespie# for all paths that are hardcoded in the binaries. 14*3fb98d4aSespie# When installing the installation prefix must be supplied. 15*3fb98d4aSespietest "x$prefix" = xNONE && prefix='/dev/env/DJDIR' 161cc83814Sespie 171cc83814Sespie# This is required for config.status script to be run, since 181cc83814Sespie# ./configure runs it by invoking ${CONFIG_SHELL-/bin/sh} 19*3fb98d4aSespie# CONFIG_SHELL=${CONFIG_SHELL='sh'} 201cc83814Sespie 211cc83814Sespie# These are set here so the generated Makefile's will be good 221cc83814Sespie# for every DJGPP installation, not only the one where the 231cc83814Sespie# package was configured. 241cc83814Sespie# $INSTALL must be an absolute path name, otherwise config.status 251cc83814Sespie# will try to prepend ./ and ../ to it when it goes into subdirs. 26*3fb98d4aSespieINSTALL=${INSTALL='/dev/env/DJDIR/bin/ginstall -c'} 271cc83814SespieRANLIB=${RANLIB='ranlib'} 28*3fb98d4aSespieGMSGFMT=${GMSGFMT='/dev/env/DJDIR/bin/msgfmt'} 29*3fb98d4aSespieMSGFMT=${MSGFMT='/dev/env/DJDIR/bin/msgfmt'} 30*3fb98d4aSespieXGETTEXT=${XGETTEXT='/dev/env/DJDIR/bin/xgettext'} 311cc83814Sespie 32*3fb98d4aSespie# Sane defaults for standard programs used by the build process. 33*3fb98d4aSespie# We force the values of these variables so that the resultant 34*3fb98d4aSespie# Makefile's will work on any DJGPP platform, not only on the 35*3fb98d4aSespie# machine where the package was configured. 36*3fb98d4aSespieac_cv_prog_AWK=${AWK='gawk'} 37*3fb98d4aSespieac_cv_prog_INTLBISON=${INTLBISON='bison'} 38*3fb98d4aSespieac_cv_prog_CC=${CC='gcc'} 39*3fb98d4aSespie 40*3fb98d4aSespie# These are set here so the generated libtool/Makefile's will 41*3fb98d4aSespie# be good for every DJGPP installation, not only the one where 42*3fb98d4aSespie# the package was configured. 43*3fb98d4aSespieNM=${NM='nm'} 44*3fb98d4aSespieLD=${LD='ld'} 45*3fb98d4aSespieMAKEINFO=${MAKEINFO='makeinfo'} 46*3fb98d4aSespie 47*3fb98d4aSespie# Force the test for 'ln -s' to report 'cp -pf'. 48*3fb98d4aSespieac_cv_prog_LN_S='cp -pf' 49*3fb98d4aSespie 50*3fb98d4aSespie# We have `fork', but it always fails. Don't trust Autoconf to be 51*3fb98d4aSespie# smart enough to detect that... 52*3fb98d4aSespieac_cv_func_fork=no 53*3fb98d4aSespieac_cv_func_vfork=no 54