hints/dec_osf.sh: polishing the comments
[p5sagit/p5-mst-13.2.git] / hints / amigaos.sh
CommitLineData
55497cff 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
6archname='m68k-amigaos'
7cc='gcc'
8firstmakefile='GNUmakefile'
0a753a76 9usenm='true'
55497cff 10usemymalloc='n'
11usevfork='true'
12useperlio='true'
13d_eofnblk='define'
14d_fork='undef'
15d_vfork='define'
16groupstype='int'
17
0a753a76 18# compiler & linker flags
19
20ccflags='-DAMIGAOS -mstackextend'
21ldflags=''
22optimize='-O2 -fomit-frame-pointer'
23
24# uncomment the following settings if you are compiling for an 68020+ system
25
26# ccflags='-DAMIGAOS -mstackextend -m68020 -resident32'
27# ldflags='-m68020 -resident32'
28
55497cff 29# libs
30
0a753a76 31libpth="$prefix/lib /local/lib"
55497cff 32glibpth="$libpth"
33xlibpth="$libpth"
34
0a753a76 35libswanted='gdbm m'
55497cff 36so=' '
37
38# dynamic loading
39
0a753a76 40usedl='n'
41
42# uncomment the following line if a working version of dld is available
43
44# usedl='y'
45# dlext='o'
46# cccdlflags='none'
47# ccdlflags='none'
48# lddlflags='-oformat a.out-amiga -r'
55497cff 49
50# Avoid telldir prototype conflict in pp_sys.c (AmigaOS uses const DIR *)
51# Configure should test for this. Volunteers?
52pp_sys_cflags='ccflags="$ccflags -DHAS_TELLDIR_PROTOTYPE"'