summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian J. Tarricone <brian@tarricone.org>2009-09-19 14:23:13 -0700
committerBrian J. Tarricone <brian@tarricone.org>2009-09-19 14:23:13 -0700
commit45448c2c68c5a405bb83efb8a33e8c5dd48db90e (patch)
tree43871f8f0bded94b30223c7b329086c5759fd7d4
parente1e347ca0f4df390b56d3ace890743c39ec7cf69 (diff)
downloadxfce4-dev-tools-45448c2c68c5a405bb83efb8a33e8c5dd48db90e.tar.gz
== 4.7.1 released! ==xfce4-dev-tools-4.7.1
-rw-r--r--ChangeLog71
-rw-r--r--configure.in.in4
2 files changed, 73 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 5437f31..97102a7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,76 @@
+2009-09-19 Brian J. Tarricone <brian@tarricone.org>
+
+ * m4macros/xdt-features.m4: put --disable-debug back and fix defaults for
+ visibility and linker opts also make the non-defaults explicit and therefore
+ less confusing (it worked before due to default autoconf shell-ification of
+ the first arg, but that's not immediately clear)
+
+2009-09-19 Jannis Pohlmann <jannis@xfce.org>
+
+ * m4macros/xdt-features.m4: Fix XDT_FEATURE_LINKER_OPTS and
+ XDT_FEATURE_VISIBILITY. AC_ARG_ENABLE executes the code its last parameter
+ if the --enable flag is not provided, not if the --disable flag is not
+ provided. That's why we need to set the value to "no", not to "yes". Also
+ don't show the --disable-debug option (with weird indentation) because the
+ help message already explains that there are --disable variants for all
+ --enable options.
+
+ * m4macros/xdt-features.m4: Fix default detection and $enable_debug value in
+ XDT_FEATURE_DEBUG(). This uses the m4_default() macro instead of the custom
+ code to check which debug level should be used as the default. $default_level
+ was not set when running configure with --help before. It seems we also need
+ to use [enable_debug=$enableval] in AC_ARG_ENABLE() for enable_debug to be
+ set. Tested it and it works fine.
+
+2009-09-18 Brian J. Tarricone <brian@tarricone.org>
+
+ * NEWS, m4macros/xdt-features.m4: beef up the XDT_FEATURE_DEBUG macro a bit
+
+ * README: s/SVN/Git/
+
+ * NEWS, m4macros/xdt-features.m4: add XDT_FEATURE_LINKER_OPTS
+
+ * NEWS, m4macros/xdt-features.m4: add XDT_FEATURE_VISIBILITY
+
+2009-08-26 Brian J. Tarricone <brian@tarricone.org>
+
+ * scripts/xdt-autogen.in.in: add do-not-edit warning to top of autogenerated
+ configure.{ac,in}
+
+ * scripts/xdt-autogen.in.in: remove configure.{ac,in} on 'clean' if
+ configure.{ac,in}.in exists
+
+ * scripts/xdt-autogen.in.in: print warning if attempting to compare git
+ revision versions we can't tell version ordering, but it's possible it's
+ fine, so just print a warning and proceed. autogen.sh writers shouldn't
+ depend on particular git revisions, only on release versions, but let's
+ soft-allow it.
+
+ * scripts/xdt-autogen.in.in: make lookup_configure_ac_files act like
+ lookup_configure_ac_in_files
+
+ * .gitignore: add gitignore
+
+ * scripts/xdt-autogen.in.in: rename CONFIGURE_FILES to CONFIGURE_AC_FILES for
+ clarity also rename some similar vars/functions for the same reason
+
+ * scripts/xdt-autogen.in.in: be a little more portable, and select the best
+ awk implementation
+
+ * NEWS, scripts/xdt-autogen.in.in: also recognize new-school
+ AC_CONFIG_HEADERS() as requiring autoheader
+
+ * scripts/xdt-autogen.in.in: the -q option to grep is specified by POSIX, so
+ no reason not to use it
+
2009-08-18 Brian J. Tarricone <brian@tarricone.org>
+ * configure.in.in: re-add git revision tag
+
+ * configure.in.in: == 4.7.0 released! ==
+
+ * ChangeLog, ChangeLog.pre-git: rename ChangeLog and autogenerate new one
+
* scripts/Makefile.am: fix distcheck (output is in builddir, not srcdir)
* autogen.sh, configure.in.in: use git for revision substitution
diff --git a/configure.in.in b/configure.in.in
index 90f8bd9..074b5f9 100644
--- a/configure.in.in
+++ b/configure.in.in
@@ -11,10 +11,10 @@ dnl *** Version information ***
dnl ***************************
m4_define([xdt_version_major], [4])
m4_define([xdt_version_minor], [7])
-m4_define([xdt_version_micro], [0])
+m4_define([xdt_version_micro], [1])
m4_define([xdt_version_nano], [])
m4_define([xdt_version_build], [@REVISION@])
-m4_define([xdt_version_tag], [git])
+m4_define([xdt_version_tag], [])
m4_define([xdt_version], [xdt_version_major().xdt_version_minor().xdt_version_micro()ifelse(xdt_version_nano(), [], [], [.xdt_version_nano()])ifelse(xdt_version_tag(), [git], [xdt_version_tag()-xdt_version_build()], [])])