diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2010-10-31 11:14:30 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2010-10-31 11:14:30 -0700 |
commit | 8838a27cb7d1c1be42166569ebfd0c75626752aa (patch) | |
tree | d9bd3da45cfcddb9e2b82ca137cef9bf3df0f6f1 /configure.ac | |
parent | fba7d03bee848b38a4d6a295244cda4c80605ef2 (diff) |
include Xxf86dga.h instead of the deprecated xf86dga.h
Requires libXxf86dga 1.1.0 or newer for the new header.
Clears compiler warnings of:
"X11/extensions/xf86dga.h", line 9: #warning: "xf86dga.h is obsolete and may be removed in the future."
"X11/extensions/xf86dga.h", line 10: #warning: "include <X11/extensions/Xxf86dga.h> instead."
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 48ac761..ea0bf92 100644 --- a/configure.ac +++ b/configure.ac @@ -39,6 +39,6 @@ XORG_MACROS_VERSION(1.8) XORG_DEFAULT_OPTIONS # Checks for pkg-config packages -PKG_CHECK_MODULES(XF86DGA, x11 xxf86dga) +PKG_CHECK_MODULES(XF86DGA, [x11 xxf86dga >= 1.1]) AC_OUTPUT([Makefile]) |