]> git.draconx.ca Git - liblbx.git/blob - configure.ac
build: Fixes for newer tools.
[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 -Wno-portability foreign subdir-objects])
14 AM_SILENT_RULES([yes])
15
16 AC_PROG_CC_C99
17 AM_PROG_CC_C_O
18 gl_EARLY
19
20 AC_HEADER_ASSERT
21 LT_INIT
22 gl_INIT
23 PKG_PROG_PKG_CONFIG
24
25 AC_ARG_ENABLE([lbximg],
26         [AS_HELP_STRING([--enable-lbximg],
27                 [build the lbximg tool (requires libpng) [default=auto]])],
28         [enable_lbximg=$enableval],
29         [enable_lbximg=auto])
30
31 have_libpng=no
32 if test x"$enable_lbximg" = x"auto"; then
33 DX_CHECK_LIBPNG([1.2], [have_libpng=yes], [have_libpng=no])
34 fi
35 if test x"$enable_lbximg" = x"yes"; then
36 DX_CHECK_LIBPNG([1.2], [have_libpng=yes])
37 fi
38 AM_CONDITIONAL([BUILD_LBXIMG], [test x"$have_libpng" = x"yes"])
39
40 AC_ARG_ENABLE([lbxgui],
41         [AS_HELP_STRING([--enable-lbxgui],
42                 [build the lbxgui tool (requires GTK+) [default=auto]])],
43         [enable_lbxgui=$enableval],
44         [enable_lbxgui=auto])
45
46 have_gtk=no
47 if test x"$enable_lbxgui" = x"auto"; then
48 DX_CHECK_GTK2([2.16], [have_gtk=yes], [have_gtk=no])
49 fi
50 if test x"$enable_lbxgui" = x"yes"; then
51 DX_CHECK_GTK2([2.16], [have_gtk=yes])
52 fi
53 AM_CONDITIONAL([BUILD_LBXGUI], [test x"$have_gtk" = x"yes"])
54
55 AC_CONFIG_FILES([
56         Makefile
57         lib/Makefile
58 ])
59
60 AC_OUTPUT