Use PERL=../miniperl
[p5sagit/p5-mst-13.2.git] / os2 / README
CommitLineData
eacfb5f1 1Current state of the patches here is with respect to perl5.002b1d ;-).
4633a7c4 2
3========================================================
4
5The OS/2 patchkit was submitted by ilya@math.ohio-state.edu. I have
6applied some parts that I suspect won't cause any problems.
7Others do things that I haven't had time to fully consider.
8
9Still other patches included here should perhaps be integrated with the
10metaconfig package that generates Configure.
11
12 Andy Dougherty <doughera@lafcol.lafayette.edu>
13
14========================================================
15
16Notes on the patch:
17~~~~~~~~~~~~~~~~~~~
eacfb5f1 18patches should be applied as
4633a7c4 19 patch -p0 <.....
eacfb5f1 20All the diff.* files and POSIX.mkfifo should be applied.
4633a7c4 21
eacfb5f1 22Additional files are available on
4633a7c4 23 ftp://ftp.math.ohio-state.edu/pub/users/ilya/os2
eacfb5f1 24including patched pdksh and gnumake, needed for build.
25
4633a7c4 26
27Target:
28~~~~~~~
29
30This is not supposed to make a perfect Perl on OS/2. This patch is
31concerned only with perfect _build_ of Perl on OS/2. A lot of good
32features from Andreas Kaiser port missed this patch.
33
eacfb5f1 34Annotations of changes: (part of what is below is already included by Andy,
35~~~~~~~~~~~~~~~~~~~~~~~ thus there are skips below)
4633a7c4 361) C files
372) Configure
383) MakeMaker
394) Build tools
40
411) C files
42 a) mkfifo macro added to Posix.c
43 b) Copyright notice for OS/2 port changed
44 c) MYMALLOC section in perl.h moved (why?)
45 d) setgrent grent and getgrent wrapped in ifdef
46 e) declarations for #if defined(MYMALLOC) && defined(HIDEMYMALLOC)
47 added
48 f) some diagnostics added to tests
49
502) Configure
4633a7c4 51 b) Support for extraction from NE style libraries.
52 c) a lot of
53 cc -o whatever
54 lines did not have $ldopts.
55 d) The above variables are used throughout the file for checks
56
573) Build tools and libraries
58
4633a7c4 59
60 a) ln changed to $ln in some places
61 b) Makefiles and related scripts made to use $(O), $(A), $(AR)
62 using the vars found by Configure or defaulted to
63 some reasonable value.
64 c) $firstmakefile is the file make looks onto before Makefile
65 d) $plibext is the extension for the perl library
66 e) $archobjs is the list of additional object files needed for
67 local build.
4633a7c4 68 l) Makefile.SH : added sh in front of some commands
69 if $d_shrplib is 'custom', looks into
70 $osname/Makefile.$osname.SH to construct the section
eacfb5f1 71 on shared Perl library.
72 !!!!!! Also: installperl installman makedepend
73 !!!!!! added as dependencies to the corresponding
74 !!!!!! targets.
4633a7c4 75 m) clean target extended to delete some intermediate files
4633a7c4 76
77Notes on build on OS/2:
78~~~~~~~~~~~~~~~~~~~~~~~
79The change of C code in this patch is based on the ak port of 5.001+.
80
81a) Make sure your sort is not the broken OS/2 one.
82
eacfb5f1 83b) when extraction perl5.*.tar.gz you need to extract perl5.*/Configure
4633a7c4 84separately, since by default perl5.001m/configure overwrites it;
eacfb5f1 85 like this:
86 tar vzxf perl5.004.tar.gz perl5.004/Configure
4633a7c4 87
88c) Necessary manual intervention when compiling on OS/2:
89
90 Need to put perl.dll on LIBPATH after it is created.
91
92d) Compile summary:
93
94# Look for hints/os2.sh and correct what is different on your system
95# I have rather spartan configuration.
96
97 # Prefix means where to install:
eacfb5f1 98sh Configure -des -D prefix=f:/perl5.005
4633a7c4 99make
100 # Will probably die after build of miniperl (unless you have DLL
101 # from previous compile). Need to move DLL where it belongs
102make
103 # some warnings in POSIX.c
104make test
eacfb5f1 105 # some tests fail, 9 on my system
4633a7c4 106 #
107 # before this you should create subdirs bin and lib in the
eacfb5f1 108 # prefix directory (f:/perl5.005 above):
4633a7c4 109make install
110 # man pages are not installed
111
112e) At the end of August GNU make and pdksh were too buggy for compile.
113Both maintainers have patches that make it possible to compile perl.
eacfb5f1 114The binaries are included in
4633a7c4 115 ftp://ftp.math.ohio-state.edu/pub/users/ilya/os2
eacfb5f1 116patches are available too.
117Note that the beta of pdksh5.2.4 can run Configure, but not build, since
118 sh file
119may actually call file.SH ! The maintainer is notified, I hope this will be
120fixed before actual release.
4633a7c4 121
122!!!!!!!!!!!!!!!!!
123If you see that some '/' became '\' in pdksh 5.2.3, you did not apply
124my patches!
125Same with segfaults in Make 3.74.
126!!!!!!!!!!!!!!!!!
127
128Problems reported:
129
130a) one of the latest tr is broken, get an old one :-(
131 1.11 works. (On compuserver?)
132b) You need a perlglob.exe and link386.
133c) Get rid of invalid perl.dll on your LIBPATH.
134
135
136Send comments to ilya@math.ohio-state.edu.
eacfb5f1 137
138======================================================
139Requires 0.9b (well, provision are made to make it build under 0.9a6,
140but they are not tested, please inform me on success).
141(earlier than 0.9b ttyname was not present, it is hard to maintain this
142difference automatically, though I try).
143======================================================
144
145You may try building with a.out style by using `-D emxaout' on the Configure
146line (dynamic extensions should not use CRT (and/or any perl API) in this
147case, which prohibits most buildin extensions). Probably no extension is
148possible, since boot code should return the amount on stack.
149
150The reason why compiling with a.out style executables leads to problems
151with dynamic extensions is:
152 a) OS/2 does not export symbols from executables;
153 b) Thus if extension needs to import symbols from an application
154 the symbols for the application should reside in a .dll.
155 c) You cannot export data from a .dll compiled with a.out style.
156On the other hand, aout-style compiled extension enjoys all the
157(dis)advantages of fork().