Replace static ChangeLog with dist-hook to generate from git log

This commit is contained in:
James Cloos 2007-12-06 16:39:01 -05:00
parent 6430de9a12
commit a51078116f
2 changed files with 10 additions and 52 deletions

View file

@ -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.

View file

@ -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