config.site 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. #! /bin/sh
  2. # Site defaults for the DJGPP configuration
  3. # These two variables are required, otherwise looking for
  4. # programs along the PATH will not work.
  5. PATH_SEPARATOR=:
  6. PATH_EXPAND=y
  7. # This is required in for "test -f foo" to find foo.exe.
  8. export TEST_FINDS_EXE=y
  9. # The root of the DJGPP tree serves as the default prefix
  10. # for all paths that are hardcoded in the binaries.
  11. # When installing the installation prefix must be supplied.
  12. test "x$prefix" = xNONE && prefix='/dev/env/DJDIR'
  13. # This is required for config.status script to be run, since
  14. # ./configure runs it by invoking ${CONFIG_SHELL-/bin/sh}
  15. # CONFIG_SHELL=${CONFIG_SHELL='sh'}
  16. # These are set here so the generated Makefile's will be good
  17. # for every DJGPP installation, not only the one where the
  18. # package was configured.
  19. # $INSTALL must be an absolute path name, otherwise config.status
  20. # will try to prepend ./ and ../ to it when it goes into subdirs.
  21. INSTALL=${INSTALL='/dev/env/DJDIR/bin/ginstall -c'}
  22. RANLIB=${RANLIB='ranlib'}
  23. GMSGFMT=${GMSGFMT='/dev/env/DJDIR/bin/msgfmt'}
  24. MSGFMT=${MSGFMT='/dev/env/DJDIR/bin/msgfmt'}
  25. XGETTEXT=${XGETTEXT='/dev/env/DJDIR/bin/xgettext'}
  26. # Sane defaults for standard programs used by the build process.
  27. # We force the values of these variables so that the resultant
  28. # Makefile's will work on any DJGPP platform, not only on the
  29. # machine where the package was configured.
  30. ac_cv_prog_AWK=${AWK='gawk'}
  31. ac_cv_prog_INTLBISON=${INTLBISON='bison'}
  32. ac_cv_prog_CC=${CC='gcc'}
  33. # These are set here so the generated libtool/Makefile's will
  34. # be good for every DJGPP installation, not only the one where
  35. # the package was configured.
  36. NM=${NM='nm'}
  37. LD=${LD='ld'}
  38. MAKEINFO=${MAKEINFO='makeinfo'}
  39. # A sane default for mkdir.
  40. ac_cv_path_mkdir=${MKDIR_P='/dev/env/DJDIR/bin/mkdir -p'}
  41. # A sane default for grep.
  42. ac_cv_path_GREP=${GREP='/dev/env/DJDIR/bin/grep'}
  43. # A sane default for egrep.
  44. ac_cv_path_EGREP=${EGREP='/dev/env/DJDIR/bin/egrep'}
  45. # Force the test for 'ln -s' to report 'cp -pf'.
  46. ac_cv_prog_LN_S='cp -pf'
  47. # We have `fork', but it always fails. Don't trust Autoconf to be
  48. # smart enough to detect that...
  49. ac_cv_func_fork=no
  50. ac_cv_func_vfork=no