diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2024-05-12 11:30:30 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2024-05-12 11:30:30 -0700 |
commit | 6c0df666f83c10a1ad11277263687760357857b7 (patch) | |
tree | 53d6bccf6e5fe565ab7c59c07370b4012a20fcac | |
parent | bae05c30a729c97f9d45943581299459a8c62e4d (diff) |
Raise minimum supported Xserver version from 1.4 to 1.18
Recent commits have unconditionally used API's introduced in newer versions:
- XNFasprintf() introduced in xorg/xserver@c95c1d33 - xserver-1.10.0
- XNFcallocarray() introduced in xorg/xserver@b96dc999 - xserver-1.18.0
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Part-of: <https://gitlab.freedesktop.org/xorg/driver/xf86-video-mach64/-/merge_requests/14>
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index a35cd19..bb17ae9 100644 --- a/configure.ac +++ b/configure.ac @@ -69,7 +69,7 @@ XORG_DRIVER_CHECK_EXT(XV, videoproto) XORG_DRIVER_CHECK_EXT(DPMSExtension, xextproto) # Obtain compiler/linker options for the driver dependencies -PKG_CHECK_MODULES(XORG, [xorg-server >= 1.4 xproto fontsproto $REQUIRED_MODULES]) +PKG_CHECK_MODULES(XORG, [xorg-server >= 1.18 xproto fontsproto $REQUIRED_MODULES]) PKG_CHECK_MODULES(XEXT, [xextproto >= 7.0.99.1], HAVE_XEXTPROTO_71="yes"; AC_DEFINE(HAVE_XEXTPROTO_71, 1, [xextproto 7.1 available]), HAVE_XEXTPROTO_71="no") |