diff options
author | marha <marha@users.sourceforge.net> | 2012-01-23 16:07:44 +0100 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2012-01-23 16:07:44 +0100 |
commit | e960645b7f8f6d257df2a56c57ccc49e2070319d (patch) | |
tree | 223b1cc6415b06a7c595081d20468b1f496dc103 /apps/xhost/configure.ac | |
parent | 3133b5e387a167d55f2510ca1ea5c201837e5ae0 (diff) | |
download | vcxsrv-e960645b7f8f6d257df2a56c57ccc49e2070319d.tar.gz vcxsrv-e960645b7f8f6d257df2a56c57ccc49e2070319d.tar.bz2 vcxsrv-e960645b7f8f6d257df2a56c57ccc49e2070319d.zip |
Added xhost-1.0.4
Diffstat (limited to 'apps/xhost/configure.ac')
-rw-r--r-- | apps/xhost/configure.ac | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/apps/xhost/configure.ac b/apps/xhost/configure.ac new file mode 100644 index 000000000..9d70b8c60 --- /dev/null +++ b/apps/xhost/configure.ac @@ -0,0 +1,29 @@ +# $XdotOrg: app/xhost/configure.ac,v 1.10 2005/12/15 00:24:07 kem Exp $ + +AC_PREREQ([2.60]) +AC_INIT([xhost], [1.0.4], + [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], [xhost]) +AM_INIT_AUTOMAKE([foreign dist-bzip2]) +AM_MAINTAINER_MODE + +# Require X.Org macros 1.8 or later for MAN_SUBSTS set by XORG_MANPAGE_SECTIONS +m4_ifndef([XORG_MACROS_VERSION], + [m4_fatal([must install xorg-macros 1.8 or later before running autoconf/autogen])]) +XORG_MACROS_VERSION(1.8) + +AM_CONFIG_HEADER(config.h) + +AC_TYPE_SIGNAL + +XORG_DEFAULT_OPTIONS + +# Checks for pkg-config packages +PKG_CHECK_MODULES(XHOST, x11 xmuu xau) + +# Transport selection macro from xtrans.m4 +XTRANS_CONNECTION_FLAGS + +# Secure RPC detection macro from xtrans.m4 +XTRANS_SECURE_RPC_FLAGS + +AC_OUTPUT([Makefile]) |