[grisbi-cvs] [git push]Grisbi branch master updated. upstream_version_1_0_0-169-geeb571c
Rémi Cardona
noreply at sourceforge.net
Tue Mar 18 22:52:21 CET 2014
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Grisbi".
The branch, master has been updated
via eeb571cfd2e42b4cab3a7212230840fa19f11562 (commit)
from f918e9f341e52e4ed0d56255e2a1d460486433c4 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://grisbi.git.sourceforge.net/git/gitweb.cgi?p=grisbi/code;a=commitdiff;h=
commit eeb571cfd2e42b4cab3a7212230840fa19f11562
Author: Rémi Cardona <remi at gentoo.org>
Date: Tue Mar 18 22:50:36 2014 +0100
build: Add missing -lm to link flags
Broken by yours truly in 689a516eed. v1 of the patch was fine.
diff --git a/configure.ac b/configure.ac
index 0260109..8a4fc81 100644
--- a/configure.ac
+++ b/configure.ac
@@ -40,6 +40,7 @@ m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
dnl Initialize libtool
LT_INIT
+LT_LIB_M
dnl ================================================================
dnl Check for NLS support.
@@ -56,8 +57,6 @@ dnl ================================================================
dnl Main Grisbi libraries
dnl ================================================================
-LT_LIB_M
-
grisbi_modules="gtk+-3.0 >= 3.0.12 glib-2.0 >= 2.28 libgsf-1 >= 1.14"
PKG_CHECK_MODULES(ZLIB, [zlib], have_zlib_pc=yes, have_zlib_pc=no)
if test "$have_zlib_pc" = "yes"; then
@@ -66,10 +65,12 @@ fi
PKG_CHECK_MODULES(GRISBI, [$grisbi_modules])
if test "$have_zlib_pc" = "no"; then
AC_CHECK_LIB([z],[gzwrite])
- GRISBI_LIBS="$LIBM $GRISBI_LIBS"
AC_SUBST(GRISBI_LIBS)
fi
+# $LIBM courtesy of LT_LIB_M
+GRISBI_LIBS="$LIBM $GRISBI_LIBS"
+
dnl ================================================================
dnl Defined if Grisbi is a development version
dnl ================================================================
-----------------------------------------------------------------------
Summary of changes:
configure.ac | 7 ++++---
1 files changed, 4 insertions(+), 3 deletions(-)
hooks/post-receive
--
Grisbi
More information about the cvs
mailing list