File: build-system-fix

package info (click to toggle)
matchbox-common 0.9.1%2Bgit20070606-1.1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 300 kB
  • sloc: makefile: 50; sh: 13
file content (13 lines) | stat: -rw-r--r-- 451 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
Description: Fix build system check on whether libmatchbox is linked against libpng
Author: Moray Allan <moray@debian.org>
--- a/configure.ac
+++ b/configure.ac
@@ -33,7 +33,7 @@
 PKG_CHECK_MODULES(LIBMB, libmb >= 1.1,, AC_MSG_ERROR([*** libmb required and not found ***]))
 
 # below is quite bad ...
-if $PKG_CONFIG --libs libmb | grep png ; then
+if $PKG_CONFIG --libs --static libmb | grep png ; then
    found_png="yes"
 else
    found_png="no"