configure.ac: Correctly reset $LIBS to not contain -lm.
authorSebastian Dröge <slomo@circular-chaos.org>
Sun, 9 Dec 2007 05:09:57 +0000 (05:09 +0000)
committerSebastian Dröge <slomo@circular-chaos.org>
Sun, 9 Dec 2007 05:09:57 +0000 (05:09 +0000)
Original commit message from CVS:
* configure.ac:
Correctly reset $LIBS to not contain -lm.

ChangeLog
configure.ac

index 348cc43..355e686 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2007-12-09  Sebastian Dröge  <slomo@circular-chaos.org>
 
+       * configure.ac:
+         Correctly reset $LIBS to not contain -lm.
+
+2007-12-09  Sebastian Dröge  <slomo@circular-chaos.org>
+
        Based on a patch by: Kwang Yul Seo <kwangyul dot seo at gmail dot com>
 
        * configure.ac:
@@ -7,7 +12,7 @@
          (gst_cairo_time_overlay_print_smpte_time):
          Fix compilation with MSVC by using gst_util_guint64_to_gdouble()
          and checking for rint() and implementing it ourself if it doesn't
-         exist.
+         exist. Fixes #497293.
 
 2007-12-09  Sebastian Dröge  <slomo@circular-chaos.org>
 
index 286161b..b4f76ce 100644 (file)
@@ -221,7 +221,7 @@ dnl *** checks for library functions ***
 LIBS_SAVE=$LIBS
 LIBS="$LIBS $LIBM"
 AC_CHECK_FUNCS(rint)
-$LIBS=$LIB_SAVE
+LIBS=$LIB_SAVE
 
 dnl Check for mmap (needed by electricfence plugin)
 AC_FUNC_MMAP