ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/App-Staticperl/Changes
(Generate patch)

Comparing App-Staticperl/Changes (file contents):
Revision 1.14 by root, Fri Dec 10 02:35:54 2010 UTC vs.
Revision 1.50 by root, Sun May 1 10:03:29 2011 UTC

1Revision history for Perl extension App::Staticperl 1Revision history for Perl extension App::Staticperl
2 2
3TODO: noautoload 31.22 Sun May 1 11:28:54 CEST 2011
4TODO: --ignore-env 4 - prepend staticperl binary install path to PATH when running any
5TODO: / at glob end == (.pm|/.*)? 5 commands - will help many broken modules and scripts (e.g. those
6 using the broken #!env perl hack), but will also make life easier
7 for "staticperl cpan / look" users.
8 - use empty PERL_OPTIMIZE flags in testsuite for higher portability.
9 - unset PERL_CORE and PERL_MB_OPT variables because
10 these modules are part of perl - set them in your staticperlrc
11 instead.
12 - disable MAN1PODS and MAN3PODS in PERL_MM_OPT, to make Glib, Cairo,
13 Pango and Gtk2 build.
14 - patch ExtUtils::MM_Unix to search for static archives in blib more
15 often, as it doesn't detect Pango as being an XS module (which
16 is a bug in Pango).
17 - create a patch helper (SP-patch-postinstall) that is executed
18 after perl and eahc module install to do some important patches.
19 - rename the cpan-make-inmstall helper to SP-make-install-make.
20 - write mkbundle to bin/SP-mkbundle.
21 - new "staticperl perl" command.
22 - updated small/bigperl to 5.12.3.
6 23
241.21 Fri Mar 18 19:21:15 CET 2011
25 - ok, irix tar has no working -f and freebsd tar goes to a device
26 by default, so screw irix and go with freebsd.
27 - some bloke thought it's cool to force dynamic linking on darwin.
28 force as in "either you enable it, or the resulting build will be
29 forcefully broken". proves that whoever uses darwin deserves it.
30 anyway, we now patch away the idiocy in the hints file.
31 - for better portability, do not supply -Wl,--no-gc-sections
32 -Wl,--allow-multiple-definition, but sitll patch -Wl,--no-gc...
33 - new hook: patchconfig.
34
351.2 Mon Mar 14 00:11:15 CET 2011
36 - patch CPAN::HandleConfig as there seems to be no other way to
37 keep it from clobbering the users MyConfig.pm accidentally.
38 - call cpan internally in a way so it picks up only our MyConfig.pm,
39 for extra safety and the initial calls before patching.
40 - set default cpan "installer" to EUMM, and MB is too broken
41 (it fails to build extensions statically).
42 - use "tar x" only to accomodate irix (and possibly other systems).
43
441.11 Tue Mar 8 18:37:00 CET 2011
45 - no longer create bundle variable names from md5(data),
46 as it is no longer useful.
47 - fix output shortening in testsuite.
48
491.1 Thu Feb 24 07:20:22 CET 2011
50 - use a better -M syntax.
51 - the one-arg form of add/binadd was broken.
52 - --add and --binadd now use the file as alias if the alias is missing.
53 - embeddable bundle files were broken because "args"
54 was used before defined.
55 - mkapp now actually passes arguments to the boot script.
56 - more cpan-testers workarounds :/.
57 - implement an ignore-env option for mkbundle.
58 - use, not just require, modules when tracing their dependencies.
59 - support an optional xs_init argument to staticperl_init, which
60 can be 0 (and is then ignored).
61 - reduce PERL_ARENA_SIZE to something more reasonable for perl 5.12.
62 - use perl 5.12.3 by default.
63 - enable debug symbols by default (but not the dreaded -DDEBUGGING).
64
651.0 Mon Jan 10 15:13:19 CET 2011
66 - specify -Uinstallusrbinperl in configure to avoid creating
67 /usr/bin/perl.
68 - try to work around the totally broken /bin/sh on solaris
69 (only in the testsuite).
70 - use curl -f instead of just curl.
71 - prefer curl over wget again, as cpan seems to do so.
72 - clarify license.
73
740.92 Wed Dec 22 02:09:19 CET 2010
75 - major rework of the PHASE 2 documentation section, hopefully
76 it's now more clear, more useful, more sexy.
77 - renamed --usepacklist to --usepacklists (--usepacklist still
78 supported as abbreviation).
79 - "properly" get rid of SITELIB paths, avoid using -U compiler flags
80 (which didn't even do anything...).
81 - avoid export var=value syntax for non-unix shells (solaris...).
82 - better output in the error case from the testsuite.
83
840.912 Wed Dec 15 01:14:26 CET 2010
85 - print a longer and hopefully useful message when Configure fails.
86 - remove PERL_CPPFLAGS, replace with PERL_CCFLAGS, which get appended
87 tot he ccflags, instead of overriding them.
88 - introduce PERL_CC.
89 - work around *bsd stupidity again, where even root can't replace
90 files with mv :/.
91 - stop command processing when a command fails (e.g. staticperl mkperl
92 will stop if the install step fails).
93 - let perl do most configuration when running make test, to increase
94 chances of success.
95
960.911 Sat Dec 11 16:50:41 CET 2010
97 - argl, testsuite had a duplicated test.
98 - use -Wl,--allow-multiple-definition for better portability.
99
1000.91 Fri Dec 10 22:13:43 CET 2010
101 - add testsuite (yeah, should be optional - send patches).
102 - started to maintain two demo builds: bigperl and smallperl,
103 on http://staticperl.schmorp.de.
7 - implemented --staticlib option. 104 - implemented --staticlib option.
8 - special unicore/ compression (but much more could be done, 105 - special unicore/ compression (but much more could be done,
9 especially for the uncompressed case). 106 especially for the uncompressed case).
10 - implemented a strip cache, speeding up ppi stripping enourmously. 107 - implemented a strip cache, speeding up ppi stripping enourmously.
11 - implemented --include/--exclude options. 108 - implemented --include/--exclude options.
109 - try to port the tar call to freebsd (reported and analyzed
110 by Thomas Linden).
111 - (hopefully) better meaning of verbose levels.
112 - avoid deadlocking in --eval (unlikely, but possible).
113 - implement $STATICPERLRC.
114 - do all option AND bundle file processing with Getopt::Long,
115 to make maintenance easier.
12 116
130.9 Wed Dec 8 23:26:48 CET 2010 1170.9 Wed Dec 8 23:26:48 CET 2010
14 - support AutoLoader'ed functions with prototypes. 118 - support AutoLoader'ed functions with prototypes.
15 - new mkapp / --app option for mkbundle, to create 119 - new mkapp / --app option for mkbundle, to create
16 standalone applications. 120 standalone applications.

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines