diff options
author | Alan Coopersmith <alan.coopersmith@sun.com> | 2006-09-18 15:45:50 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@sun.com> | 2006-09-18 15:45:50 -0700 |
commit | 3c80665e7c53db021b52ad267c12c6b4f43e7c3a (patch) | |
tree | efacf5c0704501a1a820a55515de4b41200e3ff0 | |
parent | d968d8b6777f21b799a99c9652c27e39da319b00 (diff) |
Replace static Changelog with dist-hook to generate from git log
-rw-r--r-- | ChangeLog | 51 | ||||
-rw-r--r-- | Makefile.am | 6 |
2 files changed, 6 insertions, 51 deletions
diff --git a/ChangeLog b/ChangeLog deleted file mode 100644 index 3280d2e..0000000 --- a/ChangeLog +++ /dev/null @@ -1,51 +0,0 @@ -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-06 Kevin E. Martin <kem-at-freedesktop-dot-org> - - * man/Makefile.am: - Change *man_SOURCES ==> *man_PRE to fix autotools warnings. - -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-19 Kevin E. Martin <kem-at-freedesktop-dot-org> - - * xv.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> - - * .cvsignore: - * man/.cvsignore: - * src/.cvsignore: - * src/Makefile.am: - Add .cvsignore files - Switch _la_CFLAGS for AM_CFLAGS to clean up directory - -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 5af25f3..6aacfa8 100644 --- a/Makefile.am +++ b/Makefile.am @@ -26,3 +26,9 @@ pkgconfig_DATA = xv.pc EXTRA_DIST = xv.pc.in autogen.sh +.PHONY: ChangeLog + +ChangeLog: + git-log > ChangeLog + +dist-hook: ChangeLog |