From 6cb6efdc655c8932590696e611f1cca96e1ed807 Mon Sep 17 00:00:00 2001 From: John Darrington Date: Wed, 9 Jun 2010 20:22:43 +0200 Subject: [PATCH] perl-module/Makefile.PL: Change DLEXT to SO Apparently the former is for dynamically loaded modules, whereas the latter is for shared libraries. So SO is appropriate here. Thanks to Jeremy Lavergne for reporting this. --- perl-module/Makefile.PL | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perl-module/Makefile.PL b/perl-module/Makefile.PL index 56b8a930ce..a3b7b465ad 100644 --- a/perl-module/Makefile.PL +++ b/perl-module/Makefile.PL @@ -22,7 +22,7 @@ WriteMakefile( (ABSTRACT_FROM => 'lib/PSPP.pm', # retrieve abstract from module AUTHOR => 'John Darrington ') : ()), INC => "-I $Locations{SourceDir} -I $Locations{SourceDir}/src -I $Locations{SourceDir}/gl -I $Locations{BuildDir}/gl -I $Locations{BuildDir}", - MYEXTLIB => "$Locations{BuildDir}/src/.libs/libpspp-core.\$(DLEXT)", + MYEXTLIB => "$Locations{BuildDir}/src/.libs/libpspp-core.\$(SO)", MAN3PODS => {"lib/PSPP.pm", "\$(INST_MAN3DIR)/PSPP.3pm", "Examples.pod", "\$(INST_MAN3DIR)/PSPP::Examples.3pm"} ); -- 2.30.2