diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-03-01 00:46:44 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-03-01 00:46:44 +0000 |
commit | abb9e9dca5a5f1213886f2e81a42c9a565def727 (patch) | |
tree | ffaa8264938d5506a23e6af93417be759df95a81 /ext/DynaLoader/Makefile.PL | |
parent | ac65edd091c58fa56b3dde9505b63579e43340f8 (diff) | |
download | perl-abb9e9dca5a5f1213886f2e81a42c9a565def727.tar.gz |
unload extension shared objects when exiting, implemented
only for dl_dlopen.xs (from Alan Burlison)
p4raw-id: //depot/perl@5381
Diffstat (limited to 'ext/DynaLoader/Makefile.PL')
-rw-r--r-- | ext/DynaLoader/Makefile.PL | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/DynaLoader/Makefile.PL b/ext/DynaLoader/Makefile.PL index bcd45ae757..83cbd770b0 100644 --- a/ext/DynaLoader/Makefile.PL +++ b/ext/DynaLoader/Makefile.PL @@ -12,6 +12,7 @@ WriteMakefile( 'XSLoader_pm.PL'=>'XSLoader.pm'}, PM => {'DynaLoader.pm' => '$(INST_LIBDIR)/DynaLoader.pm', 'XSLoader.pm' => '$(INST_LIBDIR)/XSLoader.pm'}, + depend => {'DynaLoader.o' => 'dlutils.c'}, clean => {FILES => 'DynaLoader.c DynaLoader.xs DynaLoader.pm ' . 'XSLoader.pm'}, ); |