fixes for make the release ready
[nobug.git] / configure.ac
blob50240986339504c5f541f05e2c01e3a3aab4a005
1 AC_INIT([nobug], [200909.1])
2 AC_CONFIG_SRCDIR([src/nobug.h])
3 AC_CONFIG_AUX_DIR([scripts])
4 AC_CONFIG_MACRO_DIR([m4])
5 AM_INIT_AUTOMAKE
6 AC_PREREQ(2.59)
8 AC_COPYRIGHT([
9  This file is part of the NoBug debugging library.
11  Copyright (C) 2007, 2008, Christian Thaeter <chth@gmx.net>
13  This program is free software; you can redistribute it and/or modify
14  it under the terms of the GNU General Public License as published by
15  the Free Software Foundation; either version 2 of the License, or
16  (at your option) any later version.
18  This program is distributed in the hope that it will be useful,
19  but WITHOUT ANY WARRANTY; without even the implied warranty of
20  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  GNU General Public License for more details.
23  You should have received a copy of the GNU General Public License
24  along with this program; if not, contact Christian Thaeter <ct@pipapo.org>.
27 AC_PROG_CC_C99
28 AM_PROG_CC_C_O
29 AC_STDC_HEADERS
30 AC_PROG_LIBTOOL
31 ACX_PTHREAD
32 AM_CONDITIONAL([HAVE_THREADING], [test x"$acx_pthread_ok" = xyes])
33 AC_CHECK_HEADER([execinfo.h], AC_DEFINE(HAVE_EXECINFO_H))
35 PKG_HAVE_DEFINE_WITH_MODULES(VALGRIND, [valgrind])
37 AC_CONFIG_FILES([nobug.pc nobugmt.pc])
39 AC_CONFIG_FILES(Makefile)
40 AC_OUTPUT