diff options
author | Pete Fritchman <petef@FreeBSD.org> | 2001-11-24 19:06:36 +0000 |
---|---|---|
committer | Pete Fritchman <petef@FreeBSD.org> | 2001-11-24 19:06:36 +0000 |
commit | 4c5e26eb618d46333e42d3ae4e6efdd26603a306 (patch) | |
tree | 4f346ddfa440d30d5d576d866c537addce048aaa /textproc/p5-XML-LibRSVG/files/patch-Makefile.PL | |
parent | Update to 0.10 (diff) |
Add p5-XML-LibRSVG-0.01, an interface to GNOME's librsvg
PR: 32143
Submitted by: Sergey Skvortsov <skv@protey.ru>
Notes
Notes:
svn path=/head/; revision=50492
Diffstat (limited to 'textproc/p5-XML-LibRSVG/files/patch-Makefile.PL')
-rw-r--r-- | textproc/p5-XML-LibRSVG/files/patch-Makefile.PL | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/textproc/p5-XML-LibRSVG/files/patch-Makefile.PL b/textproc/p5-XML-LibRSVG/files/patch-Makefile.PL new file mode 100644 index 000000000000..4da5696784f8 --- /dev/null +++ b/textproc/p5-XML-LibRSVG/files/patch-Makefile.PL @@ -0,0 +1,18 @@ +--- Makefile.PL.orig Wed Oct 31 02:03:02 2001 ++++ Makefile.PL Tue Nov 20 22:26:34 2001 +@@ -4,11 +4,11 @@ + + my %config; + +-$config{INC} = ''; +-$config{LIBS} = '-lpng'; ++$config{INC} = $ENV{INC}; ++$config{LIBS} = $ENV{LIBS}.' -lpng'; + +-chomp($config{INC} .= ' ' . `gtk-config --cflags`); +-chomp($config{LIBS} .= ' ' .`gtk-config --libs`); ++chomp($config{INC} .= ' ' . `gtk12-config --cflags`); ++chomp($config{LIBS} .= ' ' .`gtk12-config --libs`); + + chomp($config{INC} .= ' ' . `gdk-pixbuf-config --cflags`); + chomp($config{LIBS} .= ' ' . `gdk-pixbuf-config --libs`); |