Blame SOURCES/freetype-2.8-multilib.patch

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