This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Move find_threadsv to right bit of global.sym. Bump patchlevel to 61.
[perl5.git] / hints / dos_djgpp.sh
CommitLineData
39e571d4
LM
1# hints file for dos/djgpp v2.xx
2# Original by Laszlo Molnar <molnarl@cdata.tvnet.hu>
3
4# 971015 - archname changed from 'djgpp' to 'dos-djgpp'
5
6archname='dos-djgpp'
7archobjs='djgpp.o'
8path_sep=\;
9startsh="#!sh"
10
11cc='gcc'
12ld='gcc'
13usrinc="$DJDIR/include"
14
15libpth="$DJDIR/lib"
16libc="$libpth/libc.a"
17
18so='none'
19usedl='n'
20
21firstmakefile='GNUmakefile'
22exe_ext='.exe'
23
24randbits=31
25
26ln='cp' # no REAL ln on dos
27lns='cp'
28
29usenm='true'
30d_bincompat3='undef'
31
32d_link='undef' # these are empty functions in libc.a
33d_symlink='undef'
34d_fork='undef'
35d_pipe='undef'
36
37startperl='#!perl'
38
39case "X$optimize" in
40 X)
41 optimize="-O2 -fomit-frame-pointer -malign-loops=2 -malign-jumps=2 -malign-functions=2"
42 ;;
43esac
44ldflags='-s'
45usemymalloc='n'
46timetype='time_t'
47
48prefix=$DJDIR
49privlib=$prefix/lib/perl5
50archlib=$privlib
51sitelib=$privlib/site
52sitearch=$sitelib
53
54: set up the translation script tr
55
56cat >../UU/tr <<EOSC
57$startsh
58case "\$1\$2" in
59'[A-Z][a-z]') exec tr.exe '[:upper:]' '[:lower:]';;
60'[a-z][A-Z]') exec tr.exe '[:lower:]' '[:upper:]';;
61esac
62exec tr.exe "\$@"
63EOSC