[gnome-settings-daemon] Fix the GSD_API_VERSION definition in configure.ac
- From: Matthias Clasen <matthiasc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-settings-daemon] Fix the GSD_API_VERSION definition in configure.ac
- Date: Thu, 7 Oct 2010 11:38:36 +0000 (UTC)
commit 33250b901a9a7ac617a3406cf8672650e8f179d2
Author: Matthias Clasen <mclasen redhat com>
Date: Thu Oct 7 07:35:47 2010 -0400
Fix the GSD_API_VERSION definition in configure.ac
It turns out that none of the m4_define magic before AC_INIT
survives into configure, so move the 5 lines defining
GSD_API_VERSION down to below AC_INIT. This was causing
headers to be installed in
$includedir/gnome-settings-daemon-/gnome-settings-daemon.
configure.ac | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
---
diff --git a/configure.ac b/configure.ac
index d3aa3a3..d023755 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,11 +1,5 @@
AC_PREREQ([2.60])
-m4_define([gsd_api_version_major],[3])
-m4_define([gsd_api_version_minor],[0])
-m4_define([gsd_api_version],[gsd_api_version_major.gsd_api_version_minor])
-GSD_API_VERSION="gsd_api_version"
-AC_SUBST(GSD_API_VERSION)
-
AC_INIT([gnome-settings-daemon],
[2.91.0],
[http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-settings-daemon])
@@ -16,6 +10,12 @@ AM_INIT_AUTOMAKE([1.9 no-dist-gzip dist-bzip2 tar-ustar])
m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
+m4_define([gsd_api_version_major],[3])
+m4_define([gsd_api_version_minor],[0])
+m4_define([gsd_api_version],[gsd_api_version_major.gsd_api_version_minor])
+GSD_API_VERSION="gsd_api_version"
+AC_SUBST(GSD_API_VERSION)
+
AC_STDC_HEADERS
AC_PROG_CXX
AM_PROG_CC_C_O
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]