[Libburn] libburn-1.pc is missing -lisofs

Todd Kulesza todd@dropline.net
Mon, 19 Jan 2004 10:45:44 -0500


This is a multi-part message in MIME format.
--------------050307030609060308090707
Content-Type: text/plain; charset=us-ascii; format=flowed
Content-Transfer-Encoding: 7bit

The libburn-1.pc file installed by libburn lacks the -lisofs flag 
required to link programs with libisofs.  The included patch resolves this.

Todd

--------------050307030609060308090707
Content-Type: text/x-patch;
 name="pkgconfig.patch"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
 filename="pkgconfig.patch"

Index: libburn-1.pc.in
===================================================================
RCS file: /cvs/burn/burn/libburn-1.pc.in,v
retrieving revision 1.2
diff -p -u -r1.2 libburn-1.pc.in
--- libburn-1.pc.in	31 Jul 2003 05:32:38 -0000	1.2
+++ libburn-1.pc.in	19 Jan 2004 15:42:21 -0000
@@ -7,5 +7,5 @@ Name: libburn
 Description: Disc reading/writing library
 Version: @VERSION@
 Requires: 
-Libs: -L${libdir} -lburn @THREAD_LIBS@
+Libs: -L${libdir} -lburn -lisofs @THREAD_LIBS@
 Cflags: -I${includedir}/libburn/@BURN_MAJOR_VERSION@

--------------050307030609060308090707--