config.site 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. #! /bin/sh
  2. # This is the config.site file for configuring GNU packages
  3. # which are to be built with DJGPP tools.
  4. # Include the djgpp subdirectory in PATH, so that getconf is found
  5. PATH="$srcdir/djgpp:$PATH"
  6. # These two variables are required, otherwise looking for
  7. # programs along the PATH will not work.
  8. PATH_SEPARATOR=:
  9. PATH_EXPAND=y
  10. # This is required in for "test -f foo" to find foo.exe
  11. export TEST_FINDS_EXE=y
  12. # The root of the DJGPP tree serves as the default prefix
  13. test "x$prefix" = xNONE && prefix='/dev/env/DJDIR'
  14. # This is required for config.status script to be run, since
  15. # ./configure runs it by invoking ${CONFIG_SHELL-/bin/sh}
  16. CONFIG_SHELL=${CONFIG_SHELL='sh'}
  17. # These are set here so the generated Makefile's will be good
  18. # for every DJGPP installation, not only the one where the
  19. # package was configured.
  20. # $INSTALL must be an absolute path name, otherwise config.status
  21. # will try to prepend ./ and ../ to it when it goes into subdirs.
  22. INSTALL=${INSTALL='/dev/env/DJDIR/bin/ginstall -c'}
  23. RANLIB=${RANLIB='ranlib'}
  24. #GMSGFMT=${GMSGFMT='/dev/env/DJDIR/bin/msgfmt'}
  25. #MSGFMT=${MSGFMT='/dev/env/DJDIR/bin/msgfmt'}
  26. #XGETTEXT=${XGETTEXT='/dev/env/DJDIR/bin/xgettext'}
  27. AWK=${AWK='gawk'}
  28. # A sane default for emacs.
  29. ac_cv_path_EMACS=${EMACS='/dev/env/DJDIR/gnu/emacs/bin/emacs'}
  30. # A sane default for m4.
  31. ac_cv_path_M4=${M4='/dev/env/DJDIR/bin/m4'}
  32. # A sane default for grep.
  33. ac_cv_path_GREP=${GREP='/dev/env/DJDIR/bin/grep'}
  34. # A sane default for egrep.
  35. ac_cv_path_EGREP=${EGREP='/dev/env/DJDIR/bin/egrep'}
  36. # A sane default for fgrep.
  37. ac_cv_path_FGREP=${FGREP='/dev/env/DJDIR/bin/fgrep'}
  38. # A sane default for sed.
  39. lt_cv_path_SED=${SED='/dev/env/DJDIR/bin/sed'}
  40. # A sane default for mkdir.
  41. ac_cv_path_mkdir=${MKDIR_P='/dev/env/DJDIR/bin/mkdir -p'}
  42. # These are set here so the generated libtool will be good
  43. # for every DJGPP installation, not only the one where the
  44. # package was configured.
  45. NM=${NM='nm'}
  46. LD=${LD='ld'}
  47. # Force the test for 'ln -s' to report 'cp -pf'.
  48. ac_cv_prog_LN_S='cp -pf'
  49. # There is no fork and vfork functionality.
  50. ac_cv_func_fork=no
  51. ac_cv_func_vfork=no
  52. ac_cv_func_pipe=no
  53. # DJGPP needs ICONV_CONST set to const
  54. am_cv_proto_iconv_arg1="const"