[Xfce4-commits] <xfce4-vala:xfce-dev> Add some comments in the autotools example
Mike Massonnet
mmassonnet at xfce.org
Fri Sep 11 03:32:02 CEST 2009
Updating branch refs/heads/xfce-dev
to 79e3c0a544a040a81b499e48e5d3b460965b81f0 (commit)
from 5ec935acd01bd901cfdee951efeb05fb7a1d879e (commit)
commit 79e3c0a544a040a81b499e48e5d3b460965b81f0
Author: Mike Massonnet <m8t at african.(none)>
Date: Fri Sep 11 03:28:07 2009 +0200
Add some comments in the autotools example
examples/autotools/configure.in.in | 10 ++++++----
1 files changed, 6 insertions(+), 4 deletions(-)
diff --git a/examples/autotools/configure.in.in b/examples/autotools/configure.in.in
index 033ba5d..2f5023a 100644
--- a/examples/autotools/configure.in.in
+++ b/examples/autotools/configure.in.in
@@ -4,6 +4,7 @@ dnl
dnl 2009 Jack Sparr <got at noinet.com>
dnl
+dnl Version Major.Minor.Micro[.Nano][Tag[-Build]]
m4_define([product_version_major], [0])
m4_define([product_version_minor], [0])
m4_define([product_version_micro], [0])
@@ -12,12 +13,14 @@ m4_define([product_version_build], [@REVISION@])
m4_define([product_version_tag], [git]) # Leave empty for releases
m4_define([product_version], [product_version_major().product_version_minor().product_version_micro()ifelse(product_version_nano(), [], [], [.product_version_nano()])ifelse(product_version_tag(), [git], [product_version_tag()-product_version_build()], [product_version_tag()])])
+dnl Initialize autoconf
AC_PREREQ([2.50])
AC_INIT([Product], [product_version], [http://bugzilla.noinet.com/], [product],
[http://noinet.com/])
AC_REVISION([product_version_build])
AC_CANONICAL_TARGET()
+dnl Initialize automake
AM_INIT_AUTOMAKE([1.11 dist-bzip2])
AM_CONFIG_HEADER([config.h])
AM_MAINTAINER_MODE()
@@ -47,17 +50,16 @@ fi
dnl Translations
XDT_I18N([@LINGUAS@])
-dnl Check for debugging support
+dnl Debug support
XDT_FEATURE_DEBUG()
+dnl Generated .in files
AC_OUTPUT([
Makefile
src/Makefile
])
-dnl ***************************
-dnl *** Print configuration ***
-dnl ***************************
+dnl Build configuration
echo
echo "Build Configuration:"
echo
More information about the Xfce4-commits
mailing list