ports/print/perlftlib/files/patch-ac
Satoshi Taoka ed0a8c97dc The directory of freetype's header files was changed
to /usr/local/include/freetype/, then perlftlib cannot find freetype.h.
This problem is fixed.

Submitted by: Masayuki FUKUI <fukui@sonic.nm.fujitsu.co.jp>
              jihuang@csie.nctu.edu.tw
Obtained from: direct mails
2001-01-21 14:25:57 +00:00

10 lines
451 B
Text

--- FreeType/Makefile.PL.orig Wed Jan 10 14:50:46 2001
+++ FreeType/Makefile.PL Wed Jan 10 14:51:19 2001
@@ -6,5 +6,5 @@
'VERSION_FROM' => 'FreeType.pm', # finds $VERSION
'LIBS' => ['-L/usr/local/lib -lttf'], # e.g., '-lm'
'DEFINE' => '', # e.g., '-DHAVE_SOMETHING'
- 'INC' => '-I/usr/local/include', # e.g., '-I/usr/include/other'
+ 'INC' => '-I/usr/local/include/freetype', # e.g., '-I/usr/include/other'
);