upload tizen2.0 source
[framework/uifw/xorg/lib/libxau.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([libXau], [1.0.7],
26         [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], [libXau])
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 X.Org macros 1.8 or later for MAN_SUBSTS set by XORG_MANPAGE_SECTIONS
39 m4_ifndef([XORG_MACROS_VERSION],
40           [m4_fatal([must install xorg-macros 1.8 or later before running autoconf/autogen])])
41 XORG_MACROS_VERSION(1.8)
42 XORG_DEFAULT_OPTIONS
43
44 # Checks for programs.
45 AC_PROG_LN_S
46
47 # Obtain compiler/linker options for depedencies
48 PKG_CHECK_MODULES(XAU, xproto)
49
50 AC_ARG_ENABLE(xthreads,
51               AS_HELP_STRING([--disable-xthreads],
52                 [Disable libXau support for Multithreading]),
53               [xthreads=$enableval],[xthreads=yes])
54
55 if test "x$xthreads" = "xyes" ; then
56     AC_DEFINE(XTHREADS,1,[Whether libXau is compiled with thread support])
57     AC_CHECK_LIB(c, gethostbyname_r, [mtsafe=yes])
58     if test "x$mtsafe" = "x" ; then
59         AC_CHECK_LIB(nsl, gethostbyname_r, [mtsafe=yes])
60     fi
61     if test "x$mtsafe" = "xyes" ; then
62         AC_DEFINE(XUSE_MTSAFE_API, 1,
63                   [Whether libXau needs to use MT safe API's])
64     fi
65
66 # XXX incomplete, please fill this in
67     case $host_os in
68     solaris*)
69         XTHREAD_CFLAGS="-D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS" ;;
70     esac
71     XAU_CFLAGS="$XAU_CFLAGS $XTHREAD_CFLAGS"
72 fi
73
74 # Allow checking code with lint, sparse, etc.
75 XORG_WITH_LINT
76 XORG_LINT_LIBRARY([Xau])
77 LINT_FLAGS="${LINT_FLAGS} ${XAU_CFLAGS}"
78
79 AC_CONFIG_FILES([Makefile
80                 man/Makefile
81                 xau.pc])
82 AC_OUTPUT