xenocara/app/xhost/configure.ac

45 lines
1.1 KiB
Plaintext
Raw Normal View History

2012-04-07 09:52:30 -06:00
dnl Process this file with autoconf to create configure.
2006-11-25 13:07:29 -07:00
2012-04-07 09:52:30 -06:00
# Initialize Autoconf
AC_PREREQ([2.60])
2013-07-21 07:58:23 -06:00
AC_INIT([xhost], [1.0.6],
[https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], [xhost])
2012-04-07 09:52:30 -06:00
AC_CONFIG_SRCDIR([Makefile.am])
AC_CONFIG_HEADERS([config.h])
# Initialize Automake
AM_INIT_AUTOMAKE([foreign dist-bzip2])
2006-11-25 13:07:29 -07:00
AM_MAINTAINER_MODE
# Require X.Org macros 1.8 or later for MAN_SUBSTS set by XORG_MANPAGE_SECTIONS
2009-10-24 08:14:08 -06:00
m4_ifndef([XORG_MACROS_VERSION],
[m4_fatal([must install xorg-macros 1.8 or later before running autoconf/autogen])])
XORG_MACROS_VERSION(1.8)
2012-04-07 09:52:30 -06:00
XORG_DEFAULT_OPTIONS
2006-11-25 13:07:29 -07:00
# Checks for pkg-config packages
2012-04-07 09:52:30 -06:00
# - Both CFLAGS & LIBS needed:
2013-07-21 07:58:23 -06:00
PKG_CHECK_MODULES(XHOST, [xproto >= 7.0.22 x11 xmuu])
2012-04-07 09:52:30 -06:00
# - Only CFLAGS needed, not libs:
PKG_CHECK_MODULES(XAU, xau)
2006-11-25 13:07:29 -07:00
# Transport selection macro from xtrans.m4
XTRANS_CONNECTION_FLAGS
# Secure RPC detection macro from xtrans.m4
XTRANS_SECURE_RPC_FLAGS
2013-07-21 07:58:23 -06:00
# Link with winsock if mingw target
case $host_os in
*mingw*)
AC_CHECK_LIB([ws2_32],[main])
;;
*)
;;
esac
2012-04-07 09:52:30 -06:00
AC_CONFIG_FILES([
Makefile
man/Makefile])
AC_OUTPUT