[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Gnash-commit] gnash ChangeLog macros/freetype.m4
From: |
Markus Gothe |
Subject: |
[Gnash-commit] gnash ChangeLog macros/freetype.m4 |
Date: |
Wed, 28 Nov 2007 23:51:47 +0000 |
CVSROOT: /sources/gnash
Module name: gnash
Changes by: Markus Gothe <nihilus> 07/11/28 23:51:47
Modified files:
. : ChangeLog
macros : freetype.m4
Log message:
--libs-only-l is bogus if you have it installed by default and
pkg-config is unaware of it.
It'll mismatch the --cflags.
CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.5002&r2=1.5003
http://cvs.savannah.gnu.org/viewcvs/gnash/macros/freetype.m4?cvsroot=gnash&r1=1.6&r2=1.7
Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.5002
retrieving revision 1.5003
diff -u -b -r1.5002 -r1.5003
--- ChangeLog 28 Nov 2007 23:18:42 -0000 1.5002
+++ ChangeLog 28 Nov 2007 23:51:47 -0000 1.5003
@@ -26,6 +26,8 @@
2007-11-28 Markus Gothe <address@hidden>
* backend/render_handler_ogl.cpp: boost::ref(this) -> *this.
+ * macros/freetype.m4: --libs-only-l is bogus if you have it
+ installed by default and pkg-config is unaware of it.
2007-11-28 Sandro Santilli <address@hidden>
Index: macros/freetype.m4
===================================================================
RCS file: /sources/gnash/gnash/macros/freetype.m4,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -b -r1.6 -r1.7
--- macros/freetype.m4 24 Nov 2007 16:47:10 -0000 1.6
+++ macros/freetype.m4 28 Nov 2007 23:51:47 -0000 1.7
@@ -83,7 +83,7 @@
dnl Look for the library
if test x$cross_compiling = xno; then
if test x"$PKG_CONFIG" != x -a x"${ac_cv_path_freetype_lib}" = x; then
- $PKG_CONFIG --exists freetype2 && ac_cv_path_freetype_lib=`$PKG_CONFIG
--libs-only-l freetype2`
+ $PKG_CONFIG --exists freetype2 && ac_cv_path_freetype_lib=`$PKG_CONFIG
--libs freetype2`
fi
fi