diff options
author | Ilya Zakharevich <ilya@math.berkeley.edu> | 2002-02-11 01:56:41 -0500 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-02-11 14:32:12 +0000 |
commit | a64c954a1bae6e00706f368c6d1ae9d131a4361d (patch) | |
tree | c106c6ba370e9bb68f72fff73689ed5f483e9075 /hints | |
parent | a77eafec20d39a9432a97557c1161fb77fdf7f3d (diff) | |
download | perl-a64c954a1bae6e00706f368c6d1ae9d131a4361d.tar.gz |
OS/2 build
Message-ID: <20020211065640.A14993@math.ohio-state.edu>
(sans the Configure, perlio.sym, and t/op/stat.t parts)
p4raw-id: //depot/perl@14641
Diffstat (limited to 'hints')
-rw-r--r-- | hints/os2.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/hints/os2.sh b/hints/os2.sh index 126f6114dd..8633f2693e 100644 --- a/hints/os2.sh +++ b/hints/os2.sh @@ -108,6 +108,9 @@ exe_ext='.exe' # We provide it i_dlfcn='define' +# The default one uses exponential notation between 0.0001 and 0.1 +d_Gconvert='gcvt_os2((x),(n),(b))' + # -Zomf build has a problem with _exit() *flushing*, so the test # gets confused: fflushNULL="define" @@ -282,6 +285,15 @@ else fi fi +for f in less.exe less.sh less.ksh less.cmd more.exe more.sh more.ksh more.cmd ; do + if test -z "$pager"; then + pager="`./UU/loc $f '' $pth`" + fi +done +if test -z "$pager"; then + pager='cmd /c more' +fi + # Apply patches if needed case "$0$running_c_cmd" in *[/\\]Configure|*[/\\]Configure.|Configure|Configure.) # Skip Configure.cmd |