1 dnl Process this file with autoconf to produce a configure script.
4 AM_INIT_AUTOMAKE(gcalctool, 5.29.92)
5 AM_CONFIG_HEADER(config.h)
7 GNOME_MAINTAINER_MODE_DEFINES
8 m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
17 GNOME_COMPILE_WARNINGS(yes)
19 dnl ###########################################################################
21 dnl ###########################################################################
26 PKG_CHECK_MODULES(GCALCTOOL, [
27 gtk+-2.0 >= $GTK_REQUIRED
28 gconf-2.0 >= $GCONF_REQUIRED
34 PKG_CHECK_MODULES(GCALCCMD, [
40 dnl ###########################################################################
41 dnl Determine if a usable lex is available on this system
42 dnl ###########################################################################
45 if [[ "$LEX" != "flex" ]]; then
46 AC_MSG_ERROR(flex is required to create the gcalctool scanners)
49 dnl ###########################################################################
50 dnl Determine if a usable yacc is available on this system
51 dnl ###########################################################################
54 AC_CHECK_PROG(HAVE_YACC, $YACC, yes, no)
55 if [[ "$HAVE_YACC" = "no" ]]; then
56 AC_MSG_ERROR($YACC is not usable as yacc - consider using bison)
59 dnl ###########################################################################
60 dnl Internationalization
61 dnl ###########################################################################
63 IT_PROG_INTLTOOL([0.35.0])
64 GETTEXT_PACKAGE=gcalctool
65 AC_SUBST(GETTEXT_PACKAGE)
68 dnl ###########################################################################
70 dnl ###########################################################################
74 dnl ###########################################################################
76 dnl ###########################################################################