fixes
[staptrace.git] / configure.ac
1 dnl Process this file with autoconf to produce a configure script.
2 dnl Configure input file for staptrace.                     -*-autoconf-*-
3 dnl 
4 dnl Process this file with automake to create Makefile.in
5 dnl 
6 dnl Copyright (C) 2010 Free Software Foundation, Inc.
7 dnl 
8 dnl This program is free software; you can redistribute it and/or modify
9 dnl it under the terms of the GNU General Public License as published by
10 dnl the Free Software Foundation; either version 3 of the License, or
11 dnl (at your option) any later version.
12 dnl 
13 dnl This program is distributed in the hope that it will be useful,
14 dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
15 dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 dnl GNU General Public License for more details.
17 dnl 
18 dnl You should have received a copy of the GNU General Public License
19 dnl along with this program.  If not, see <http://www.gnu.org/licenses/>.
20
21 AC_INIT([stap trace],[0.1],[http://bugzilla.redhat.com/bugzilla/],[staptrace])
22
23 AC_CONFIG_AUX_DIR([config])
24 AC_CONFIG_FILES([config/Makefile])
25
26 AC_PREREQ(2.63)                 dnl Minimum Autoconf version required.
27
28 dnl We use GNU make extensions; automake 1.10 defaults to -Wportability.
29 AM_INIT_AUTOMAKE([foreign -Wno-portability dist-xz no-dist-gzip])
30 AM_MAINTAINER_MODE
31
32 AC_CONFIG_FILES([Makefile])
33 AC_CONFIG_HEADERS([config.h])
34
35 dnl The RPM spec file.  We substitute a few values in the file.
36 AC_CONFIG_FILES([staptrace.spec:config/staptrace.spec.in])
37
38 AC_PROG_CC
39
40 AC_CONFIG_FILES([src/Makefile])
41
42 AC_OUTPUT