~ubuntu-branches/ubuntu/wily/389-ds-base/wily

« back to all changes in this revision

Viewing changes to m4/fhs.m4

  • Committer: Package Import Robot
  • Author(s): Krzysztof Klimonda
  • Date: 2012-03-27 14:26:16 UTC
  • Revision ID: package-import@ubuntu.com-20120327142616-xt24t6nffm3f7ybz
Tags: upstream-1.2.11.7
ImportĀ upstreamĀ versionĀ 1.2.11.7

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
 
 
21
AC_CHECKING(for FHS)
 
22
 
 
23
# check for --with-fhs
 
24
AC_MSG_CHECKING(for --with-fhs)
 
25
AC_ARG_WITH(fhs, AS_HELP_STRING([--with-fhs],[Use FHS layout]),
 
26
[
 
27
  with_fhs=yes
 
28
  AC_MSG_RESULT(yes)
 
29
],
 
30
AC_MSG_RESULT(no))
 
31
 
 
32
if test "$with_fhs" = "yes"; then
 
33
  AC_DEFINE([IS_FHS], [1], [Use FHS layout])
 
34
fi
 
35
 
 
36
# check for --with-fhs-opt
 
37
AC_MSG_CHECKING(for --with-fhs-opt)
 
38
AC_ARG_WITH(fhs-opt, AS_HELP_STRING([--with-fhs-opt],[Use FHS optional layout]),
 
39
[
 
40
  with_fhs_opt=yes
 
41
  AC_MSG_RESULT(yes)
 
42
  AC_SUBST(with_fhs_opt)
 
43
],
 
44
AC_MSG_RESULT(no))
 
45
 
 
46
if test "$with_fhs_opt" = "yes"; then
 
47
  AC_DEFINE([IS_FHS_OPT], [1], [Use FHS optional layout])
 
48
fi
 
49
 
 
50
if test "$with_fhs" = "yes" -a "$with_fhs_opt" = "yes"; then
 
51
  AC_MSG_ERROR([Can't set both --with-fhs and --with-fhs-opt.  Please only use one of these options.])
 
52
fi