summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@sun.com>2007-04-23 19:14:22 -0700
committerAlan Coopersmith <alan.coopersmith@sun.com>2007-04-23 19:14:22 -0700
commit81a8a71d888d16989a096195dfd96b10fadeba5d (patch)
tree21474be95daf5c83937970f31c45ab139645f1d5
parent3d6927c680e6aba14e0a7d771ce8891606cb7fbd (diff)
Replace static ChangeLog with dist-hook to generate from git log
-rw-r--r--ChangeLog93
-rw-r--r--Makefile.am8
2 files changed, 7 insertions, 94 deletions
diff --git a/ChangeLog b/ChangeLog
deleted file mode 100644
index fe59217..0000000
--- a/ChangeLog
+++ /dev/null
@@ -1,93 +0,0 @@
-2006-04-03 Adam Jackson <ajax@freedesktop.org>
-
- Tag as 0.3 and release.
-
-2006-04-02 Adam Jackson <ajax@freedesktop.org>
-
- * src/Xcomposite.c:
- Coverity #573: Plug a leak on the error path.
-
-2006-3-13 Deron Johnson <deron.johnson@sun.com>
-
- * configure.ac
- * include/X11/extensions/Xcomposite.h
- * src/Xcomposite.c
- * src/xcompositeint.h
- Composite Version 0.3: CompositeGetOverlayWindow, CompositeReleaseOverlayWindow
-
-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>
-
- * xcomposite.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-10-18 Kevin E. Martin <kem-at-freedesktop-dot-org>
-
- * configure.ac:
- Update package version number for RC1 release.
-
-2005-07-15 Alexander Gottwald <ago at freedesktop dot org>
-
- * src/Makefile.am:
- Add DEP_LIBS
-
-2005-07-11 Keith Packard <keithp@keithp.com>
-
- * src/.cvsignore:
- * src/Makefile.am:
- Add missing files
-
-2005-07-11 Keith Packard <keithp@keithp.com>
-
- * configure.ac:
- * xcomposite.pc.in:
- Require modular X library.
- Unify dependency _CFLAGS/_LIBS
-
-2004-11-22 Carl Worth <cworth@cworth.org>
-
- * configure.ac: Remove AC_CONFIG_AUX_DIR (it was in the wrong
- place for automake-1.9, and it was set to the default value
- anyway).
-
-2004-07-08 Keith Packard <keithp@keithp.com>
-
- * Makefile.am:
- * Xcomposite.c: (XCompositeVersion), (XCompositeNameWindowPixmap):
- * Xcomposite.h:
- * configure.ac:
- Add library API for Composite 0.2 changes
- Add XCompositeVersion to get the run-time library version number
- Fix package version number in configure.ac and Xcomposite.h
-
-2004-02-03 Jim Gettys <jg@handhelds.org>
-
- * AUTHORS: Add authors to AUTHORS file
-
-2004-01-15 Daniel Stone <daniel@fooishbar.org>
- * Tag release 1.0 for first freedesktop.org clientside lib release.
-
-2004-01-15 Harold L Hunt II <huntharo@msu.edu>
- * Makefile.am: Pass -no-undefined to libtool via LDFLAGS.
diff --git a/Makefile.am b/Makefile.am
index bb67cf6..3219ccc 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -26,4 +26,10 @@ SUBDIRS = src man
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = xcomposite.pc
-EXTRA_DIST = xcomposite.pc.in autogen.sh
+EXTRA_DIST = xcomposite.pc.in autogen.sh 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
+