This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Be more lenient in the case libsunmath cannot be found.
[perl5.git] / ext / ByteLoader / Makefile.PL
index 4aabe79..c3cfcc7 100644 (file)
@@ -1,10 +1,9 @@
 use ExtUtils::MakeMaker;
-# See lib/ExtUtils/MakeMaker.pm for details of how to influence
-# the contents of the Makefile that is written.
+
 WriteMakefile(
-    'NAME'     => 'ByteLoader',
-    'VERSION_FROM' => 'ByteLoader.pm', # finds $VERSION
-    'LIBS'     => [''],   # e.g., '-lm' 
-    'DEFINE'   => '',     # e.g., '-DHAVE_SOMETHING' 
-    'INC'      => '-I$(PERL_SRC)',     # e.g., '-I/usr/include/other' 
+    NAME               => 'ByteLoader',
+    VERSION_FROM       => 'ByteLoader.pm',
+    XSPROTOARG         => '-noprototypes',
+    MAN3PODS           => {},     # Pods will be built by installman.
+    OBJECT             => 'byterun$(OBJ_EXT) ByteLoader$(OBJ_EXT)',
 );