Patch to update pkg-config from Tilman Sauerbeck <tilman@code-monkey.de>.

SVN revision: 6890
This commit is contained in:
jeoparde 2003-05-03 08:55:33 +00:00 committed by jeoparde
parent 98c58eb7f9
commit 83b5a05e2f
2 changed files with 16 additions and 3 deletions

View File

@ -584,6 +584,19 @@ AC_SUBST(eet_libs)
AC_SUBST(edb_cflags)
AC_SUBST(edb_libs)
dnl Build the list of required libs for evas.pc.in. Only works for libs
dnl which install a .pc file of course
if test "x$eet_libs" != "x"; then
requirements=eet
fi
if test "x$edb_libs" != "x"; then
requirements="$requirements edb"
fi
if test "x$png_libs" != "x"; then
requirements="$requirements libpng12"
fi
AC_SUBST(requirements)
AC_SUBST(ENGINE_SOFTWARE_X11_PRG)
AC_SUBST(ENGINE_DIRECTFB_PRG)
AC_SUBST(ENGINE_FB_PRG)

View File

@ -5,7 +5,7 @@ includedir=@includedir@
Name: evas
Description: Evas canvas display library
Requires:
Requires: @requirements@
Version: @VERSION@
Libs: -L${libdir} -levas @LDFLAGS@ @x_libs@ @freetype_libs@ @png_libs@ @jpeg_libs@ @eet_libs@ @edb_libs@
Cflags: -I${includedir}
Libs: -L${libdir} -levas @x_libs@ @freetype_libs@ @jpeg_libs@
Cflags: -I${includedir} @freetype_cflags@ @x_cflags@