Blame SOURCES/libcroco-0.6.1-multilib.patch

7c671b
--- libcroco-0.6.1/croco-config.in.multilib	2006-03-05 16:57:01.000000000 -0500
7c671b
+++ libcroco-0.6.1/croco-config.in	2006-05-23 13:54:34.000000000 -0400
7c671b
@@ -1,10 +1,11 @@
7c671b
 #! /bin/sh
7c671b
 
7c671b
-prefix=@prefix@
7c671b
-exec_prefix=@exec_prefix@
7c671b
+name=libcroco-0.6
7c671b
+prefix=`pkg-config --variable prefix $name`
7c671b
+exec_prefix=`pkg-config --variable exec_prefix $name`
7c671b
 exec_prefix_set=no
7c671b
-includedir=@includedir@
7c671b
-libdir=@libdir@
7c671b
+includedir=`pkg-config --variable includedir $name`
7c671b
+libdir=`pkg-config --variable libdir $name`
7c671b
 
7c671b
 usage()
7c671b
 {
7c671b
@@ -59,7 +60,7 @@
7c671b
 	;;
7c671b
 
7c671b
     --version)
7c671b
-	echo @VERSION@
7c671b
+	pkg-config --modversion $name
7c671b
 	exit 0
7c671b
 	;;
7c671b
 
7c671b
@@ -68,11 +69,11 @@
7c671b
 	;;
7c671b
 
7c671b
     --cflags)
7c671b
-	echo @CROCO_CFLAGS@ @GLIB2_CFLAGS@ @LIBXML2_CFLAGS@
7c671b
+	pkg-config --cflags $name
7c671b
        	;;
7c671b
 
7c671b
     --libs)
7c671b
-	echo @CROCO_LIBS@ @GLIB2_LIBS@ @LIBXML2_LIBS@
7c671b
+	pkg-config --libs $name
7c671b
        	;;
7c671b
 
7c671b
     *)