aboutsummaryrefslogtreecommitdiff
path: root/Perl
diff options
context:
space:
mode:
authorlecoanet2004-04-20 14:56:55 +0000
committerlecoanet2004-04-20 14:56:55 +0000
commit572549f8aefb1517a2b86808fa0fea29b4053c01 (patch)
tree268a82cf4d5f150cc77e2a2b55c561ea557413ea /Perl
parent14d7c44e20f6e334751bcca12b985220d5ebe5fd (diff)
downloadtkzinc-572549f8aefb1517a2b86808fa0fea29b4053c01.zip
tkzinc-572549f8aefb1517a2b86808fa0fea29b4053c01.tar.gz
tkzinc-572549f8aefb1517a2b86808fa0fea29b4053c01.tar.bz2
tkzinc-572549f8aefb1517a2b86808fa0fea29b4053c01.tar.xz
Fix a typo in Zinc.xs
Suppress the use of pthreads. It is really not needed, should a problem arise again, it must be fixed in an other way Added a perl/Tk path to INC thanks to Mike Castle.
Diffstat (limited to 'Perl')
-rw-r--r--Perl/Makefile.PL6
1 files changed, 3 insertions, 3 deletions
diff --git a/Perl/Makefile.PL b/Perl/Makefile.PL
index 150a32e..d679879 100644
--- a/Perl/Makefile.PL
+++ b/Perl/Makefile.PL
@@ -56,12 +56,12 @@ WriteMakefile(
'NAME' => 'Tk::Zinc',
'VERSION' => $VERSION,
'PREREQ_PM' => {Tk => 8.0},
- 'LIBS' => ['-L/usr/X11R6/lib -lXext -lX11 -lGL -lpthread -L.'],
+ 'LIBS' => ['-L/usr/X11R6/lib -lXext -lX11 -lGL -L.'],
'DEFINE' => &get_flags,
- 'INC' => "-I. -I$TkLibDir -I$TkLibDir/pTk",
+ 'INC' => "-I. -I$TkLibDir -I$TkLibDir/pTk $Tk::Config::inc",
'C' => [@C],
'XS_VERSION' => $Tk::Config::VERSION,
- 'XS' => {'Zinc.sx' => 'Zinc.c'},
+ 'XS' => {'Zinc.xs' => 'Zinc.c'},
'linkext' => {LINKTYPE => 'dynamic'},
'depend' => {'Zinc.o' => '$(O_FILES) Zinc.o'},
'LDFROM' => '$(O_FILES)',