Hi,
There is a patch needed to build fvwm in Fedora 15. It fixes a linking
issue related to stricter linking.
https://pkgs.fedoraproject.org/gitweb/?p=fvwm.git;a=blob_plain;f=fvwm-0005-Explicitly-link-against-fontconfig.patch;h=4397014a5f1505a87b8bd0fd34846e8e32b5ed62;hb=f46958fb375b7347dfcf9caf65af1c59d23e557d
Thanks,
Adam
Here is the patch inline, from Peter Lemenkov <[email protected]>:
configure.ac | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/configure.ac b/configure.ac
index 8b5cea5..b5ddb7f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -698,6 +698,10 @@ if test ! x"$with_xft" = xno; then
AM_CHECK_FC(1.0.1)
if test x"$no_fc" = x ; then
have_fontconfig=yes
+ fontconfig_CFLAGS=`$PKG_CONFIG --cflags fontconfig`
+ fontconfig_LIBS=`$PKG_CONFIG --libs fontconfig`
+ CFLAGS="$CFLAGS $fontconfig_CFLAGS"
+ LIBS="$LIBS $fontconfig_LIBS"
else
have_fontconfig=no
problem_xft=": Can't detect fontconfig >= 1.0.1"
--
1.7.4.1