summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@sun.com>2006-07-12 23:53:14 -0700
committerAlan Coopersmith <alanc@alf.(none)>2006-07-12 23:53:14 -0700
commit9062a6da402d416f21d4365d3c3a29ceea707e77 (patch)
treedbda2b5d39faf05f6cf5c8a489b059b499b96632
parent9b5a14e6de65658fdb712e737b292568a69dc3ee (diff)
downloadxorg-lib-libXau-9062a6da402d416f21d4365d3c3a29ceea707e77.tar.gz
Replace static ChangeLog with dist-hook to generate from git-log
-rw-r--r--ChangeLog85
-rw-r--r--Makefile.am9
2 files changed, 8 insertions, 86 deletions
diff --git a/ChangeLog b/ChangeLog
deleted file mode 100644
index 1355d28..0000000
--- a/ChangeLog
+++ /dev/null
@@ -1,85 +0,0 @@
-2006-06-28 Alan Coopersmith <alan.coopersmith@sun.com>
-
- * configure.ac:
- * Makefile.am:
- Add "--with-lint" configure flag and "make lint" Makefile target
- to check source code with lint, sparse or similar tools.
-
-2006-06-28 Alan Coopersmith <alan.coopersmith@sun.com>
-
- * include/X11/Xauth.h:
- Remove prototype for XauGetAuthByName to clear lint warning:
- name declared but never used or defined
-
- * AuDispose.c:
- * AuFileName.c:
- * AuGetAddr.c:
- * AuGetBest.c:
- * AuRead.c:
- * AuWrite.c:
- Fix sparse warnings:
- -warning: Using plain integer as NULL pointer
- -warning: non-ANSI definition of function
-
-2006-06-09 Alan Coopersmith <alan.coopersmith@sun.com>
-
- * Makefile.am:
- * Autest.c:
- Clean up existing Autest test program and use to provide simple
- (and very incomplete) "make check" test case.
-
-2006-05-12 Adam Jackson <ajax@freedesktop.org>
-
- * configure.ac:
- Bump to 1.0.1
-
-2006-05-08 Kevin E. Martin <kem-at-freedesktop-dot-org>
-
- * Makefile.am:
- Bug #5628 <https://bugs.freedesktop.org/show_bug.cgi?id=5628>
- Shadow pages not created correctly when MANDIR & MANSUFFIX don't match.
-
-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>
-
- * 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-11-19 Kevin E. Martin <kem-at-freedesktop-dot-org>
-
- * xau.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-10-11 Alan Coopersmith <alan.coopersmith@sun.com>
-
- * Makefile.am:
- * configure.ac:
- Use sed to put version number in man page
- Add shadow man pages for man pages that document multiple functions.
-
-2005-09-21 Alan Coopersmith <alan.coopersmith@sun.com>
-
- * configure.ac:
- Set needed flags for MT-safe API's called from libXau
-
-2005-07-08 Keith Packard <keithp@keithp.com>
-
- * .cvsignore:
- * include/.cvsignore:
- Add .cvsignore files
-
diff --git a/Makefile.am b/Makefile.am
index 6008b3d..9c8bc12 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -50,7 +50,7 @@ CLEANFILES = $(libman_DATA) $(BUILT_SOURCES)
libman_DATA = $(libman_PRE:man=@LIB_MAN_SUFFIX@) \
$(Xau_shadows:=.@LIB_MAN_SUFFIX@)
-EXTRA_DIST = xau.pc.in $(libman_PRE)
+EXTRA_DIST = xau.pc.in $(libman_PRE) ChangeLog
Xau_shadows = \
XauFileName \
@@ -75,3 +75,10 @@ XORGRELSTRING = @PACKAGE_STRING@
Xau.$(LIB_MAN_SUFFIX): $(srcdir)/Xau.man
sed 's/__xorgversion__/"$(XORGRELSTRING)" "$(XORGMANNAME)"/' \
< $(srcdir)/Xau.man > Xau.$(LIB_MAN_SUFFIX)
+
+.PHONY: ChangeLog
+
+ChangeLog:
+ git-log > ChangeLog
+
+dist-hook: ChangeLog