xref: /openbsd/gnu/usr.bin/texinfo/djgpp/config.site (revision 09467b48)
1#! /bin/sh
2# Site defaults for the DJGPP configuration
3
4# These two variables are required, otherwise looking for
5# programs along the PATH will not work.
6PATH_SEPARATOR=:
7PATH_EXPAND=y
8
9# This is required in for "test -f foo" to find foo.exe.
10export TEST_FINDS_EXE=y
11
12# The root of the DJGPP tree serves as the default prefix
13# for all paths that are hardcoded in the binaries.
14# When installing the installation prefix must be supplied.
15test "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.
26INSTALL=${INSTALL='/dev/env/DJDIR/bin/ginstall -c'}
27RANLIB=${RANLIB='ranlib'}
28GMSGFMT=${GMSGFMT='/dev/env/DJDIR/bin/msgfmt'}
29MSGFMT=${MSGFMT='/dev/env/DJDIR/bin/msgfmt'}
30XGETTEXT=${XGETTEXT='/dev/env/DJDIR/bin/xgettext'}
31
32# Sane defaults for standard programs used by the build process.
33# We force the values of these variables so that the resultant
34# Makefile's will work on any DJGPP platform, not only on the
35# machine where the package was configured.
36ac_cv_prog_AWK=${AWK='gawk'}
37ac_cv_prog_INTLBISON=${INTLBISON='bison'}
38ac_cv_prog_CC=${CC='gcc'}
39
40# These are set here so the generated libtool/Makefile's will
41# be good for every DJGPP installation, not only the one where
42# the package was configured.
43NM=${NM='nm'}
44LD=${LD='ld'}
45MAKEINFO=${MAKEINFO='makeinfo'}
46
47# Force the test for 'ln -s' to report 'cp -pf'.
48ac_cv_prog_LN_S='cp -pf'
49
50# We have `fork', but it always fails.  Don't trust Autoconf to be
51# smart enough to detect that...
52ac_cv_func_fork=no
53ac_cv_func_vfork=no
54