blob: 4f18013f065af534e10ee29f085e7b1bae98c493 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
|
dnl
dnl Binary distribution configure script
dnl
#!/bin/sh
#
# Is it there?
AC_INIT(Makefile-vars.in)
exeext=''
#
# First off, what system are we running under?
#
AC_CANONICAL_SYSTEM
dnl ** canonicalize platform names
# Canonicali[sz]e the platform name
TargetPlatform=`/bin/sh $srcdir/config.sub $target` || exit 1
#
# The following will be more difficult when we *are* cross-compiling.
# Suitable names to slam in *_CPP are in platform.h.in.
# We also record the architecture, vendor, and operating system (OS)
# separately.
case $TargetPlatform in
alpha*-dec-osf[[12]]*)
TargetPlatform=alpha-dec-osf1;;
alpha*-dec-osf[[345]]*)
TargetPlatform=alpha-dec-osf3;;
alpha*-unknown-linux)
TargetPlatform=alpha-unknown-linux;;
alpha*-unknown-freebsd*)
TargetPlatform=alpha-unknown-freebsd;;
hppa1.1-hp-hpux*)
TargetPlatform=hppa1.1-hp-hpux;;
i[[3456]]86-*-linuxaout*)
TargetPlatform=i386-unknown-linuxaout;;
i[[3456]]86-*-linux*)
TargetPlatform=i386-unknown-linux;;
i[[3456]]86-*-freebsd2*)
TargetPlatform=i386-unknown-freebsd2;;
i[[3456]]86-*-freebsd[[3-9]]*)
TargetPlatform=i386-unknown-freebsd;;
i[[3456]]86-*-netbsd*)
TargetPlatform=i386-unknown-netbsd;;
i[[3456]]86-*-openbsd*)
TargetPlatform=i386-unknown-openbsd;;
i[[3456]]86-*-solaris2*)
TargetPlatform=i386-unknown-solaris2;;
i[[3456]]86-*-cygwin*)
exeext='.exe'
TargetPlatform=i386-unknown-cygwin32;;
i[[3456]]86-*-mingw32*)
exeext='.exe'
TargetPlatform=i386-unknown-mingw32
;;
i[[3456]]86-apple-darwin*)
TargetPlatform=i386-apple-darwin;;
m68k-next-nextstep2)
TargetPlatform=m68k-next-nextstep2;;
m68k-next-nextstep3)
TargetPlatform=m68k-next-nextstep3;;
i[[3456]]86-next-nextstep3)
TargetPlatform=i386-next-nextstep3;;
m68k-sun-sunos4*)
TargetPlatform=m68k-sun-sunos4;;
mips-dec-ultrix*)
TargetPlaformP=mips-dec-ultrix;;
mips-sgi-irix*)
TargetPlatform=mips-sgi-irix;;
powerpc-ibm-aix*)
TargetPlatform=powerpc-ibm-aix;;
rs6000-ibm-aix*)
TargetPlatform=rs6000-ibm-aix;;
powerpc-apple-darwin*)
TargetPlatform=powerpc-apple-darwin;;
powerpc-*-linux*)
TargetPlatform=powerpc-unknown-linux;;
powerpc64-*-linux*)
TargetPlatform=powerpc64-unknown-linux;;
sparc-sun-sunos4*)
TargetPlatform=sparc-sun-sunos4;;
sparc-sun-solaris2*)
TargetPlatform=sparc-sun-solaris2;;
x86_64-*-linux*)
TargetPlatform=x86_64-unknown-linux;;
x86_64-*-freebsd*)
TargetPlatform=x86_64-unknown-freebsd;;
x86_64-*-openbsd*)
TargetPlatform=x86_64-unknown-openbsd;;
x86_64-*-netbsd*)
TargetPlatform=x86_64-unknown-netbsd;;
x86_64-apple-darwin*)
TargetPlatform=x86_64-apple-darwin;;
*)
echo "Unrecognised platform: $TargetPlatform"
exit 1
;;
esac
echo "Which we'll further canonicalise into: $TargetPlatform"
AC_SUBST(TargetPlatform)
AC_SUBST(exeext)
FP_FIND_ROOT
#
dnl ** Check Perl installation **
#
AC_PATH_PROG(PerlCmd,perl)
if test -z "$PerlCmd"; then
echo "You must install perl before you can continue"
echo "Perhaps it is already installed, but not in your PATH?"
exit 1
fi
FPTOOLS_SHEBANG_PERL
#
dnl ** figure out how to do a BSD-ish install **
#
AC_PROG_INSTALL
#
dnl ** how to do symlinks **
#
AC_PROG_LN_S()
#
dnl ** how to invoke `ar' and `ranlib'
#
FP_PROG_AR_NEEDS_RANLIB
#
dnl ** Find the path to sed **
#
AC_PATH_PROG(SedCmd,sed)
#
dnl ** How to invoke cpp directly **
#
FP_HAVE_GCC
AC_PROG_CPP
#
dnl ** Check gcc version and flags we need to pass it **
#
FP_GCC_EXTRA_FLAGS
#
AC_CONFIG_FILES(Makefile-vars extra-gcc-opts)
AC_OUTPUT
echo "****************************************************"
echo "Configuration done, ready to 'make install'"
echo "(see README and INSTALL files for more info.)"
echo "****************************************************"
|