80a475a4990d353641bcc86fedcd043443c7bd81
[platform/upstream/diffutils.git] / ms / config.site
1 #! /bin/sh
2 # Site defaults for the DJGPP configuration
3
4 # Copyright (C) 2001, 2009-2011 Free Software Foundation, Inc.
5
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
10
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15
16 # You should have received a copy of the GNU General Public License
17 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
18
19 # Written by Eli Zaretskii.
20
21
22 # These two variables are required, otherwise looking for
23 # programs along the PATH will not work.
24 PATH_SEPARATOR=:
25 PATH_EXPAND=y
26
27 # This is required in for "test -f foo" to find foo.exe.
28 export TEST_FINDS_EXE=y
29
30 # The root of the DJGPP tree serves as the default prefix
31 # for all paths that are hardcoded in the binaries.
32 # When installing the installation prefix must be supplied.
33 test "x$prefix" = xNONE && prefix='/dev/env/DJDIR'
34
35 # This is required for config.status script to be run, since
36 # ./configure runs it by invoking ${CONFIG_SHELL-/bin/sh}
37 # CONFIG_SHELL=${CONFIG_SHELL='sh'}
38
39 # These are set here so the generated Makefile's will be good
40 # for every DJGPP installation, not only the one where the
41 # package was configured.
42 # $INSTALL must be an absolute path name, otherwise config.status
43 # will try to prepend ./ and ../ to it when it goes into subdirs.
44 INSTALL=${INSTALL='/dev/env/DJDIR/bin/ginstall -c'}
45 RANLIB=${RANLIB='ranlib'}
46 GMSGFMT=${GMSGFMT='/dev/env/DJDIR/bin/msgfmt'}
47 MSGFMT=${MSGFMT='/dev/env/DJDIR/bin/msgfmt'}
48 XGETTEXT=${XGETTEXT='/dev/env/DJDIR/bin/xgettext'}
49
50 # Sane defaults for standard programs compiled into the package that
51 # we are about to build.  Use .exe extension so that library functions
52 # invoking these programs will provide a better diagnostics when a
53 # program is not found: the library won't need to call the stock DOS
54 # shell, which always returns a zero status, even if it doesn't find
55 # the program.
56 ac_cv_path_PR_PROGRAM=${PR_PROGRAM='/dev/env/DJDIR/bin/pr.exe'}
57
58 # Sane defaults for standard programs used by the build process.
59 # We force the values of these variables so that the resultant
60 # Makefile's will work on any DJGPP platform, not only on the
61 # machine where the package was configured.
62 ac_cv_prog_AWK=${AWK='gawk'}
63 ac_cv_prog_INTLBISON=${INTLBISON='bison'}
64 ac_cv_prog_CC=${CC='gcc'}
65
66 # These are set here so the generated libtool/Makefile's will
67 # be good for every DJGPP installation, not only the one where
68 # the package was configured.
69 NM=${NM='nm'}
70 LD=${LD='ld'}
71 MAKEINFO=${MAKEINFO='makeinfo'}
72
73 # Force the test for 'ln -s' to report 'cp -pf'.
74 ac_cv_prog_LN_S='cp -pf'
75
76 # We have `fork', but it always fails.  Don't trust Autoconf to be
77 # smart enough to detect that...
78 ac_cv_func_fork=no