[grisbi-cvs] grisbi Makefile.am,1.20,1.21 configure.in,1.85,1.86
Pierre Biava
pbiava at users.sourceforge.net
Tue Feb 23 22:36:46 CET 2010
- Previous message: [grisbi-cvs] grisbi/po es.po,1.165,1.166
- Next message: [grisbi-cvs] grisbi/po cs.po, 1.92, 1.93 da.po, 1.98, 1.99 de.po, 1.172, 1.173 el.po, 1.62, 1.63 eo.po, 1.55, 1.56 es.po, 1.166, 1.167 fa.po, 1.85, 1.86 fr.po, 1.230, 1.231 grisbi.pot, 1.133, 1.134 he.po, 1.91, 1.92 it.po, 1.91, 1.92 nl.po, 1.90, 1.91 pl.po, 1.96, 1.97 pt_BR.po, 1.93, 1.94 ro.po, 1.92, 1.93 ru.po, 1.90, 1.91 zh_CN.po, 1.86, 1.87
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/grisbi/grisbi
In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv14622
Modified Files:
Makefile.am configure.in
Log Message:
fixed bug 968 and modification files configure.in and makefiles
Index: Makefile.am
===================================================================
RCS file: /cvsroot/grisbi/grisbi/Makefile.am,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -d -r1.20 -r1.21
--- Makefile.am 21 Dec 2009 17:15:16 -0000 1.20
+++ Makefile.am 23 Feb 2010 21:36:44 -0000 1.21
@@ -11,3 +11,5 @@
windows_installer.nsi\
$(man_MANS)
+
+ACLOCAL_AMFLAGS = -I macros
Index: configure.in
===================================================================
RCS file: /cvsroot/grisbi/grisbi/configure.in,v
retrieving revision 1.85
retrieving revision 1.86
diff -u -d -r1.85 -r1.86
--- configure.in 20 Feb 2010 08:53:51 -0000 1.85
+++ configure.in 23 Feb 2010 21:36:44 -0000 1.86
@@ -1,16 +1,11 @@
-AC_INIT(src/main.c)
+AC_INIT(grisbi,0.6.0)
+AC_CONFIG_SRCDIR(src/main.c)
AM_CONFIG_HEADER(config.h)
-AM_INIT_AUTOMAKE(grisbi,0.6.0)
-AM_ACLOCAL_INCLUDE(macros)
+AM_INIT_AUTOMAKE([-Wall foreign])
AM_MAINTAINER_MODE
AC_GNU_SOURCE
-PACKAGE=grisbi
-VERSION=0.6.0
-AC_SUBST(PACKAGE)
-AC_SUBST(VERSION)
-
dnl Standard checks
AC_ISC_POSIX
AC_PROG_CC
@@ -21,7 +16,7 @@
AC_SUBST(lt_prog_compiler_wl)
dnl Check if we have backtrace support
AC_CHECK_FUNCS(backtrace)
-AC_CONFIG_MACRO_DIR([m4])
+AC_CONFIG_MACRO_DIR([macros])
dnl Check for NLS support.
ALL_LINGUAS="cs da de el eo es fa fr he it nl pl pt_BR ro ru zh_CN"
@@ -32,7 +27,7 @@
dnl
dnl Standard GTK checks
dnl
-PKG_CHECK_MODULES(GTK, gtk+-2.0 >= 2.2.0 glib-2.0 >= 2.2)
+PKG_CHECK_MODULES(GTK, [gtk+-2.0 >= 2.2.0 glib-2.0 >= 2.2 gmodule-2.0 >= 2.2])
LDFLAGS="${LDFLAGS} ${GTK_LIBS}"
CFLAGS="${CFLAGS} ${GTK_CFLAGS}"
@@ -44,8 +39,8 @@
AC_MSG_CHECKING(whether GLib supports loadable modules)
ac_save_CFLAGS="$CFLAGS"
ac_save_LIBS="$LIBS"
-CFLAGS="$CFLAGS $GLIB_CFLAGS"
-LIBS="$GLIB_LIBS $LIBS"
+CFLAGS="$CFLAGS $GTK_CFLAGS"
+LIBS="$GTK_LIBS $LIBS"
AC_TRY_RUN([
#include <glib.h>
#include <gmodule.h>
@@ -77,7 +72,8 @@
dnl balance estimate
dnl
AC_ARG_WITH(balance_estimate,
-[ --with-balance-estimate add the support of balance estimate.],
+ AC_HELP_STRING([--with-balance-estimate],
+ [add the support of balance estimate.]),
[
AC_DEFINE(ENABLE_BALANCE_ESTIMATE, 1, [Define if balance estimate is enabled])
])
@@ -86,7 +82,8 @@
dnl check whether plugins should be enabled and, if they should be,
dnl
AC_ARG_WITH(plugins,
-[ --with-plugins support plugins.],
+ AC_HELP_STRING([--with-plugins],
+ [support plugins.]),
[
case "$withval" in
"" | y | ye | yes )
@@ -147,7 +144,8 @@
dnl
AC_CHECK_HEADER(CUnit/Basic.h,,nocunit=true)
AC_ARG_WITH(cunit,
- [ --with-cunit build grisbi with cunit tests [default=without]],
+ AC_HELP_STRING([--with-cunit],
+ [build grisbi with cunit tests [default=without]]),
[build_cunit=$withval],
[build_cunit=no]
)
@@ -172,9 +170,10 @@
dnl
AC_CHECK_HEADER(libofx/libofx.h,,noofx=true)
AC_ARG_WITH(ofx,
- [ --without-ofx build grisbi without ofx support [default=with]],
- [build_ofx=$withval],
- [build_ofx=yes]
+ AC_HELP_STRING([--without-ofx],
+ [build grisbi without ofx support [default=with]]),
+ [build_ofx=$withval],
+ [build_ofx=yes]
)
if test x$build_ofx != xno
then
- Previous message: [grisbi-cvs] grisbi/po es.po,1.165,1.166
- Next message: [grisbi-cvs] grisbi/po cs.po, 1.92, 1.93 da.po, 1.98, 1.99 de.po, 1.172, 1.173 el.po, 1.62, 1.63 eo.po, 1.55, 1.56 es.po, 1.166, 1.167 fa.po, 1.85, 1.86 fr.po, 1.230, 1.231 grisbi.pot, 1.133, 1.134 he.po, 1.91, 1.92 it.po, 1.91, 1.92 nl.po, 1.90, 1.91 pl.po, 1.96, 1.97 pt_BR.po, 1.93, 1.94 ro.po, 1.92, 1.93 ru.po, 1.90, 1.91 zh_CN.po, 1.86, 1.87
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the cvs
mailing list