configure.ac revision fc544a13
1# 2# Copyright © 2003 Keith Packard, Noah Levitt 3# 4# Permission to use, copy, modify, distribute, and sell this software and its 5# documentation for any purpose is hereby granted without fee, provided that 6# the above copyright notice appear in all copies and that both that 7# copyright notice and this permission notice appear in supporting 8# documentation, and that the name of Keith Packard not be used in 9# advertising or publicity pertaining to distribution of the software without 10# specific, written prior permission. Keith Packard makes no 11# representations about the suitability of this software for any purpose. It 12# is provided "as is" without express or implied warranty. 13# 14# KEITH PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 15# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 16# EVENT SHALL KEITH PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR 17# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 18# DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 19# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 20# PERFORMANCE OF THIS SOFTWARE. 21# 22 23# Initialize Autoconf 24AC_PREREQ([2.60]) 25AC_INIT([libXdmcp], [1.1.2], 26 [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], [libXdmcp]) 27AC_CONFIG_SRCDIR([Makefile.am]) 28AC_CONFIG_HEADERS([config.h]) 29# Set common system defines for POSIX extensions, such as _GNU_SOURCE 30# Must be called before any macros that run the compiler (like AC_PROG_LIBTOOL) 31# to avoid autoconf errors. 32AC_USE_SYSTEM_EXTENSIONS 33 34# Initialize Automake 35AM_INIT_AUTOMAKE([foreign dist-bzip2]) 36 37# Initialize libtool 38AC_LIBTOOL_WIN32_DLL 39AC_PROG_LIBTOOL 40 41# Require xorg-macros minimum of 1.16 for unit testing with memory checks 42m4_ifndef([XORG_MACROS_VERSION], 43 [m4_fatal([must install xorg-macros 1.16 or later before running autoconf/autogen])]) 44XORG_MACROS_VERSION(1.16) 45XORG_DEFAULT_OPTIONS 46XORG_ENABLE_DOCS 47XORG_WITH_XMLTO(0.0.22) 48XORG_WITH_FOP 49XORG_WITH_XSLTPROC 50XORG_CHECK_SGML_DOCTOOLS(1.8) 51 52# Checks for programs. 53AC_PROG_LN_S 54 55# Checks for libraries. 56AC_SEARCH_LIBS([recvfrom],[socket]) 57 58# Checks for library functions. 59AC_CHECK_LIB([bsd], [arc4random_buf]) 60AC_CHECK_FUNCS([srand48 lrand48 arc4random_buf]) 61 62# Obtain compiler/linker options for depedencies 63PKG_CHECK_MODULES(XDMCP, xproto) 64 65if test -f ${srcdir}/Wraphelp.c; then 66 AC_DEFINE(HASXDMAUTH,1,[Has Wraphelp.c needed for XDM AUTH protocols]) 67 HASXDMAUTH=yes 68else 69 HASXDMAUTH=no 70fi 71 72AM_CONDITIONAL(HASXDMAUTH,test x$HASXDMAUTH = xyes) 73 74# Allow checking code with lint, sparse, etc. 75XORG_WITH_LINT 76XORG_LINT_LIBRARY([Xdmcp]) 77 78# --enable-unit-tests 79XORG_ENABLE_UNIT_TESTS([yes]) 80 81AC_CONFIG_FILES([Makefile 82 doc/Makefile 83 test/Makefile 84 xdmcp.pc]) 85AC_OUTPUT 86