]> git.draconx.ca Git - liblbx.git/blob - configure.ac
build: Implement a better GTK+ detection macro.
[liblbx.git] / configure.ac
1 dnl Copyright (C) 2009 Nick Bowler
2 dnl Copying and distribution of this file, with or without modification,
3 dnl are permitted in any medium without royalty provided the copyright
4 dnl notice and this notice are preserved.  This file is offered as-is,
5 dnl without any warranty.
6
7 AC_PREREQ([2.62])
8 AC_INIT([liblbx], [0.1], [toom-devel@lists.sourceforge.net])
9 AC_CONFIG_SRCDIR([src/lbx.c])
10 AC_CONFIG_HEADER([config.h])
11 AC_CONFIG_MACRO_DIR([m4])
12
13 AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects])
14 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
15
16 AC_PROG_CC_C99
17 gl_EARLY
18
19 AC_HEADER_ASSERT
20 LT_INIT
21 gl_INIT
22 PKG_PROG_PKG_CONFIG
23
24 AC_ARG_ENABLE([lbximg],
25         [AS_HELP_STRING([--enable-lbximg],
26                 [build the lbximg tool (requires libpng) [default=auto]])],
27         [enable_lbximg=$enableval],
28         [enable_lbximg=auto])
29
30 have_libpng=no
31 if test x"$enable_lbximg" = x"auto"; then
32 DX_CHECK_LIBPNG([1.2], [have_libpng=yes], [have_libpng=no])
33 fi
34 if test x"$enable_lbximg" = x"yes"; then
35 DX_CHECK_LIBPNG([1.2], [have_libpng=yes])
36 fi
37 AM_CONDITIONAL([BUILD_LBXIMG], [test x"$have_libpng" = x"yes"])
38
39 AC_ARG_ENABLE([lbxgui],
40         [AS_HELP_STRING([--enable-lbxgui],
41                 [build the lbxgui tool (requires GTK+) [default=auto]])],
42         [enable_lbxgui=$enableval],
43         [enable_lbxgui=auto])
44
45 have_gtk=no
46 if test x"$enable_lbxgui" = x"auto"; then
47 DX_CHECK_GTK2([2.16], [have_gtk=yes], [have_gtk=no])
48 fi
49 if test x"$enable_lbxgui" = x"yes"; then
50 DX_CHECK_GTK2([2.16], [have_gtk=yes])
51 fi
52 AM_CONDITIONAL([BUILD_LBXGUI], [test x"$have_gtk" = x"yes"])
53
54 AC_CONFIG_FILES([
55         Makefile
56         lib/Makefile
57 ])
58
59 AC_OUTPUT