diff options
author | Kevin E Martin <kem@kem.org> | 2005-07-29 21:22:51 +0000 |
---|---|---|
committer | Kevin E Martin <kem@kem.org> | 2005-07-29 21:22:51 +0000 |
commit | 15fba21d80922c8f93f5406b0616022b92eaa5c1 (patch) | |
tree | ee544b46a3df3718da5fcb703a57c4772fe07484 | |
parent | c6bd02dc03af0e475d2396d5c399201969348151 (diff) |
Various changes preparing packages for RC0:XORG-6_99_99_901XORG-6_99_99_900
- Verify and update package version numbers as needed
- Implement versioning scheme
- Change bug address to point to bugzilla bug entry form
- Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to
reenable it)
- Fix makedepend to use pkgconfig and pass distcheck
- Update build script to build macros first
- Update modular Xorg version
-rw-r--r-- | configure.ac | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 1195487..6157d86 100644 --- a/configure.ac +++ b/configure.ac @@ -34,7 +34,7 @@ dnl protocol, so Xfixes version l.n.m corresponds to protocol version l.n, dnl that 'revision' number appears in Xfixes.h and has to be manually dnl synchronized. dnl -AC_INIT(libXfixes, 3.0.0, [keithp@keithp.com], libXfixes) +AC_INIT(libXfixes, 3.0.0, [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], libXfixes) AM_INIT_AUTOMAKE([dist-bzip2]) AM_MAINTAINER_MODE @@ -58,6 +58,8 @@ PKG_CHECK_MODULES(FIXESEXT, [fixesproto >= $FIXESEXT_VERSION]) AC_SUBST(FIXESEXT_CFLAGS) AC_SUBST(FIXESEXT_LIBS) +XORG_RELEASE_VERSION + AC_OUTPUT([Makefile src/Makefile man/Makefile |