]>
Commit | Line | Data |
---|---|---|
3768a1ae JMG |
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 | ||
e141f4d4 | 6 | # Copyright (C) 2005-2010 Free Software Foundation, Inc. |
02650b7f | 7 | |
f16b0819 | 8 | # This program is free software: you can redistribute it and/or modify |
02650b7f | 9 | # it under the terms of the GNU General Public License as published by |
f16b0819 PE |
10 | # the Free Software Foundation, either version 3 of the License, or |
11 | # (at your option) any later version. | |
12 | # | |
02650b7f PE |
13 | # This program is distributed in the hope that it will be useful, |
14 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 | # GNU General Public License for more details. | |
f16b0819 | 17 | # |
02650b7f | 18 | # You should have received a copy of the GNU General Public License |
f16b0819 | 19 | # along with this program. If not, see <http://www.gnu.org/licenses/>. |
02650b7f PE |
20 | |
21 | ||
3768a1ae | 22 | # Include the djgpp subdirectory in PATH, so that getconf is found |
b01df036 | 23 | PATH="$srcdir/djgpp:$PATH" |
3768a1ae JMG |
24 | |
25 | # These two variables are required, otherwise looking for | |
26 | # programs along the PATH will not work. | |
27 | PATH_SEPARATOR=: | |
28 | PATH_EXPAND=y | |
29 | ||
30 | # This is required in for "test -f foo" to find foo.exe | |
31 | export TEST_FINDS_EXE=y | |
32 | ||
33 | # The root of the DJGPP tree serves as the default prefix | |
34 | test "x$prefix" = xNONE && prefix='/dev/env/DJDIR' | |
35 | ||
36 | # This is required for config.status script to be run, since | |
37 | # ./configure runs it by invoking ${CONFIG_SHELL-/bin/sh} | |
38 | CONFIG_SHELL=${CONFIG_SHELL='sh'} | |
39 | ||
3768a1ae JMG |
40 | # These are set here so the generated Makefile's will be good |
41 | # for every DJGPP installation, not only the one where the | |
42 | # package was configured. | |
43 | # $INSTALL must be an absolute path name, otherwise config.status | |
44 | # will try to prepend ./ and ../ to it when it goes into subdirs. | |
45 | INSTALL=${INSTALL='/dev/env/DJDIR/bin/ginstall -c'} | |
46 | RANLIB=${RANLIB='ranlib'} | |
47 | GMSGFMT=${GMSGFMT='/dev/env/DJDIR/bin/msgfmt'} | |
48 | MSGFMT=${MSGFMT='/dev/env/DJDIR/bin/msgfmt'} | |
49 | XGETTEXT=${XGETTEXT='/dev/env/DJDIR/bin/xgettext'} | |
1a1a5826 | 50 | AWK=${AWK='gawk'} |
3768a1ae JMG |
51 | |
52 | # A sane default for emacs. | |
53 | ac_cv_path_EMACS=${EMACS='/dev/env/DJDIR/gnu/emacs/bin/emacs'} | |
54 | ||
55 | # A sane default for m4. | |
56 | ac_cv_path_M4=${M4='/dev/env/DJDIR/bin/m4'} | |
57 | ||
f5d5ecdf JMG |
58 | # A sane default for grep. |
59 | ac_cv_path_GREP=${GREP='/dev/env/DJDIR/bin/grep'} | |
60 | ||
61 | # A sane default for egrep. | |
62 | ac_cv_path_EGREP=${EGREP='/dev/env/DJDIR/bin/egrep'} | |
63 | ||
64 | # A sane default for fgrep. | |
65 | ac_cv_path_FGREP=${FGREP='/dev/env/DJDIR/bin/fgrep'} | |
66 | ||
67 | # A sane default for sed. | |
68 | ac_cv_path_SED=${SED='/dev/env/DJDIR/bin/sed'} | |
69 | ||
e37c665c | 70 | # A sane default for mkdir. |
c7c8ecd1 | 71 | ac_cv_path_mkdir=${MKDIR_P='/dev/env/DJDIR/bin/mkdir -p'} |
e37c665c | 72 | |
3768a1ae JMG |
73 | # These are set here so the generated libtool will be good |
74 | # for every DJGPP installation, not only the one where the | |
75 | # package was configured. | |
76 | NM=${NM='nm'} | |
77 | LD=${LD='ld'} | |
78 | ||
79 | # Force the test for 'ln -s' to report 'cp -pf'. | |
80 | ac_cv_prog_LN_S='cp -pf' | |
81 | ||
82 | # There is no fork and vfork functionality. | |
83 | ac_cv_func_fork=no | |
84 | ac_cv_func_vfork=no | |
85 | ac_cv_func_pipe=no |