diff options
author | Keith Packard <keithp@keithp.com> | 2009-10-05 20:20:14 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2009-10-05 20:21:28 -0700 |
commit | e5ea87cd2a1c7b636d95f42daf3f36ba3104d59d (patch) | |
tree | 219e36ca3c98b9d7d527b7339b0d6e4a8fdfb855 /configure.ac | |
parent | d9ee6abdef13d04f6e7015c0cc39e3855aa01bbf (diff) |
Add XORG_DEFAULT_OPTIONS invocation in configure.ac
This should be included in all xorg configure.ac files to provide a
hook for setting various default values.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 320e560..4cebbbd 100644 --- a/configure.ac +++ b/configure.ac @@ -26,9 +26,13 @@ AC_INIT([RandrProto], [1.3.0], [https://bugs.freedesktop.org/enter_bug.cgi?produ AM_INIT_AUTOMAKE([foreign dist-bzip2]) # Require xorg-macros: 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) -XORG_RELEASE_VERSION + +# Require xorg-macros: XORG_DEFAULT_OPTIONS +m4_ifndef([XORG_MACROS_VERSION], [AC_FATAL([must install xorg-macros 1.3 or later before running autoconf/autogen])]) +XORG_MACROS_VERSION(1.3) + +XORG_DEFAULT_OPTIONS + XORG_CHANGELOG AC_OUTPUT([Makefile |