summaryrefslogtreecommitdiff
path: root/configure.ac
blob: 31c3ac6be71e12818f48e6664a18fecc189fd858 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
AC_PREREQ(2.59c)
AC_INIT([xcb-util-renderutil],[0.3.8],
        [https://bugs.freedesktop.org/enter_bug.cgi?product=xcb&component=Utils],
        [xcb-util-renderutil])
AC_CONFIG_SRCDIR([Makefile.am])
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_MACRO_DIR([m4])
AM_INIT_AUTOMAKE([foreign dist-bzip2])
AM_MAINTAINER_MODE

XCB_UTIL_COMMON([1.4], [1.6])

PKG_CHECK_MODULES(XCB_RENDER, xcb-render)

AC_CONFIG_FILES([Makefile
	renderutil/Makefile
	renderutil/xcb-renderutil.pc])
AC_OUTPUT