1#! /bin/sh 2 3# These two variables are required, otherwise looking for 4# programs along the PATH will not work. 5PATH_SEPARATOR=: 6PATH_EXPAND=y 7 8# This is required in for "test -f foo" to find foo.exe 9export TEST_FINDS_EXE=y 10 11# The root of the DJGPP tree serves as the default prefix 12# for all paths that are hardcoded in the binaries. 13# When installing the installation prefix must be supplied. 14test "x$prefix" = xNONE && prefix='/dev/env/DJDIR' 15 16# This is required for config.status script to be run, since 17# ./configure runs it by invoking ${CONFIG_SHELL-/bin/sh} 18# CONFIG_SHELL=${CONFIG_SHELL='sh'} 19 20# These are set here so the generated Makefile's will be good 21# for every DJGPP installation, not only the one where the 22# package was configured. 23# $INSTALL must be an absolute path name, otherwise config.status 24# will try to prepend ./ and ../ to it when it goes into subdirs. 25INSTALL=${INSTALL='/dev/env/DJDIR/bin/ginstall -c'} 26PERL=${PERL='/dev/env/DJDIR/bin/perl'} 27RANLIB=${RANLIB='ranlib'} 28DVIPS=${DVIPS='/dev/env/DJDIR/bin/dvips'} 29TEXI2PDF=${TEXI2PDF='/dev/env/DJDIR/bin/texi2pdf'} 30 31# A sane defualt for emacs. 32ac_cv_path_EMACS=${EMACS='/dev/env/DJDIR/gnu/emacs/bin/emacs'} 33 34# These are set here so the generated libtool will be good 35# for every DJGPP installation, not only the one where the 36# package was configured. 37NM=${NM='nm'} 38LD=${LD='ld'} 39 40# Force the test for 'ln -s' to report 'cp -p'. 41ac_cv_prog_LN_S='cp -p' 42