Blame djgpp/config.site

Packit 5b56b6
#! /bin/sh
Packit 5b56b6
Packit 5b56b6
# These two variables are required, otherwise looking for
Packit 5b56b6
# programs along the PATH will not work.
Packit 5b56b6
PATH_SEPARATOR=:
Packit 5b56b6
PATH_EXPAND=y
Packit 5b56b6
Packit 5b56b6
# This is required in for "test -f foo" to find foo.exe
Packit 5b56b6
export TEST_FINDS_EXE=y
Packit 5b56b6
Packit 5b56b6
# The root of the DJGPP tree serves as the default prefix
Packit 5b56b6
# for all paths that are hardcoded in the binaries.
Packit 5b56b6
# When installing the installation prefix must be supplied.
Packit 5b56b6
test "x$prefix" = xNONE && prefix='/dev/env/DJDIR'
Packit 5b56b6
Packit 5b56b6
# This is required for config.status script to be run, since
Packit 5b56b6
# ./configure runs it by invoking ${CONFIG_SHELL-/bin/sh}
Packit 5b56b6
# CONFIG_SHELL=${CONFIG_SHELL='sh'}
Packit 5b56b6
Packit 5b56b6
# These are set here so the generated Makefile's will be good
Packit 5b56b6
# for every DJGPP installation, not only the one where the
Packit 5b56b6
# package was configured.
Packit 5b56b6
# $INSTALL must be an absolute path name, otherwise config.status
Packit 5b56b6
# will try to prepend ./ and ../ to it when it goes into subdirs.
Packit 5b56b6
INSTALL=${INSTALL='/dev/env/DJDIR/bin/ginstall -c'}
Packit 5b56b6
PERL=${PERL='/dev/env/DJDIR/bin/perl'}
Packit 5b56b6
RANLIB=${RANLIB='ranlib'}
Packit 5b56b6
DVIPS=${DVIPS='/dev/env/DJDIR/bin/dvips'}
Packit 5b56b6
TEXI2PDF=${TEXI2PDF='/dev/env/DJDIR/bin/texi2pdf'}
Packit 5b56b6
Packit 5b56b6
# A sane defualt for emacs.
Packit 5b56b6
ac_cv_path_EMACS=${EMACS='/dev/env/DJDIR/gnu/emacs/bin/emacs'}
Packit 5b56b6
Packit 5b56b6
# These are set here so the generated libtool will be good
Packit 5b56b6
# for every DJGPP installation, not only the one where the
Packit 5b56b6
# package was configured.
Packit 5b56b6
NM=${NM='nm'}
Packit 5b56b6
LD=${LD='ld'}
Packit 5b56b6
Packit 5b56b6
# Force the test for 'ln -s' to report 'cp -p'.
Packit 5b56b6
ac_cv_prog_LN_S='cp -p'