Blame SOURCES/freetype-2.8-multilib.patch

20e524
--- freetype-2.9/builds/unix/freetype-config.in
20e524
+++ freetype-2.9/builds/unix/freetype-config.in
20e524
@@ -13,45 +13,25 @@ LC_ALL=C
20e524
 export LC_ALL
20e524
 
20e524
 
20e524
-# if `pkg-config' is available, use values from `freetype2.pc'
20e524
-%PKG_CONFIG% --atleast-pkgconfig-version 0.24 >/dev/null 2>&1
20e524
-if test $? -eq 0 ; then
20e524
-  # note that option `--variable' is not affected by the
20e524
-  # PKG_CONFIG_SYSROOT_DIR environment variable
20e524
-  if test "x$SYSROOT" != "x" ; then
20e524
-    PKG_CONFIG_SYSROOT_DIR="$SYSROOT"
20e524
-    export PKG_CONFIG_SYSROOT_DIR
20e524
-  fi
20e524
-
20e524
-  prefix=`%PKG_CONFIG% --variable prefix freetype2`
20e524
-  exec_prefix=`%PKG_CONFIG% --variable exec_prefix freetype2`
20e524
-
20e524
-  includedir=`%PKG_CONFIG% --variable includedir freetype2`
20e524
-  libdir=`%PKG_CONFIG% --variable libdir freetype2`
20e524
-
20e524
-  version=`%PKG_CONFIG% --modversion freetype2`
20e524
-
20e524
-  cflags=`%PKG_CONFIG% --cflags freetype2`
20e524
-  dynamic_libs=`%PKG_CONFIG% --libs freetype2`
20e524
-  static_libs=`%PKG_CONFIG% --static --libs freetype2`
20e524
-else
20e524
-  prefix="%prefix%"
20e524
-  exec_prefix="%exec_prefix%"
20e524
-
20e524
-  includedir="%includedir%"
20e524
-  libdir="%libdir%"
20e524
-
20e524
-  version=%ft_version%
20e524
-
20e524
-  cflags="-I${SYSROOT}$includedir/freetype2"
20e524
-  dynamic_libs="-lfreetype"
20e524
-  static_libs="%LIBSSTATIC_CONFIG%"
20e524
-  if test "${SYSROOT}$libdir" != "/usr/lib"   &&
20e524
-     test "${SYSROOT}$libdir" != "/usr/lib64" ; then
20e524
-    libs_L="-L${SYSROOT}$libdir"
20e524
-  fi
20e524
+# note that option `--variable' is not affected by the
20e524
+# PKG_CONFIG_SYSROOT_DIR environment variable
20e524
+if test "x$SYSROOT" != "x" ; then
20e524
+  PKG_CONFIG_SYSROOT_DIR="$SYSROOT"
20e524
+  export PKG_CONFIG_SYSROOT_DIR
20e524
 fi
20e524
 
20e524
+prefix=`pkgconf --variable prefix freetype2`
20e524
+exec_prefix=`pkgconf --variable exec_prefix freetype2`
20e524
+
20e524
+includedir=`pkgconf --variable includedir freetype2`
20e524
+libdir=`pkgconf --variable libdir freetype2`
20e524
+
20e524
+version=`pkgconf --modversion freetype2`
20e524
+
20e524
+cflags=`pkgconf --cflags freetype2`
20e524
+dynamic_libs=`pkgconf --libs freetype2`
20e524
+static_libs=`pkgconf --static --libs freetype2`
20e524
+
20e524
 orig_prefix=$prefix
20e524
 orig_exec_prefix=$exec_prefix
20e524