commit d92e8ce486b08c5697014a24abbdaa8f662dc542
parent f7d1b1c922a6d78268bd057e49e36bb396bcb8fe
Author: Colin Leroy <colin@colino.net>
Date: Fri, 11 Nov 2011 19:34:21 +0000
2011-11-11 [colin] 3.7.10cvs84
* configure.ac
Fix build on Fedora 16. -lm was probably pulled by something
else previously.
Diffstat:
3 files changed, 11 insertions(+), 1 deletion(-)
diff --git a/ChangeLog b/ChangeLog
@@ -1,3 +1,9 @@
+2011-11-11 [colin] 3.7.10cvs84
+
+ * configure.ac
+ Fix build on Fedora 16. -lm was probably pulled by something
+ else previously.
+
2011-11-11 [pawel] 3.7.10cvs83
* src/mainwindow.c
diff --git a/PATCHSETS b/PATCHSETS
@@ -4287,3 +4287,4 @@
( cvs diff -u -r 1.204.2.203 -r 1.204.2.204 src/prefs_common.c; ) > 3.7.10cvs81.patchset
( cvs diff -u -r 1.204.2.204 -r 1.204.2.205 src/prefs_common.c; ) > 3.7.10cvs82.patchset
( cvs diff -u -r 1.274.2.335 -r 1.274.2.336 src/mainwindow.c; cvs diff -u -r 1.83.2.179 -r 1.83.2.180 src/mimeview.c; cvs diff -u -r 1.20.2.34 -r 1.20.2.35 src/mimeview.h; cvs diff -u -r 1.395.2.437 -r 1.395.2.438 src/summaryview.c; ) > 3.7.10cvs83.patchset
+( cvs diff -u -r 1.654.2.4364 -r 1.654.2.4365 configure.ac; ) > 3.7.10cvs84.patchset
diff --git a/configure.ac b/configure.ac
@@ -12,7 +12,7 @@ MINOR_VERSION=7
MICRO_VERSION=10
INTERFACE_AGE=0
BINARY_AGE=0
-EXTRA_VERSION=83
+EXTRA_VERSION=84
EXTRA_RELEASE=
EXTRA_GTK2_VERSION=
@@ -182,6 +182,9 @@ esac
dnl Checks for iconv
AM_ICONV
+dnl floor and ceil are in -lm
+LIBS="$LIBS -lm"
+
dnl
dnl Check for bind_textdomain_codeset, including -lintl if GLib brings it in.
dnl