summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Cloos <cloos@jhcloos.com>2007-12-06 16:39:01 -0500
committerJames Cloos <cloos@jhcloos.com>2007-12-06 16:39:01 -0500
commita51078116ff54e9ffad3f3784ec226ad91c62816 (patch)
tree02e00079134193723fd42195f53f33efd77a8f62
parent6430de9a12b0430be8a635976038f8769d798bef (diff)
Replace static ChangeLog with dist-hook to generate from git log
-rw-r--r--ChangeLog52
-rw-r--r--Makefile.am10
2 files changed, 10 insertions, 52 deletions
diff --git a/ChangeLog b/ChangeLog
deleted file mode 100644
index 85cf2a3..0000000
--- a/ChangeLog
+++ /dev/null
@@ -1,52 +0,0 @@
-2006-06-28 Kristian Høgsberg <krh@redhat.com>
-
- * glxproto.h (__GLX_NUMBER_ERRORS): There are 13 GLX errors.
-
-2006-04-30 Adam Jackson <ajax@freedesktop.org>
-
- * glxtokens.h:
- Bump to 1.4.7 for final EXT_tfp tokens.
-
-2006-03-16 Kristian Høgsberg <krh@redhat.com>
-
- * configure.ac: Bump to 1.4.6 for FBO opcodes.
-
-2006-03-10 David Reveman <davidr@novell.com>
-
- * glxproto.h: Fix typo.
-
-2006-02-24 Brian Paul <brian.paul@tungstengraphics.com>
-
- * glxproto.h
- Added GL_EXT_framebuffer_object opcodes for Dave Reveman.
-
-2006-02-20 Adam Jackson <ajax@freedesktop.org>
-
- * glxtokens.h:
- Add GLX_FRONT_LEFT_EXT.
-
- * configure.ac:
- Bump to 1.4.5.
-
-2006-02-14 Adam Jackson <ajax@freedesktop.org>
-
- * glxproto.h:
- Add enumerants for EXT_texture_from_pixmap.
-
- * configure.ac:
- Bump to 1.4.4.
-
-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-10-13 Donnie Berkholz <spyderous@gentoo.org>
-
- * configure.ac: Bump version to 1.4.1, so xserver can depend on newer
- version and not die.
diff --git a/Makefile.am b/Makefile.am
index cff9d1a..df3e0a6 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -13,3 +13,13 @@ pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = glproto.pc
EXTRA_DIST = autogen.sh glproto.pc.in
+
+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