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.
|
---|
6 | PATH_SEPARATOR=:
|
---|
7 | PATH_EXPAND=y
|
---|
8 |
|
---|
9 | # This is required in for "test -f foo" to find foo.exe.
|
---|
10 | export 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.
|
---|
15 | test "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.
|
---|
26 | INSTALL=${INSTALL='/dev/env/DJDIR/bin/ginstall -c'}
|
---|
27 | RANLIB=${RANLIB='ranlib'}
|
---|
28 | GMSGFMT=${GMSGFMT='/dev/env/DJDIR/bin/msgfmt'}
|
---|
29 | MSGFMT=${MSGFMT='/dev/env/DJDIR/bin/msgfmt'}
|
---|
30 | XGETTEXT=${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.
|
---|
36 | ac_cv_prog_AWK=${AWK='gawk'}
|
---|
37 | ac_cv_prog_INTLBISON=${INTLBISON='bison'}
|
---|
38 | ac_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.
|
---|
43 | NM=${NM='nm'}
|
---|
44 | LD=${LD='ld'}
|
---|
45 | MAKEINFO=${MAKEINFO='makeinfo'}
|
---|
46 |
|
---|
47 | # Force the test for 'ln -s' to report 'cp -pf'.
|
---|
48 | ac_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...
|
---|
52 | ac_cv_func_fork=no
|
---|
53 | ac_cv_func_vfork=no
|
---|