summaryrefslogtreecommitdiffstats
path: root/m4
diff options
context:
space:
mode:
authorNoriko Hosoi <nhosoi@redhat.com>2006-11-10 23:59:16 +0000
committerNoriko Hosoi <nhosoi@redhat.com>2006-11-10 23:59:16 +0000
commiteaae6c2543e43a9c46d823c9bd11e267507469ff (patch)
tree6a41c0c1b4aa31919749bd410f6b0aa152f1df79 /m4
parent6679b0968981f8be7c33a7df2c30bb5146f3a6d3 (diff)
downloadds-eaae6c2543e43a9c46d823c9bd11e267507469ff.tar.gz
ds-eaae6c2543e43a9c46d823c9bd11e267507469ff.tar.xz
ds-eaae6c2543e43a9c46d823c9bd11e267507469ff.zip
Resolves: #214533
Summary: configure needs to support --with-fhs (Comment #1) Changes: 1. introduced a new option --with-fhs 2. instead of passing the define macro with -D, generate config.h
Diffstat (limited to 'm4')
-rw-r--r--m4/fhs.m434
1 files changed, 34 insertions, 0 deletions
diff --git a/m4/fhs.m4 b/m4/fhs.m4
new file mode 100644
index 00000000..194709c4
--- /dev/null
+++ b/m4/fhs.m4
@@ -0,0 +1,34 @@
+# 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(no))
+
+if test "$with_fhs" = "yes"; then
+ AC_DEFINE([IS_FHS], [1], [Use FHS layout])
+fi
+