diff options
author | Gaetan Nadon <memsize@videotron.ca> | 2009-10-27 15:07:24 -0400 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2022-07-24 11:22:16 -0700 |
commit | 5c2cb76dd32faf000c888aed8d23bbda37e40d4a (patch) | |
tree | 898b0b39e5ae6a131b41b02fced4ee2857fd108e | |
parent | 82691c8d9312b87ba50d726a15aead2a50834bad (diff) |
Deploy the new XORG_DEFAULT_OPTIONS #24242
This macro aggregate a number of existing macros that sets commmon
X.Org components configuration options. It shields the configuration file from
future changes.
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r-- | configure.ac | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/configure.ac b/configure.ac index 0095e68..6f74de4 100644 --- a/configure.ac +++ b/configure.ac @@ -34,15 +34,16 @@ AC_CONFIG_HEADERS([config.h]) AM_INIT_AUTOMAKE([dist-xz]) AM_MAINTAINER_MODE -# Require xorg-macros: XORG_CWARNFLAGS, XORG_CHANGELOG -m4_ifndef([XORG_MACROS_VERSION], [AC_FATAL([must install xorg-macros 1.2 or later before running autoconf/autogen])]) -XORG_MACROS_VERSION(1.2) +# Require xorg-macros: XORG_DEFAULT_OPTIONS +m4_ifndef([XORG_MACROS_VERSION], + [m4_fatal([must install xorg-macros 1.3 or later before running autoconf/autogen])]) +XORG_MACROS_VERSION(1.3) +XORG_DEFAULT_OPTIONS # Checks for programs. AC_DISABLE_STATIC AC_PROG_LIBTOOL AC_PROG_CC -XORG_CWARNFLAGS AH_TOP([#include "xorg-server.h"]) @@ -71,8 +72,5 @@ AC_HEADER_STDC DRIVER_NAME=elographics AC_SUBST([DRIVER_NAME]) -XORG_MANPAGE_SECTIONS -XORG_RELEASE_VERSION -XORG_CHANGELOG AC_OUTPUT([Makefile src/Makefile man/Makefile]) |