1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
--- Makefile.PL.orig Tue Dec 11 11:59:35 2001
+++ Makefile.PL Tue Dec 11 11:59:41 2001
@@ -4,8 +4,8 @@
WriteMakefile(
'NAME' => 'Shout',
'VERSION_FROM' => 'Shout.pm', # finds $VERSION
- 'LIBS' => ['-lshout'], # e.g., '-lm'
+ 'LIBS' => ['-L/usr/local/lib -lshout'], # e.g., '-lm'
'DEFINE' => '', # e.g., '-DHAVE_SOMETHING'
- 'INC' => '', # e.g., '-I/usr/include/other'
+ 'INC' => '-I/usr/local/include', # e.g., '-I/usr/include/other'
'MYEXTLIB' => ''
);
--- MANIFEST.orig Tue Dec 11 12:43:44 2001
+++ MANIFEST Tue Dec 11 12:43:49 2001
@@ -3,7 +3,5 @@
Makefile.PL
Shout.pm
Shout.xs
-example.pl
-example2.pl
test.pl
typemap
|