diff options
author | Andy Dougherty <doughera@lafcol.lafayette.edu> | 1995-06-06 01:17:58 +0000 |
---|---|---|
committer | Andy Dougherty <doughera@lafcol.lafayette.edu> | 1995-06-06 01:17:58 +0000 |
commit | 005c1a0e007f6f2f3efe461d6a5930a88ccb88fb (patch) | |
tree | 176ab6c84a969d3a3254ab0a653d72a12022c12b /ext | |
parent | c296029969658ed2c8d9a223d4b09026463ca970 (diff) | |
download | perl-005c1a0e007f6f2f3efe461d6a5930a88ccb88fb.tar.gz |
This is my patch patch.1k for perl5.001.
This patch brings you MakeMaker-4.15. This is MakeMaker-4.13 plus
patches to provide the LD_RUN_PATH environment variable for building
shared libraries, and the appropriate -I flags for running xsubpp
while building perl.
To apply, change to your perl directory, run the command above, then
apply with
patch -p1 -N < thispatch.
After you apply this patch, you should apply patch.1l.
Patch and enjoy,
Andy Dougherty doughera@lafcol.lafayette.edu
Dept. of Physics
Lafayette College, Easton PA 18042
Diffstat (limited to 'ext')
-rw-r--r-- | ext/DynaLoader/Makefile.PL | 4 | ||||
-rw-r--r-- | ext/Fcntl/MANIFEST | 4 |
2 files changed, 2 insertions, 6 deletions
diff --git a/ext/DynaLoader/Makefile.PL b/ext/DynaLoader/Makefile.PL index 6ce9527061..3c7effcc0c 100644 --- a/ext/DynaLoader/Makefile.PL +++ b/ext/DynaLoader/Makefile.PL @@ -11,13 +11,13 @@ WriteMakefile( sub MY::postamble { ' DynaLoader.c: $(DLSRC) - $(PERL) $(XSUBPP) $(XSUBPPARGS) $(DLSRC) >tmp && mv tmp $@ + $(PERL) -I$(PERL_ARCHLIB) -I$(PERL_LIB) $(XSUBPP) $(XSUBPPARGS) $(DLSRC) >tmp && mv tmp $@ # Perform very simple tests just to check for major gaffs. # We can\'t do much more for platforms we are not executing on. test-xs: for i in dl_*xs; \ - do $(PERL) $(XSUBPP) $(XSUBPPARGS) $$i > /dev/null; \ + do $(PERL) -I$(PERL_ARCHLIB) -I$(PERL_LIB) $(XSUBPP) $(XSUBPPARGS) $$i > /dev/null; \ done '; } diff --git a/ext/Fcntl/MANIFEST b/ext/Fcntl/MANIFEST deleted file mode 100644 index e5ff6bfe76..0000000000 --- a/ext/Fcntl/MANIFEST +++ /dev/null @@ -1,4 +0,0 @@ -Fcntl.pm -Fcntl.xs -MANIFEST -Makefile.PL |