"Fossies" - the Fresh Open Source Software Archive 
Member "regexxer-0.10/configure.ac" (6 Oct 2011, 1983 Bytes) of package /linux/privat/old/regexxer-0.10.tar.gz:
As a special service "Fossies" has tried to format the requested text file into HTML format (style:
standard) with prefixed line numbers.
Alternatively you can here
view or
download the uninterpreted source code file.
1 ## Copyright (c) 2004-2007 Daniel Elstner <daniel.kitta@gmail.com>
2 ##
3 ## This file is part of regexxer.
4 ##
5 ## regexxer is free software; you can redistribute it and/or modify
6 ## it under the terms of the GNU General Public License as published by
7 ## the Free Software Foundation; either version 2 of the License, or
8 ## (at your option) any later version.
9 ##
10 ## regexxer is distributed in the hope that it will be useful,
11 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 ## GNU General Public License for more details.
14 ##
15 ## You should have received a copy of the GNU General Public License
16 ## along with regexxer; if not, write to the Free Software Foundation, Inc.,
17 ## 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18
19 AC_INIT([regexxer], [0.10], [http://regexxer.sourceforge.net/bugs], [regexxer],
20 [http://regexxer.sourceforge.net/])
21 AC_PREREQ([2.59])
22
23 AC_CONFIG_SRCDIR([ui/regexxer.desktop.in])
24 AC_CONFIG_MACRO_DIR([m4])
25 AC_CONFIG_HEADERS([config.h])
26
27 AM_INIT_AUTOMAKE([1.10 -Wall gnu no-define nostdinc check-news dist-xz no-dist-gzip])
28 AC_ARG_VAR([ACLOCAL_FLAGS], [aclocal flags, e.g. -I <macro dir>])
29
30 AC_PROG_CC
31 AC_PROG_CXX
32
33 IT_PROG_INTLTOOL([0.35])
34 AC_SUBST([GETTEXT_PACKAGE], [regexxer])
35 AM_GNU_GETTEXT_VERSION([0.11])
36 AM_GLIB_GNU_GETTEXT
37
38 PKG_CHECK_MODULES([REGEXXER_MODULES],
39 [gtkmm-3.0 >= 3.0.0 glibmm-2.4 >= 2.27.94
40 gtksourceviewmm-3.0 >= 2.91.5])
41
42 DK_PKG_PATH_PROG([GDK_PIXBUF_CSOURCE], [gdk-pixbuf-2.0], [gdk-pixbuf-csource])
43 DK_PKG_PATH_PROG([GTK_UPDATE_ICON_CACHE], [gtk+-2.0], [gtk-update-icon-cache])
44
45 GLIB_GSETTINGS
46
47 AC_LANG([C++])
48
49 DK_ARG_ENABLE_WARNINGS([REGEXXER_WARNING_FLAGS],
50 [-Wall -w1 -Wno-long-long],
51 [-pedantic -Wall -Wextra -w1 -Wno-long-long],
52 [G GDK GTK PANGO ATK GLIBMM GDKMM ATKMM GTKMM])
53
54 AC_CONFIG_FILES([Makefile po/Makefile.in])
55 AC_OUTPUT