upload tizen2.0 source
[framework/uifw/xorg/lib/libxdmcp.git] / configure.ac
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
24 AC_PREREQ([2.60])
25 AC_INIT([libXdmcp], [1.1.1],
26         [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], [libXdmcp])
27 AC_CONFIG_SRCDIR([Makefile.am])
28 AC_CONFIG_HEADERS([config.h])
29
30 # Initialize Automake
31 AM_INIT_AUTOMAKE([foreign dist-bzip2])
32 AM_MAINTAINER_MODE
33
34 # Initialize libtool
35 AC_LIBTOOL_WIN32_DLL
36 AC_PROG_LIBTOOL
37
38 # Require xorg-macros minimum of 1.12 for DocBook external references
39 m4_ifndef([XORG_MACROS_VERSION],
40           [m4_fatal([must install xorg-macros 1.12 or later before running autoconf/autogen])])
41 XORG_MACROS_VERSION(1.12)
42 XORG_DEFAULT_OPTIONS
43 XORG_ENABLE_DOCS
44 XORG_WITH_XMLTO(0.0.22)
45 XORG_WITH_FOP
46 XORG_WITH_XSLTPROC
47 XORG_CHECK_SGML_DOCTOOLS(1.8)
48
49 # Checks for programs.
50 AC_PROG_LN_S
51
52 # Checks for libraries.
53 AC_SEARCH_LIBS([recvfrom],[socket])
54
55 # Checks for library functions.
56 AC_CHECK_FUNCS([srand48 lrand48])
57
58 # Obtain compiler/linker options for depedencies
59 PKG_CHECK_MODULES(XDMCP, xproto)
60
61 if test -f ${srcdir}/Wraphelp.c; then
62         AC_DEFINE(HASXDMAUTH,1,[Has Wraphelp.c needed for XDM AUTH protocols])
63         HASXDMAUTH=yes
64 else
65         HASXDMAUTH=no
66 fi
67
68 AM_CONDITIONAL(HASXDMAUTH,test x$HASXDMAUTH = xyes)
69
70 # Allow checking code with lint, sparse, etc.
71 XORG_WITH_LINT
72 XORG_LINT_LIBRARY([Xdmcp])
73
74 AC_CONFIG_FILES([Makefile
75                 doc/Makefile
76                 xdmcp.pc])
77 AC_OUTPUT