Imported Upstream version 1.22.4
[platform/upstream/groff.git] / arch / djgpp / config.site
1 #! /bin/sh
2
3 # Copyright (C) 2000-2018 Free Software Foundation, Inc.
4 #
5 # This configure script is free software; the Free Software Foundation
6 # gives unlimited permission to copy, distribute and modify it.
7
8 # This is the config.site file for configuring GNU packages
9 # which are to be built with DJGPP tools.
10
11 # These two variables are required, otherwise looking for
12 # programs along the PATH will not work.
13 PATH_SEPARATOR=:
14 PATH_EXPAND=y
15
16 # This is required in for "test -f foo" to find foo.exe
17 export TEST_FINDS_EXE=y
18
19 # The root of the DJGPP tree serves as the default prefix
20 test "x$prefix" = xNONE && prefix='/dev/env/DJDIR'
21
22 # This is required for config.status script to be run, since
23 # ./configure runs it by invoking ${CONFIG_SHELL-/bin/sh}
24 CONFIG_SHELL=${CONFIG_SHELL='sh'}
25
26 # These are set here so the generated Makefile's will be good
27 # for every DJGPP installation, not only the one where the
28 # package was configured.
29 # $INSTALL must be an absolute path name, otherwise config.status
30 # will try to prepend ./ and ../ to it when it goes into subdirs.
31 INSTALL=${INSTALL='/dev/env/DJDIR/bin/ginstall -c'}
32 RANLIB=${RANLIB='ranlib'}
33 LPR=${LPR='cat >>PRN'}
34 DVIPRINT=${DVIPRINT='dvilj4 - >>PRN'}
35 PERL=${PERL='/usr/bin/perl'}
36
37 # Force "cp" to be used instead of "ln -s".
38 ac_cv_prog_LN_S="cp -p"