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# Include the djgpp subdirectory in PATH, so that getconf is found
7PATH="$srcdir/djgpp:$PATH"
8
9# These two variables are required, otherwise looking for
10# programs along the PATH will not work.
11PATH_SEPARATOR=:
12PATH_EXPAND=y
13
14# This is required in for "test -f foo" to find foo.exe
15export TEST_FINDS_EXE=y
16
17# The root of the DJGPP tree serves as the default prefix
18# for all paths that are hardcoded in the binaries.
19# When installing the installation prefix must be supplied.
20test "x$prefix" = xNONE && prefix='/dev/env/DJDIR'
21
22# This is required for config.status script to be run, since
23# ./configure runs it by invoking ${CONFIG_SHELL-/bin/sh}
24CONFIG_SHELL=${CONFIG_SHELL='sh'}
25
26# These are set here so the generated Makefile's will be good
27# for every DJGPP installation, not only the one where the
28# package was configured.
29# $INSTALL must be an absolute path name, otherwise config.status
30# will try to prepend ./ and ../ to it when it goes into subdirs.
31INSTALL=${INSTALL='/dev/env/DJDIR/bin/ginstall -c'}
32RANLIB=${RANLIB='/dev/env/DJDIR/bin/ranlib'}
33GMSGFMT=${GMSGFMT='/dev/env/DJDIR/bin/msgfmt'}
34MSGFMT=${MSGFMT='/dev/env/DJDIR/bin/msgfmt'}
35XGETTEXT=${XGETTEXT='/dev/env/DJDIR/bin/xgettext'}
36
37# A sane default for emacs.
38ac_cv_path_EMACS=${EMACS='/dev/env/DJDIR/gnu/emacs/bin/emacs'}
39
40# A sane default for grep.
41ac_cv_path_GREP=${GREP='grep'}
42ac_cv_path_EGREP=${EGREP='egrep'}
43ac_cv_path_FGREP=${FGREP='fgrep'}
44
45# These are set here so the generated libtool will be good
46# for every DJGPP installation, not only the one where the
47# package was configured.
48NM=${NM='/dev/env/DJDIR/bin/nm'}
49LD=${LD='/dev/env/DJDIR/bin/ld'}
50STRIP=${STRIP='/dev/env/DJDIR/bin/strip'}
51lt_cv_path_SED=${SED='/dev/env/DJDIR/bin/sed'}
52
53# Force the test for 'ln -s' to report no.
54ac_cv_prog_LN_S='cp -p'
55cl_cv_prog_LN_S='cp -p'
56cl_cv_prog_LN='cp -p'
57
58# DJGPP needs ICONV_CONST set to const
59am_cv_proto_iconv_arg1="const"
60