This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Re: The continuing MachTen saga
[perl5.git] / hints / machten_2.sh
1 # machten.sh
2 # This file has been put together by Mark Pease <peasem@primenet.com>
3 # Comments, questions, and improvements welcome!
4 #
5 # MachTen does not support dynamic loading. If you wish to, you
6 # can fetch, compile, and install the dld package.
7 # This ought to work with the ext/DynaLoader/dl_dld.xs in the 
8 # perl5 package. Have fun!
9 # Some possible locations for dld:
10 # ftp-swiss.ai.mit.edu:pub/scm/dld-3.2.7.tar.gz
11 # prep.ai.mit.edu:/pub/gnu/jacal/dld-3.2.7.tar.gz
12 # ftp.cs.indiana.edu:/pub/scheme-repository/imp/SCM-support/dld-3.2.7.tar.gz
13 # tsx-11.mit.edu:/pub/linux/sources/libs/dld-3.2.7.tar.gz
14 #
15 #  Original version was for MachTen 2.1.1.
16 #  Last modified by Andy Dougherty   <doughera@lafcol.lafayette.edu>
17 #  Tue Aug 13 12:31:01 EDT 1996
18 #
19 #  Warning about tests which no longer fail
20 #    fixed by Tom Phoenix <rootbeer@teleport.com>
21 #  March 5, 1997
22
23 # I don't know why this is needed.  It might be similar to NeXT's
24 # problem.  See hints/next_3.sh.
25 usemymalloc='n'
26
27 so='none'
28 # These are useful only if you have DLD, but harmless otherwise.
29 # Make sure gcc doesn't use -fpic.
30 cccdlflags=' '  # That's an empty space.
31 lddlflags='-r'
32 dlext='o'
33
34 # MachTen does not support POSIX enough to compile the POSIX module.
35 useposix=false
36
37 #MachTen might have an incomplete Berkeley DB implementation.
38 i_db=$undef
39
40 #MachTen versions 2.X have no hard links.  This variable is used
41 # by File::Find.
42 # This will generate a harmless message:
43 # Hmm...You had some extra variables I don't know about...I'll try to keep 'em.
44 #       Propagating recommended variable dont_use_nlink
45 # Without this, tests io/fs #4 and op/stat #3 will fail.
46 dont_use_nlink=define
47
48 cat <<'EOM' >&4
49
50 At the end of Configure, you will see a harmless message
51
52 Hmm...You had some extra variables I don't know about...I'll try to keep 'em.
53         Propagating recommended variable dont_use_nlink
54
55 Read the File::Find documentation for more information.
56
57 EOM