diff options
author | Alan Coopersmith <alan.coopersmith@sun.com> | 2006-09-26 17:28:45 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@sun.com> | 2006-09-26 17:28:45 -0700 |
commit | 3cc151c221139869980bc33d5336ab75c04606bc (patch) | |
tree | fa3870b24ae3d57c12603e41f24eb9d824514656 | |
parent | f856448323ad315f5301f1022e9ee75de7174dbd (diff) |
Replace static ChangeLog with disthook to generate from git log
-rw-r--r-- | ChangeLog | 73 | ||||
-rw-r--r-- | Makefile.am | 6 |
2 files changed, 6 insertions, 73 deletions
diff --git a/ChangeLog b/ChangeLog deleted file mode 100644 index 311e3e0..0000000 --- a/ChangeLog +++ /dev/null @@ -1,73 +0,0 @@ -2006-06-16 Alan Coopersmith <alan.coopersmith@sun.com> - - * configure.ac: - Define HAS_SHM if shmat() is found - - * src/XvMC.c: - Include <config.h> to get HAS_SHM define. - -2006-04-26 Adam Jackson <ajax@freedesktop.org> - - * configure.ac: - Bump to 1.0.2 - -2006-04-03 Adam Jackson <ajax@freedesktop.org> - - * src/Makefile.am: - Bug #6479: Cygwin build fix. (Yaakov Selkowitz) - -2006-03-22 Donnie Berkholz <spyderous@gentoo.org> - - * src/Makefile.am: - Set XVMC_CONFIGDIR to $(sysconfdir)/X11. - -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-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> - - * configure.ac: - * src/Makefile.am: - Add check and cflags for malloc(0) returning NULL. - -2005-11-26 Thomas Hellstrom <unichrome-at-shipmail-dot-org> - - * src/Makefile.am: - Bug #5067 <https://bugs.freedesktop.org/show_bug.cgi?id=5067> - Add dot before revision definitions for libXvMCW (Cedric Berger) - -2005-11-19 Kevin E. Martin <kem-at-freedesktop-dot-org> - - * xvmc.pc.in: - Update pkgconfig files to separate library build-time dependencies - from application build-time dependencies. - -2005-10-18 Kevin E. Martin <kem-at-freedesktop-dot-org> - - * configure.ac: - Update package version number for RC1 release. - -2005-07-08 Keith Packard <keithp@keithp.com> - - reviewed by: <delete if not using a buddy> - - * .cvsignore: - * src/.cvsignore: - -2005-06-21 Alexander Gottwald <ago at freedesktop dot org> - - * configure.ac - Add missing xext.pc and xextproto.pc - diff --git a/Makefile.am b/Makefile.am index 0224e29..b6a7f44 100644 --- a/Makefile.am +++ b/Makefile.am @@ -26,3 +26,9 @@ pkgconfig_DATA = xvmc.pc EXTRA_DIST = xvmc.pc.in autogen.sh +.PHONY: ChangeLog + +ChangeLog: + git-log > ChangeLog + +dist-hook: ChangeLog |