This repository has been archived by the owner on Feb 24, 2020. It is now read-only.
forked from essej/sooperlooper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
autogen.sh
executable file
·343 lines (270 loc) · 7.84 KB
/
autogen.sh
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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
#!/bin/sh
if [ "x$CC" = "x" ] ; then
export CC=gcc
fi
pwd=`pwd`
base_libs="pbd midi++"
gui_libs=""
gui_progs=""
nogui_progs=""
prog_dirs="$gui_progs $nogui_progs"
lib_dirs="$base_libs $gui_libs"
xtra_path=
libs_to_process=
while [ $# -gt 0 ]
do
case $1 in
-gui*) prog_dirs="$nogui_progs"
lib_dirs="$base_libs"
;;
-ksi*) prog_dirs="$gui_progs"
lib_dirs="$base_libs $gui_libs"
;;
-path=*)
xtra_path=$xtra_path`expr "x$1" : 'x-path=\(.*\)'`:
;;
*) libs_to_process="$libs_to_process $1"
;;
esac
shift
done
PATH=$xtra_path$PATH
export PATH
acmacrodir=$pwd/aclocal
system_macrodir=`aclocal --print-ac-dir`
acargs=
pkgpath=
auto_lib_dirs=
echo "
----------------------------------------------------------------------
Checking basic compilation tools ...
"
for tool in pkg-config autoconf aclocal automake libtool gettext autopoint
do
if which $tool >/dev/null 2>&1 ; then
echo " $tool: found."
else
echo "\
You do not have $tool correctly installed. You cannot build SooperLooper
without this tool."
exit 1
fi
done
# check the version of autoconf, because it matters a LOT
# and while i'm here: what the f*ck? we now have to
# write our own configuration tests to see if the configuration
# test system is adequate? gag....
#
# Correct. time for #ifdef AUTO_ME_HARDER ... ?
#
# [The above was written by Paul Davis a long time ago]
# lets just get rid of these checks shall we?
#autoconf --version | perl -e '
#while(<>) {
# @x=split(/[ \t\n]+/,$_);
# $version=$x[3]; $v =~ s/[a-z]+$//;
# if($version >= 2.52){
# exit 0;
# }else{
# print "\n\tversion $version of autoconf found: sooperlooper requires 2.52 or above.\n";
# exit 1;
# }
#}
#'
#if [ $? != 0 ] ; then
# exit 1
#fi
# Check version of automake. Equally frustrating as checking
# the version for autoconf.
#automake --version | perl -e '
#while(<>) {
# @x=split(/[ \t\n]+/,$_);
# $version=$x[3]; $v =~ s/[a-z]+$//;
# if($version >= 1.7){
# exit 0;
# }else{
# print "\n\tversion $version of automake found: sooperlooper requires 1.7 or above.\n";
# exit 1;
# }
#}
#'
#if [ $? != 0 ] ; then
# exit 1
#fi
echo "
----------------------------------------------------------------------
linking autoconf macros to $acmacrodir ...
"
for x in $lib_dirs ; do
pkgpath="${pkgpath}$pwd/libs/$x:"
# catch any autoconf m4 files that we'll need
# need to have access to during the autogen step
macros=`echo $pwd/libs/$x/*.m4`
if [ x"$macros" != "x$pwd/libs/$x/*.m4" ] ; then
for m4 in $macros
do
bm4=`basename $m4`
if [ -f $system_macrodir/$bm4 ] ; then
echo "\
----------------------------------------------------------------------
You already have a version of $bm4 installed in $system_macrodir.
This isn't going to work, because aclocal is too stupid to use
an ordered search path. I'm therefore going to ignore the
one in this tree, and rely on the installed one. If this
results in errors, you will have deinstall the library that
$bm4 is associated with.
If you don't like this policy, I suggest that you write to the
authors of aclocal and suggest that they improve their
program.
----------------------------------------------------------------------
"
continue
fi
if [ $bm4 != aclocal.m4 ] && [ $bm4 != acinclude.m4 ] ; then
m4copy="$m4copy $m4"
fi
done
fi
# damn!
if [ $x = "midi++" ] ; then
libname=midipp
else
libname=$x
fi
auto_lib_dirs="$auto_lib_dirs libs/$x"
done
if [ ! -d $acmacrodir ] ; then
mkdir $acmacrodir ;
else
rm -rf $acmacrodir/*.m4
fi
for m4 in $m4copy ; do
ln -s $m4 $acmacrodir
done
export ACLOCAL_FLAGS="$ACLOCAL_FLAGS -I $acmacrodir"
cat > $acmacrodir/optflags.m4 <<EOF
AC_DEFUN([AM_OPT_FLAGS],[
dnl
dnl figure out how best to optimize
dnl
gcc_major_version=`$CC -dumpversion | sed -e 's/\..*//'`
os_system=`uname -s`
if test "\$target_cpu" = "powerpc"; then
AC_DEFINE(POWERPC, 1, "Are we running a ppc CPU?")
altivecLinux=`cat /proc/cpuinfo | grep -i altivec >/dev/null`
if test "\$?" = "0"; then
AC_DEFINE(HAVE_ALTIVEC_LINUX, 1, "Is there Altivec Support ?")
if test "\$gcc_major_version" = "3"; then
dnl -mcpu=7450 does not reliably work with gcc 3.*
#OPT_FLAGS="-D_REENTRANT -O3 -mcpu=7400 -maltivec -mabi=altivec"
OPT_FLAGS="-D_REENTRANT -O3 -mcpu=7400 -mtune=7450"
else
OPT_FLAGS="-D_REENTRANT -Os"
fi
else
OPT_FLAGS="-D_REENTRANT -Os "
fi
OPT_FLAGS="\$OPT_FLAGS -mhard-float -mpowerpc-gfxopt"
elif echo \$target_cpu | grep "i*86" >/dev/null; then
if test "\$os_system" = "Darwin"; then
# pretty good assumption
mmx="-mmmx"
sse="-msse -mfpmath=sse"
OPT_FLAGS="-D_REENTRANT -Os -fomit-frame-pointer \$mmx \$sse"
else
cat /proc/cpuinfo | grep mmx >/dev/null
if test \$? = 0; then
mmx="-mmmx"
fi
cat /proc/cpuinfo | grep sse >/dev/null
if test \$? = 0; then
sse="-msse -mfpmath=sse"
fi
cat /proc/cpuinfo | grep 3dnow >/dev/null
if test \$? = 0; then
dreidnow="-m3dnow"
fi
AC_DEFINE(x86, 1, "Nope its intel")
if test "\$target_cpu" = "i586"; then
OPT_FLAGS="-DREENTRANT -O2 -march=i586 -fomit-frame-pointer"
elif test "\$target_cpu" = "i686"; then
OPT_FLAGS="-D_REENTRANT -O2 -march=i686 -fomit-frame-pointer"
if test "\$gcc_major_version" -ge "3"; then
OPT_FLAGS="\$OPT_FLAGS \$mmx \$sse \$dreidnow"
fi
else
OPT_FLAGS="-D_REENTRANT -O2 -fomit-frame-pointer"
fi
fi
fi
OPT_FLAGS="\$OPT_FLAGS -pipe"
# LARGEFILE_FLAGS="\`getconf LFS_CFLAGS\`"
LARGEFILE_FLAGS="-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE"
CXXFLAGS="-g -D_REENTRANT \$LARGEFILE_FLAGS"
if test x"\$GXX" = xyes ; then
CXXFLAGS="\$CXXFLAGS -Wall"
fi
if test x"\$GXX" = xyes ; then
OPT_CXXFLAGS="\$OPT_FLAGS -Wall \$LARGEFILE_FLAGS"
fi
PROF_FLAGS="-pg"
dnl
dnl some link flags to try to speed linking
dnl
CXXFLAGS="\$CXXFLAGS -fno-merge-constants"
])
EOF
cat > $acmacrodir/buildenv.m4 <<EOF
AC_DEFUN([AM_BUILD_ENVIRONMENT],[
top_marker=top_marker
depth=0
while test x\$SOOPERLOOPER_TOP = x -a \$depth -lt 255 ; do
if test -f \$top_marker ; then
SOOPERLOOPER_TOP=\`dirname \$top_marker\`
else
top_marker=../\$top_marker
fi
depth=\`expr \$depth + 1\`
done
if test \$depth -eq 255 ; then
AC_MSG_ERROR([ the top of the SooperLooper source tree was not found.])
fi
dnl
dnl convert to absolute path
dnl
SOOPERLOOPER_TOP=\`cd \$SOOPERLOOPER_TOP; pwd\`
export LIBDIRS="$lib_dirs"
ACLOCAL_FLAGS="-I \$SOOPERLOOPER_TOP/aclocal"
ACLOCAL_AMFLAGS="-I \$SOOPERLOOPER_TOP/aclocal \`if test -d m4 ; then echo -I m4; fi\`"
AC_SUBST(ACLOCAL_FLAGS)
AC_SUBST(ACLOCAL_AMFLAGS)
BASE_LIBS="\$SOOPERLOOPER_TOP/libs/midi++/libmidipp.a \$SOOPERLOOPER_TOP/libs/pbd/libpbd.a"
BASE_INCLUDES="-I\$SOOPERLOOPER_TOP/libs/pbd -I\$SOOPERLOOPER_TOP/libs/midi++"
CFLAGS="\$CFLAGS -I\$SOOPERLOOPER_TOP/libs/pbd -I\$SOOPERLOOPER_TOP/libs/midi++"
CXXFLAGS="\$CXXFLAGS -I\$SOOPERLOOPER_TOP/libs/pbd -I\$SOOPERLOOPER_TOP/libs/midi++"
#LIBS="\$LIBS \$SOOPERLOOPER_TOP/libs/midi++/libmidipp.a \$SOOPERLOOPER_TOP/libs/pbd/libpbd.a"
])
EOF
echo "
----------------------------------------------------------------------
Bootstrapping makefiles etc.
Ignore any warnings about AC_TRY_RUN, AC_PROG_LEX, and AC_DEFINE ...
"
if [ "$libs_to_process" = "" ] ; then
libs_to_process="libs $auto_lib_dirs $prog_dirs"
fi
for d in $libs_to_process
do
(cd $d && echo "Building autoconf files for $d ..." && sh ./autogen.sh) || exit 1
done
echo "Building autoconf/automake files for the top level ..."
aclocal $ACLOCAL_FLAGS && autoheader && automake --foreign --add-missing && autoconf
echo "
----------------------------------------------------------------------
Bootstrapping is complete.
You can now run:
./configure
make
make install
"
exit 0