configure.ac revision 6fc0178d
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.3], 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 58case $host_os in 59 *mingw*) 60 AC_CHECK_LIB([ws2_32],[main]) 61 ;; 62 *) 63 ;; 64esac 65 66# Checks for library functions. 67AC_CHECK_LIB([bsd], [arc4random_buf]) 68AC_CHECK_FUNCS([srand48 lrand48 arc4random_buf getentropy]) 69 70# Obtain compiler/linker options for depedencies 71PKG_CHECK_MODULES(XDMCP, xproto) 72 73if test -f ${srcdir}/Wraphelp.c; then 74 AC_DEFINE(HASXDMAUTH,1,[Has Wraphelp.c needed for XDM AUTH protocols]) 75 HASXDMAUTH=yes 76else 77 HASXDMAUTH=no 78fi 79 80AM_CONDITIONAL(HASXDMAUTH,test x$HASXDMAUTH = xyes) 81 82# Allow checking code with lint, sparse, etc. 83XORG_WITH_LINT 84XORG_LINT_LIBRARY([Xdmcp]) 85 86# --enable-unit-tests 87XORG_ENABLE_UNIT_TESTS([yes]) 88 89AC_CONFIG_FILES([Makefile 90 doc/Makefile 91 test/Makefile 92 xdmcp.pc]) 93AC_OUTPUT 94