📄 5.004_03
字号:
diff -rc perl5.004_03.orig/Configure perl5.004_03/Configure*** perl5.004_03.orig/Configure Wed Aug 13 16:09:46 1997--- perl5.004_03/Configure Sun Nov 12 21:56:18 2000****************** 188,193 ****--- 188,194 ---- mv='' nroff='' perl=''+ perllibs='' pg='' pmake='' pr=''****************** 9911,9916 ****--- 9912,9925 ---- shift extensions="$*" + : Remove libraries needed only for extensions+ : The appropriate ext/Foo/Makefile.PL will add them back in, if+ : necessary.+ set X `echo " $libs " | + sed -e 's@ -lndbm @ @' -e 's@ -lgdbm @ @' -e 's@ -ldbm @ @' -e 's@ -ldb @ @'` + shift+ perllibs="$*"+ : Remove build directory name from cppstdin so it can be used from : either the present location or the final installed location. echo " "****************** 10379,10384 ****--- 10388,10394 ---- patchlevel='$patchlevel' path_sep='$path_sep' perl='$perl'+ perllibs='$perllibs' perladmin='$perladmin' perlpath='$perlpath' pg='$pg'Only in perl5.004_03: Configure.origdiff -rc perl5.004_03.orig/Makefile.SH perl5.004_03/Makefile.SH*** perl5.004_03.orig/Makefile.SH Mon Aug 18 19:24:29 1997--- perl5.004_03/Makefile.SH Sun Nov 12 21:56:18 2000****************** 126,132 **** ext = \$(dynamic_ext) \$(static_ext) DYNALOADER = lib/auto/DynaLoader/DynaLoader\$(LIB_EXT) ! libs = $libs $cryptlib public = perl $suidperl utilities translators --- 126,132 ---- ext = \$(dynamic_ext) \$(static_ext) DYNALOADER = lib/auto/DynaLoader/DynaLoader\$(LIB_EXT) ! libs = $perllibs $cryptlib public = perl $suidperl utilities translators Only in perl5.004_03: Makefile.SH.origdiff -rc perl5.004_03.orig/lib/ExtUtils/Embed.pm perl5.004_03/lib/ExtUtils/Embed.pm*** perl5.004_03.orig/lib/ExtUtils/Embed.pm Fri Aug 1 15:08:44 1997--- perl5.004_03/lib/ExtUtils/Embed.pm Sun Nov 12 21:56:18 2000****************** 178,184 **** @path = $path ? split(/:/, $path) : @INC; push(@potential_libs, @link_args) if scalar @link_args;! push(@potential_libs, $Config{libs}) if defined $std; push(@mods, static_ext()) if $std; --- 178,184 ---- @path = $path ? split(/:/, $path) : @INC; push(@potential_libs, @link_args) if scalar @link_args;! push(@potential_libs, $Config{perllibs}) if defined $std; push(@mods, static_ext()) if $std; diff -rc perl5.004_03.orig/lib/ExtUtils/Liblist.pm perl5.004_03/lib/ExtUtils/Liblist.pm*** perl5.004_03.orig/lib/ExtUtils/Liblist.pm Fri Aug 1 19:36:58 1997--- perl5.004_03/lib/ExtUtils/Liblist.pm Sun Nov 12 21:57:17 2000****************** 16,33 **** sub _unix_os2_ext { my($self,$potential_libs, $verbose) = @_;! if ($^O =~ 'os2' and $Config{libs}) { # Dynamic libraries are not transitive, so we may need including # the libraries linked against perl.dll again. $potential_libs .= " " if $potential_libs;! $potential_libs .= $Config{libs}; } return ("", "", "", "") unless $potential_libs; print STDOUT "Potential libraries are '$potential_libs':\n" if $verbose; my($so) = $Config{'so'};! my($libs) = $Config{'libs'}; my $Config_libext = $Config{lib_ext} || ".a"; --- 16,33 ---- sub _unix_os2_ext { my($self,$potential_libs, $verbose) = @_;! if ($^O =~ 'os2' and $Config{perllibs}) { # Dynamic libraries are not transitive, so we may need including # the libraries linked against perl.dll again. $potential_libs .= " " if $potential_libs;! $potential_libs .= $Config{perllibs}; } return ("", "", "", "") unless $potential_libs; print STDOUT "Potential libraries are '$potential_libs':\n" if $verbose; my($so) = $Config{'so'};! my($libs) = $Config{'perllibs'}; my $Config_libext = $Config{lib_ext} || ".a"; ****************** 186,196 **** my($self, $potential_libs, $verbose) = @_; # If user did not supply a list, we punt.! # (caller should probably use the list in $Config{libs}) return ("", "", "", "") unless $potential_libs; my($so) = $Config{'so'};! my($libs) = $Config{'libs'}; my($libpth) = $Config{'libpth'}; my($libext) = $Config{'lib_ext'} || ".lib"; --- 186,196 ---- my($self, $potential_libs, $verbose) = @_; # If user did not supply a list, we punt.! # (caller should probably use the list in $Config{perllibs}) return ("", "", "", "") unless $potential_libs; my($so) = $Config{'so'};! my($libs) = $Config{'perllibs'}; my($libpth) = $Config{'libpth'}; my($libext) = $Config{'lib_ext'} || ".lib"; ****************** 540,546 **** =item * If C<$potential_libs> is empty, the return value will be empty.! Otherwise, the libraries specified by C<$Config{libs}> (see Config.pm) will be appended to the list of C<$potential_libs>. The libraries will be searched for in the directories specified in C<$potential_libs> as well as in C<$Config{libpth}>. For each library that is found, a--- 540,546 ---- =item * If C<$potential_libs> is empty, the return value will be empty.! Otherwise, the libraries specified by C<$Config{perllibs}> (see Config.pm) will be appended to the list of C<$potential_libs>. The libraries will be searched for in the directories specified in C<$potential_libs> as well as in C<$Config{libpth}>. For each library that is found, aOnly in perl5.004_03/lib/ExtUtils: Liblist.pm.origOnly in perl5.004_03/lib/ExtUtils: Liblist.pm.rejdiff -rc perl5.004_03.orig/lib/ExtUtils/MM_Unix.pm perl5.004_03/lib/ExtUtils/MM_Unix.pm*** perl5.004_03.orig/lib/ExtUtils/MM_Unix.pm Mon Aug 18 19:16:12 1997--- perl5.004_03/lib/ExtUtils/MM_Unix.pm Sun Nov 12 21:56:19 2000****************** 2224,2230 **** MAP_STATIC = ", join(" \\\n\t", reverse sort keys %static), " ! MAP_PRELIBS = $Config::Config{libs} $Config::Config{cryptlib} "; if (defined $libperl) {--- 2224,2230 ---- MAP_STATIC = ", join(" \\\n\t", reverse sort keys %static), " ! MAP_PRELIBS = $Config::Config{perllibs} $Config::Config{cryptlib} "; if (defined $libperl) {Only in perl5.004_03/lib/ExtUtils: MM_Unix.pm.origdiff -rc perl5.004_03.orig/myconfig perl5.004_03/myconfig*** perl5.004_03.orig/myconfig Sat Dec 21 01:13:20 1996--- perl5.004_03/myconfig Sun Nov 12 21:56:19 2000****************** 35,41 **** Linker and Libraries: ld='$ld', ldflags ='$ldflags' libpth=$libpth! libs=$libs libc=$libc, so=$so useshrplib=$useshrplib, libperl=$libperl Dynamic Linking:--- 35,41 ---- Linker and Libraries: ld='$ld', ldflags ='$ldflags' libpth=$libpth! libs=$perllibs libc=$libc, so=$so useshrplib=$useshrplib, libperl=$libperl Dynamic Linking:diff -rc perl5.004_03.orig/patchlevel.h perl5.004_03/patchlevel.h*** perl5.004_03.orig/patchlevel.h Wed Aug 13 11:42:01 1997--- perl5.004_03/patchlevel.h Sun Nov 12 21:56:19 2000****************** 38,43 ****--- 38,44 ---- */ static char *local_patches[] = { NULL+ ,"NODB-1.0 - remove -ldb from core perl binary." ,NULL }; Only in perl5.004_03: patchlevel.h.orig
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -