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
7# Include the djgpp subdirectory in PATH, so that getconf is found
8PATH="$srcdir/djgpp:$PATH"
9
10# These two variables are required, otherwise looking for
11# programs along the PATH will not work.
12PATH_SEPARATOR=:
13PATH_EXPAND=y
14
15# This is required in for "test -f foo" to find foo.exe
16export TEST_FINDS_EXE=y
17
18# The root of the DJGPP tree serves as the default prefix
19test "x$prefix" = xNONE && prefix='/dev/env/DJDIR'
20
21# This is required for config.status script to be run, since
22# ./configure runs it by invoking ${CONFIG_SHELL-/bin/sh}
23CONFIG_SHELL=${CONFIG_SHELL='sh'}
24
25# These are set here so the generated Makefile's will be good
26# for every DJGPP installation, not only the one where the
27# package was configured.
28# $INSTALL must be an absolute path name, otherwise config.status
29# will try to prepend ./ and ../ to it when it goes into subdirs.
30INSTALL=${INSTALL='/dev/env/DJDIR/bin/ginstall -c'}
31RANLIB=${RANLIB='ranlib'}
32#GMSGFMT=${GMSGFMT='/dev/env/DJDIR/bin/msgfmt'}
33#MSGFMT=${MSGFMT='/dev/env/DJDIR/bin/msgfmt'}
34#XGETTEXT=${XGETTEXT='/dev/env/DJDIR/bin/xgettext'}
35AWK=${AWK='gawk'}
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 m4.
41ac_cv_path_M4=${M4='/dev/env/DJDIR/bin/m4'}
42
43# A sane default for grep.
44ac_cv_path_GREP=${GREP='/dev/env/DJDIR/bin/grep'}
45
46# A sane default for egrep.
47ac_cv_path_EGREP=${EGREP='/dev/env/DJDIR/bin/egrep'}
48
49# A sane default for fgrep.
50ac_cv_path_FGREP=${FGREP='/dev/env/DJDIR/bin/fgrep'}
51
52# A sane default for sed.
53lt_cv_path_SED=${SED='/dev/env/DJDIR/bin/sed'}
54
55# A sane default for mkdir.
56ac_cv_path_mkdir=${MKDIR_P='/dev/env/DJDIR/bin/mkdir -p'}
57
58# These are set here so the generated libtool will be good
59# for every DJGPP installation, not only the one where the
60# package was configured.
61NM=${NM='nm'}
62LD=${LD='ld'}
63
64# Force the test for 'ln -s' to report 'cp -pf'.
65ac_cv_prog_LN_S='cp -pf'
66
67# There is no fork and vfork functionality.
68ac_cv_func_fork=no
69ac_cv_func_vfork=no
70ac_cv_func_pipe=no
71
72# DJGPP needs ICONV_CONST set to const
73am_cv_proto_iconv_arg1="const"
74