atlocal.in 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. # -*- shell-script -*-
  2. # @configure_input@
  3. # Configurable variable values for Autoconf test suite.
  4. # Copyright (C) 2000-2001, 2005, 2008-2012 Free Software Foundation,
  5. # Inc.
  6. #
  7. # This program is free software: you can redistribute it and/or modify
  8. # it under the terms of the GNU General Public License as published by
  9. # the Free Software Foundation, either version 3 of the License, or
  10. # (at your option) any later version.
  11. #
  12. # This program is distributed in the hope that it will be useful,
  13. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. # GNU General Public License for more details.
  16. #
  17. # You should have received a copy of the GNU General Public License
  18. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  19. PERL='@PERL@'
  20. GREP='@GREP@'
  21. EGREP='@EGREP@'
  22. SED='@SED@'
  23. # We need to know if sh -n is ok.
  24. ac_cv_sh_n_works='@ac_cv_sh_n_works@'
  25. # Check whether the underlying system can manage some unusual
  26. # symbols in file names.
  27. if test -z '@ac_cv_unsupported_fs_chars@'; then
  28. func_sanitize_file_name () { echo "$@"; }
  29. else
  30. func_sanitize_file_name () { echo "$@" | tr -d '@ac_cv_unsupported_fs_chars@'; }
  31. fi
  32. # Can we create directories with trailing whitespace in their names?
  33. ac_cv_dir_trailing_space='@ac_cv_dir_trailing_space@'
  34. if test "$ac_cv_dir_trailing_space" = yes; then
  35. func_sanitize_dir_name () { echo "$@"; }
  36. else
  37. func_sanitize_dir_name () { echo "$@" | sed 's/ *$//'; }
  38. fi
  39. # AUTOM4TE might be set in the environment. Override it here so that
  40. # direct aclocal invocations also use it.
  41. AUTOM4TE=autom4te
  42. export AUTOM4TE