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 | af4b88bba232af55484e8b82ce8abab6013e985e (patch) | |
tree | 5d30a5b28395af1c0131720d0f9db209992bb2e4 | |
parent | b34368c667bd47db56bc7e2b36710a22bc3862b0 (diff) |
Various changes preparing packages for RC0:XORG-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 8c286c8..8f3019b 100644 --- a/configure.ac +++ b/configure.ac @@ -30,7 +30,7 @@ dnl version. This same version number must appear in Xcursor.h dnl Yes, it is a pain to synchronize version numbers. Unfortunately, it's dnl not possible to extract the version number here from Xcursor.h dnl -AC_INIT([libXcursor],1.1.3,[keithp@keithp.com],[libXcursor]) +AC_INIT([libXcursor],1.1.3,[https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],[libXcursor]) AM_INIT_AUTOMAKE([dist-bzip2]) AC_CONFIG_SRCDIR([Makefile.am]) AM_MAINTAINER_MODE @@ -46,6 +46,8 @@ PKG_CHECK_MODULES(DEP, xrender >= 0.8.2 xfixes x11) AC_SUBST(DEP_CFLAGS) AC_SUBST(DEP_LIBS) +XORG_RELEASE_VERSION + AC_OUTPUT([Makefile src/Makefile man/Makefile |