This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
[dummy merge]
[perl5.git] / hints / amigaos.sh
1 # hints/amigaos.sh
2 #
3 # talk to pueschel@imsdd.meb.uni-bonn.de if you want to change this file.
4 #
5 # misc stuff
6 archname='m68k-amigaos'
7 cc='gcc'
8 firstmakefile='GNUmakefile'
9 usenm='true'
10
11 usedl='n'
12 usemymalloc='n'
13 usevfork='true'
14 useperlio='true'
15 d_eofnblk='define'
16 d_fork='undef'
17 d_vfork='define'
18 groupstype='int'
19
20 # libs
21
22 libpth="$prefix/lib /local/lib"
23 glibpth="$libpth"
24 xlibpth="$libpth"
25
26 libswanted='gdbm m'
27 so=' '
28
29 # compiler & linker flags
30
31 ccflags='-DAMIGAOS -mstackextend'
32 ldflags=''
33 optimize='-O2 -fomit-frame-pointer'
34
35 # uncomment the following settings if you are compiling for an 68020+ system
36
37 # ccflags='-DAMIGAOS -mstackextend -m68020 -resident32'
38 # ldflags='-m68020 -resident32'
39
40 # uncomment the following line if you want dynamic loading and
41 # a working version of dld is available
42
43 # usedl=''
44 # ccflags='-DAMIGAOS -mstackextend'
45 # ldflags=''
46 # optimize='-O2 -fomit-frame-pointer'
47 # dlext='o'
48 # cccdlflags='none'
49 # ccdlflags='none'
50 # lddlflags='-oformat a.out-amiga -r'
51
52 # Avoid telldir prototype conflict in pp_sys.c  (AmigaOS uses const DIR *)
53 # Configure should test for this.  Volunteers?
54 pp_sys_cflags='ccflags="$ccflags -DHAS_TELLDIR_PROTOTYPE"'