1 #! /bin/sh 2 3 # This is the config.site file for configuring GNU packages 4 # which are to be built with DJGPP tools. 5 6 # These two variables are required, otherwise looking for 7 # programs along the PATH will not work. 8 PATH_SEPARATOR=: 9 PATH_EXPAND=y 10 11 # This is required in for "test -f foo" to find foo.exe 12 export TEST_FINDS_EXE=y 13 14 # The root of the DJGPP tree serves as the default prefix 15 test "x$prefix" = xNONE && prefix='/dev/env/DJDIR' 16 17 # This is required for config.status script to be run, since 18 # ./configure runs it by invoking ${CONFIG_SHELL-/bin/sh} 19 CONFIG_SHELL=${CONFIG_SHELL='sh'} 20 21 # These are set here so the generated Makefile's will be good 22 # for every DJGPP installation, not only the one where the 23 # package was configured. 24 # $INSTALL must be an absolute path name, otherwise config.status 25 # will try to prepend ./ and ../ to it when it goes into subdirs. 26 INSTALL=${INSTALL='/dev/env/DJDIR/bin/ginstall -c'} 27 RANLIB=${RANLIB='ranlib'} 28 LPR=${LPR='cat >>PRN'} 29 DVIPRINT=${DVIPRINT='dvilj4 - >>PRN'} 30 PERLPATH=${PERLPATH='/usr/bin/perl'} 31 32 # Force `cp' to be used instead of "ln -s". 33 ac_cv_prog_LN_S="cp -p" 34