fhs.m4 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. # BEGIN COPYRIGHT BLOCK
  2. # Copyright (C) 2006 Red Hat, Inc.
  3. # All rights reserved.
  4. #
  5. # This program is free software; you can redistribute it and/or
  6. # modify it under the terms of the GNU General Public License
  7. # as published by the Free Software Foundation; either version 2
  8. # of the License, or (at your option) any later version.
  9. #
  10. # This program is distributed in the hope that it will be useful,
  11. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. # GNU General Public License for more details.
  14. #
  15. # You should have received a copy of the GNU General Public License
  16. # along with this program; if not, write to the Free Software
  17. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  18. #
  19. # END COPYRIGHT BLOCK
  20. AC_CHECKING(for FHS)
  21. # check for --with-fhs
  22. AC_MSG_CHECKING(for --with-fhs)
  23. AC_ARG_WITH(fhs, [ --with-fhs Use FHS layout],
  24. [
  25. with_fhs=yes
  26. AC_MSG_RESULT(yes)
  27. ],
  28. AC_MSG_RESULT(no))
  29. if test "$with_fhs" = "yes"; then
  30. AC_DEFINE([IS_FHS], [1], [Use FHS layout])
  31. fi
  32. # check for --with-fhs-opt
  33. AC_MSG_CHECKING(for --with-fhs-opt)
  34. AC_ARG_WITH(fhs-opt, [ --with-fhs-opt Use FHS optional layout],
  35. [
  36. with_fhs_opt=yes
  37. AC_MSG_RESULT(yes)
  38. AC_SUBST(with_fhs_opt)
  39. ],
  40. AC_MSG_RESULT(no))
  41. if test "$with_fhs_opt" = "yes"; then
  42. AC_DEFINE([IS_FHS_OPT], [1], [Use FHS optional layout])
  43. fi
  44. if test "$with_fhs" = "yes" -a "$with_fhs_opt" = "yes"; then
  45. AC_MSG_ERROR([Can't set both --with-fhs and --with-fhs-opt. Please only use one of these options.])
  46. fi