source: ttyvaders/trunk/configure.ac @ 1202

Last change on this file since 1202 was 1081, checked in by Sam Hocevar, 17 years ago
  • Remove debian/ and autotools/ from the repository.
  • Property svn:keywords set to Id
File size: 1.2 KB
Line 
1# $Id: configure.ac 1081 2006-09-22 16:27:37Z sam $
2
3AC_INIT(ttyvaders,0.0cvs-20031110)
4
5AC_PREREQ(2.50)
6AC_CONFIG_SRCDIR(src/main.c)
7AC_CONFIG_AUX_DIR(autotools)
8AC_CANONICAL_SYSTEM
9
10AM_INIT_AUTOMAKE(ttyvaders,0.0cvs-20031110)
11AM_CONFIG_HEADER(config.h)
12
13AM_PROG_CC_C_O
14AC_PROG_CPP
15
16dnl AC_PROG_EGREP only exists in autoconf 2.54+, so we use AC_EGREP_CPP right
17dnl now otherwise it might be set in an obscure if statement. Same thing for
18dnl PKG_PROG_PKG_CONFIG which needs to be called first.
19AC_EGREP_CPP(yes, foo)
20PKG_PROG_PKG_CONFIG()
21
22dnl Don't let pkg-config fuck our cross-compilation environment
23m4_pattern_allow([^PKG_CONFIG_LIBDIR$])
24if test "$build" != "$host" -a "${PKG_CONFIG_LIBDIR}" = ""; then
25  export PKG_CONFIG_LIBDIR=/dev/null
26fi
27
28CACA="no"
29PKG_CHECK_MODULES(caca, caca,
30 [CACA="yes"],
31 [AC_MSG_RESULT(no)
32  AC_MSG_ERROR([you need libcaca version 0.99 or later])])
33
34# Optimizations
35CFLAGS="${CFLAGS} -g -O2 -fno-strength-reduce -fomit-frame-pointer"
36# Code qui fait des warnings == code de porc == deux baffes dans ta gueule
37CFLAGS="${CFLAGS} -Wall -Wpointer-arith -Wcast-align -Wcast-qual -Wstrict-prototypes -Wshadow -Waggregate-return -Wmissing-prototypes -Wnested-externs -Wsign-compare"
38
39AC_OUTPUT([
40  Makefile
41  src/Makefile
42  data/Makefile
43])
44
Note: See TracBrowser for help on using the repository browser.