Initialize Tizen 2.3
[adaptation/ap_samsung/libtbm-exynos4412.git] / configure.ac
1 #
2 #  Permission is hereby granted, free of charge, to any person obtaining a
3 #  copy of this software and associated documentation files (the "Software"),
4 #  to deal in the Software without restriction, including without limitation
5 #  on the rights to use, copy, modify, merge, publish, distribute, sub
6 #  license, and/or sell copies of the Software, and to permit persons to whom
7 #  the Software is furnished to do so, subject to the following conditions:
8 #
9 #  The above copyright notice and this permission notice (including the next
10 #  paragraph) shall be included in all copies or substantial portions of the
11 #  Software.
12 #
13 #  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14 #  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15 #  FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.  IN NO EVENT SHALL
16 #  ADAM JACKSON BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
17 #  IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
18 #  CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
19
20 AC_PREREQ(2.60)
21 AC_INIT(libtbm-exynos4412, 1.0.0)
22 AC_USE_SYSTEM_EXTENSIONS
23 AC_CONFIG_SRCDIR([Makefile.am])
24 AM_INIT_AUTOMAKE([dist-bzip2])
25
26 AM_CONFIG_HEADER([config.h])
27
28 AC_DISABLE_STATIC
29 AC_PROG_LIBTOOL
30 AC_PROG_CC
31
32 AC_HEADER_STDC
33 AC_SYS_LARGEFILE
34 AC_FUNC_ALLOCA
35
36 # Enable quiet compiles on automake 1.11.
37 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
38
39 PKG_CHECK_MODULES(LIBDRM, libdrm)
40 PKG_CHECK_MODULES(LIBTBM, libtbm)
41
42 LIBTBM_EXYNOS4412_CFLAGS="$LIBDRM_CFLAGS $LIBTBM_CFLAGS "
43 LIBTBM_EXYNOS4412_LIBS="$LIBDRM_LIBS $LIBTBM_LIBS "
44 AC_SUBST(LIBTBM_EXYNOS4412_CFLAGS)
45 AC_SUBST(LIBTBM_EXYNOS4412_LIBS)
46
47 bufmgr_dir=${libdir#*/}
48 AC_SUBST(bufmgr_dir)
49
50 AC_OUTPUT([
51         Makefile
52         src/Makefile])
53
54 echo ""
55 echo "CFLAGS  : $CFLAGS"
56 echo "LDFLAGS : $LDFLAGS"
57 echo "LIBTBM_EXYNOS4412_CFLAGS : $LIBTBM_EXYNOS4412_CFLAGS"
58 echo "LIBTBM_EXYNOS4412_LIBS   : $LIBTBM_EXYNOS4412_LIBS"
59 echo "bufmgr_dir : $bufmgr_dir"
60 echo ""
61