From 33b44547db1b801a520b64dd67c468ab04eaf269 Mon Sep 17 00:00:00 2001 From: Alan Coopersmith Date: Thu, 13 Jul 2006 14:31:20 -0700 Subject: Replace static ChangeLog with dist-hook to generate from git log --- .gitignore | 1 + ChangeLog | 57 --------------------------------------------------------- Makefile.am | 10 +++++++++- 3 files changed, 10 insertions(+), 58 deletions(-) delete mode 100644 ChangeLog diff --git a/.gitignore b/.gitignore index d6152d5..55df1cb 100644 --- a/.gitignore +++ b/.gitignore @@ -17,3 +17,4 @@ MakeOut missing mkinstalldirs stamp-h1 +ChangeLog diff --git a/ChangeLog b/ChangeLog deleted file mode 100644 index 03ea4a0..0000000 --- a/ChangeLog +++ /dev/null @@ -1,57 +0,0 @@ -2006-05-15 Adam Jackson - - * configure.ac: - Bump to 1.0.2 - -2006-04-21 Alan Coopersmith - - * xorg-macros.m4: - X.Org Bug #6654 - Patch #5374 - Fix *_MAN_* macros to support GNU/kFreeBSD (Robert Millan) - -2005-12-20 Kevin E. Martin - - * configure.ac: - Update package version for X11R7 release. - -2005-12-14 Kevin E. Martin - - * configure.ac: - Update package version number for final X11R7 release candidate. - -2005-12-09 Kevin E. Martin - - * xorg-macros.m4: - Better macro to check whether any of malloc(0), realloc(ptr,0) or - calloc(0) return NULL since Xlib expects all three to return a - valid pointer. - -2005-12-08 Kevin E. Martin - - * xorg-macros.m4: - Add support for building other formats from sgml docs. - -2005-12-03 Kevin E. Martin - - * configure.ac: - Update package version number for X11R7 RC3 release. - -2005-12-02 Kevin E. Martin - - * xorg-macros.m4: - Add macro to detect when malloc(0) returns NULL for use in - libraries. - -2005-11-28 Alan Coopersmith - - * macros/xorg-macros.m4: - Bug #5167 - Linux prefers *.1x man pages in man1 subdirectory. - Also allow builders to override man page suffixes & directories - to match their environments via configure-time environment variables. - -2005-10-17 Kristian Høgsberg - - * macros/xorgversion.m4: Add missing comma in AC_HELP_STRING call. - diff --git a/Makefile.am b/Makefile.am index 87463d9..ea79439 100644 --- a/Makefile.am +++ b/Makefile.am @@ -22,4 +22,12 @@ aclocaldir = $(datadir)/aclocal aclocal_DATA = xorgversion.m4 xorg-macros.m4 -EXTRA_DIST = $(aclocal_DATA) +EXTRA_DIST = $(aclocal_DATA) ChangeLog + +.PHONY: ChangeLog + +ChangeLog: + (cd $(srcdir) && git-log) > ChangeLog + +dist-hook: ChangeLog + -- cgit v1.2.3