summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Cloos <cloos@jhcloos.com>2007-12-06 16:38:26 -0500
committerJames Cloos <cloos@jhcloos.com>2007-12-06 16:38:26 -0500
commit87ebfbc56abe16de6f84f559728a40f63d44006a (patch)
tree06a626211c5d3830eb8e6de9ad312038168e074c
parentd9714f03dde2d2b20fb29d46b44bb253e4954ee0 (diff)
Replace static ChangeLog with dist-hook to generate from git log
-rw-r--r--ChangeLog49
-rw-r--r--Makefile.am10
2 files changed, 10 insertions, 49 deletions
diff --git a/ChangeLog b/ChangeLog
deleted file mode 100644
index 19e0f1d..0000000
--- a/ChangeLog
+++ /dev/null
@@ -1,49 +0,0 @@
-2006-04-26 Adam Jackson <ajax@freedesktop.org>
-
- * configure.ac:
- Bump to 1.0.3
-
-2006-04-02 Adam Jackson <ajax@freedesktop.org>
-
- * src/Xdamage.c:
- Coverity #574: Plug a leak on the error path.
-
-2005-12-14 Kevin E. Martin <kem-at-freedesktop-dot-org>
-
- * configure.ac:
- Update package version number for final X11R7 release candidate.
-
-2005-12-03 Kevin E. Martin <kem-at-freedesktop-dot-org>
-
- * configure.ac:
- Update package version number for X11R7 RC3 release.
-
-2005-11-19 Kevin E. Martin <kem-at-freedesktop-dot-org>
-
- * xdamage.pc.in:
- Update pkgconfig files to separate library build-time dependencies
- from application build-time dependencies.
- * configure.ac:
- Update dependencies to work with separate build roots.
-
-2005-11-09 Kevin E. Martin <kem-at-freedesktop-dot-org>
-
- * configure.ac:
- Update package version number for X11R7 RC2 release.
-
-2005-11-01 Kevin E. Martin <kem-at-freedesktop-dot-org>
-
- * configure.ac:
- Update pkgcheck dependencies to work with separate build roots.
-
-2005-07-08 Keith Packard <keithp@keithp.com>
-
- * .cvsignore:
- * src/.cvsignore:
- * src/Makefile.am:
- Add .cvsignore files
- Switch _la_CFLAGS for AM_CFLAGS to clean up directory
-
-Tue May 17 12:39:30 2005 Søren Sandmann <sandmann@redhat.com>
-
- * Add build system
diff --git a/Makefile.am b/Makefile.am
index 3279789..358e7f5 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -31,3 +31,13 @@ pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = xdamage.pc
EXTRA_DIST = xdamage.pc.in autogen.sh
+
+EXTRA_DIST += ChangeLog
+MAINTAINERCLEANFILES = ChangeLog
+
+.PHONY: ChangeLog
+
+ChangeLog:
+ (GIT_DIR=$(top_srcdir)/.git git-log > .changelog.tmp && mv .changelog.tmp ChangeLog; rm -f .changelog.tmp) || (touch ChangeLog; echo 'git directory not found: installing possibly empty changelog.' >&2)
+
+dist-hook: ChangeLog