diff options
author | Alan Coopersmith <alan.coopersmith@sun.com> | 2006-07-13 14:31:20 -0700 |
---|---|---|
committer | Alan Coopersmith <alanc@alf.(none)> | 2006-07-13 14:31:20 -0700 |
commit | 33b44547db1b801a520b64dd67c468ab04eaf269 (patch) | |
tree | 863c2173a80399de451f2d06048a70cd480b1ec6 | |
parent | 953df72ff3b8ecf8ac3eadc90ddefd6d0ca6b43e (diff) |
Replace static ChangeLog with dist-hook to generate from git log
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | ChangeLog | 57 | ||||
-rw-r--r-- | Makefile.am | 10 |
3 files changed, 10 insertions, 58 deletions
@@ -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 <ajax@freedesktop.org> - - * configure.ac: - Bump to 1.0.2 - -2006-04-21 Alan Coopersmith <alan.coopersmith@sun.com> - - * xorg-macros.m4: - X.Org Bug #6654 <https://bugs.freedesktop.org/show_bug.cgi?id=6654> - Patch #5374 <https://bugs.freedesktop.org/attachment.cgi?id=5374> - Fix *_MAN_* macros to support GNU/kFreeBSD (Robert Millan) - -2005-12-20 Kevin E. Martin <kem-at-freedesktop-dot-org> - - * configure.ac: - Update package version for X11R7 release. - -2005-12-14 Kevin E. Martin <kem-at-freedesktop-dot-org> - - * configure.ac: - Update package version number for final X11R7 release candidate. - -2005-12-09 Kevin E. Martin <kem-at-freedesktop-dot-org> - - * 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 <kem-at-freedesktop-dot-org> - - * xorg-macros.m4: - Add support for building other formats from sgml docs. - -2005-12-03 Kevin E. Martin <kem-at-freedesktop-dot-org> - - * configure.ac: - Update package version number for X11R7 RC3 release. - -2005-12-02 Kevin E. Martin <kem-at-freedesktop-dot-org> - - * xorg-macros.m4: - Add macro to detect when malloc(0) returns NULL for use in - libraries. - -2005-11-28 Alan Coopersmith <alan.coopersmith@sun.com> - - * macros/xorg-macros.m4: - Bug #5167 <https://bugs.freedesktop.org/show_bug.cgi?id=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 <krh@redhat.com> - - * 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 + |