Fix ao-bitbang examples to not have . in the first column
[fw/altos] / configure.ac
1 dnl
2 dnl  Copyright © 2008,2009 Keith Packard <keithp@keithp.com>
3 dnl
4 dnl  This program is free software; you can redistribute it and/or modify
5 dnl  it under the terms of the GNU General Public License as published by
6 dnl  the Free Software Foundation; either version 2 of the License, or
7 dnl  (at your option) any later version.
8 dnl
9 dnl  This program is distributed in the hope that it will be useful, but
10 dnl  WITHOUT ANY WARRANTY; without even the implied warranty of
11 dnl  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 dnl  General Public License for more details.
13 dnl
14 dnl  You should have received a copy of the GNU General Public License along
15 dnl  with this program; if not, write to the Free Software Foundation, Inc.,
16 dnl  59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
17 dnl
18 dnl Process this file with autoconf to create configure.
19
20 AC_INIT(COPYING)
21
22 AM_INIT_AUTOMAKE(altos, 0.1)
23 AM_MAINTAINER_MODE
24
25 dnl ==========================================================================
26
27 AM_CONFIG_HEADER(config.h)
28
29 AC_PROG_CC
30 AC_PROG_INSTALL
31 AC_PROG_LN_S
32 AC_PROG_RANLIB
33 PKG_PROG_PKG_CONFIG
34
35 CFLAGS="-g"
36 WARN_CFLAGS=""
37 if test "x$GCC" = "xyes"; then
38         WARN_CFLAGS="-Wall -Wpointer-arith -Wstrict-prototypes \
39         -Wmissing-prototypes -Wmissing-declarations \
40         -Wnested-externs -fno-strict-aliasing"
41         AC_DEFINE_UNQUOTED(HAVE_WARNING_CPP_DIRECTIVE,1,
42         [Can use #warning in C files])
43 fi
44 AC_SUBST(WARN_CFLAGS)
45
46 AC_CHECK_HEADERS(flite/flite.h,HAVE_FLITE_H=yes,HAVE_FLITE_H=no)
47 AC_CHECK_LIB(flite, flite_init,HAVE_LIBFLITE=yes,HAVE_LIBFLITE=no,-lm)
48
49 if test "x$HAVE_FLITE_H" = "xyes" -a "x$HAVE_LIBFLITE" = "xyes"; then
50         AC_DEFINE(HAVE_FLITE,1,[Define if the flite library is usable])
51         AC_SUBST(FLITE_LIBS,"-lflite_cmu_us_kal16 -lflite_usenglish -lflite_cmulex -lflite -lm")
52         AC_SUBST(FLITE_INCS,-Iflite)
53 fi
54 AM_CONDITIONAL(USE_FLITE,test "x$HAVE_FLITE_H" = "xyes" -a "x$HAVE_LIBFLITE" = "xyes")
55
56 AC_CHECK_PROG([HAVE_SDCC], [sdcc], yes, no)
57 if test "x$HAVE_SDCC" = "xno"; then
58         AC_MSG_ERROR([Please install sdcc to build AltOs])
59 fi
60
61 AC_CHECK_PROG([HAVE_NICKLE], [nickle], yes, no)
62 if test "x$HAVE_NICKLE" = "xno"; then
63         AC_MSG_ERROR([Please install nickle to build AltOs])
64 fi
65
66 AC_CHECK_LIB(readline, readline)
67
68 PKG_CHECK_MODULES([GNOME], [gtk+-2.0 libglade-2.0 gconf-2.0])
69
70 PKG_CHECK_MODULES([LIBUSB], [libusb-1.0])
71
72 PKG_CHECK_MODULES([ALSA], [alsa])
73
74 AC_OUTPUT([
75 Makefile
76 ao-view/Makefile
77 ao-tools/Makefile
78 ao-tools/lib/Makefile
79 ao-tools/ao-rawload/Makefile
80 ao-tools/ao-dbg/Makefile
81 ao-tools/ao-bitbang/Makefile
82 ao-tools/ao-eeprom/Makefile
83 ao-tools/ao-load/Makefile
84 ao-utils/Makefile
85 ])