| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- # BEGIN COPYRIGHT BLOCK
- # Copyright (C) 2006 Red Hat, Inc.
- # All rights reserved.
- #
- # This program is free software; you can redistribute it and/or
- # modify it under the terms of the GNU General Public License
- # as published by the Free Software Foundation; either version 2
- # of the License, or (at your option) any later version.
- #
- # This program is distributed in the hope that it will be useful,
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- # GNU General Public License for more details.
- #
- # You should have received a copy of the GNU General Public License
- # along with this program; if not, write to the Free Software
- # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- #
- # END COPYRIGHT BLOCK
- AC_CHECKING(for FHS)
- # check for --with-fhs
- AC_MSG_CHECKING(for --with-fhs)
- AC_ARG_WITH(fhs, [ --with-fhs Use FHS layout],
- [
- with_fhs=yes
- AC_MSG_RESULT(yes)
- ],
- AC_MSG_RESULT(no))
- if test "$with_fhs" = "yes"; then
- AC_DEFINE([IS_FHS], [1], [Use FHS layout])
- fi
- # check for --with-fhs-opt
- AC_MSG_CHECKING(for --with-fhs-opt)
- AC_ARG_WITH(fhs-opt, [ --with-fhs-opt Use FHS optional layout],
- [
- with_fhs_opt=yes
- AC_MSG_RESULT(yes)
- AC_SUBST(with_fhs_opt)
- ],
- AC_MSG_RESULT(no))
- if test "$with_fhs_opt" = "yes"; then
- AC_DEFINE([IS_FHS_OPT], [1], [Use FHS optional layout])
- fi
- if test "$with_fhs" = "yes" -a "$with_fhs_opt" = "yes"; then
- AC_MSG_ERROR([Can't set both --with-fhs and --with-fhs-opt. Please only use one of these options.])
- fi
|