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
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
|
dnl Process this file with autoconf to produce a configure script.
AC_INIT(zexy.c)
LIBNAME=zexy
dnl Checks for programs.
AC_PROG_CC
AC_SUBST(STK)
AC_SUBST(CFLAGS)
AC_SUBST(DFLAGS)
AC_SUBST(LFLAGS)
AC_SUBST(EXT)
AC_SUBST(LD)
AC_SUBST(STRIP)
AC_SUBST(STRIPFLAGS)
AC_SUBST(ZEXY_VERSION)
AC_SUBST(REFERENCEPATH)
AC_SUBST(PDLIBDIR)
AC_SUBST(INCLUDES)
AC_SUBST(SOURCES)
AC_SUBST(LIBNAME)
AC_ARG_WITH(pdversion, [ --with-pdversion=<ver> enforce a certain pd-version (e.g. 0.37)])
AC_ARG_WITH(version, [ --with-version=<ver> enforce a certain zexy-version (e.g. 2.0)])
AC_ARG_WITH(extension, [ --with-extension=<ext> enforce a certain extension for the dynamic library (e.g. dll)])
AC_ARG_ENABLE(lpt, [ --enable-lpt enable parallelport-support])
AC_ARG_ENABLE(icc, [ --enable-icc enable ICC-support])
if test `uname -s` = Darwin;
then
AC_ARG_ENABLE(bundle, [ --enable-bundleloader use bundle_loader (default: autodetect)])
fi
dnl Checks for libraries.
dnl Replace `main' with a function in -lc:
AC_CHECK_LIB(c, main)
AC_CHECK_LIB(crtdll, fclose)
AC_CHECK_LIB(coldname, lseek)
AC_CHECK_LIB(kernel32, main)
dnl Replace `main' with a function in -lm:
AC_CHECK_LIB(m, main)
dnl Replace `main' with a function in -lpthread:
dnl AC_CHECK_LIB(pthread, main)
dnl Replace `main' with a function in -lstk:
dnl AC_CHECK_LIB(stk, main, STK=yes)
dnl for now i can test ICC only on linux
dnl LATER we might want to use it for other platforms (namely:windoze) too
if test `uname -s` = Linux;
then
AC_ARG_ENABLE(icc, [ --enable-icc enable ICC-support])
if test "$enable_icc" = "yes"; then
CC=icc
LD=icc
fi
fi
if test $includedir
then
for id in $includedir
do
if test -d $id; then INCLUDES="-I$id $INCLUDES"; fi
done
fi
if test $libdir
then
for id in $libdir
do
if test -d $id; then LIBS="-L$id $LIBS"; fi
done
fi
if test $includedir
then
for id in $includedir
do
if test -d $id
then
INCLUDES="-I$id $INCLUDES"
fi
done
fi
AC_CHECK_LIB(pd, nullfn)
dnl Checks for header files.
AC_HEADER_STDC
AC_CHECK_HEADERS(stdlib.h stdio.h string.h math.h time.h sys/time.h)
dnl Checks for typedefs, structures, and compiler characteristics.
AC_HEADER_TIME
dnl Checks for library functions.
AC_FUNC_MMAP
AC_CHECK_FUNCS(select socket strerror)
dnl check for "-mms-bitfields" cflag
dnl why is there no generic compiler-check for a given flag ?
dnl it would make things so easy: AC_CHECK_FLAG([-mms-bitfields],,)
AC_MSG_CHECKING("ms-bitfields")
cat > conftest.c << EOF
int main(){
return 0;
}
EOF
if ${CC} ${INCLUDES} ${DFLAGS} -o conftest.o conftest.c ${CFLAGS} -mms-bitfields > /dev/null 2>&1
then
echo "yes"
CFLAGS="${CFLAGS} -mms-bitfields"
else
echo "no"
fi
dnl if we don't have $LD set, we set it to $(CC)
dnl LD=${LD:=$CC}
if test "x$LD" = "x"
then
if test "x$host" != "x"
then
LD=${host}-ld
if $(which ${LD} > /dev/null)
then
:
else
LD=""
fi
fi
fi
LD=${LD:=$CC}
dnl if we don't have $STRIP set, we set it to ${host}-strip or strip
if test "x$STRIP" = "x"
then
if test "x$host" != "x"
then
STRIP=${host}-strip
if $(which ${host}-strip > /dev/null)
then
:
else
STRIP="echo fake strip"
fi
else
STRIP=strip
fi
fi
dnl STRIP=${STRIP:=strip}
DFLAGS="-DZEXY_LIBRARY"
dnl Checks for pd-version, to set the correct help-path
AC_MSG_CHECKING("pd\>=0.37")
if test "$with_pdversion" != ""
then
echo -n "($with_pdversion)... "
PD_VERSION="$with_pdversion"
else
if test "x$cross_compiling" = "xno"
then
cat > conftest.c << EOF
#include <stdio.h>
#include "m_pd.h"
int main(){
printf("%d.%d\n", PD_MAJOR_VERSION, PD_MINOR_VERSION);
return 0;
}
EOF
if $CC $INCLUDES -o conftest.o conftest.c > /dev/null 2>&1
then
PD_VERSION=`./conftest.o`
else
PD_VERSION=""
fi
else
dnl we are cross-compiling...
echo -n "(X)..."
PD_VERSION="0.38"
fi
fi
let PD_MAJORVERSION=`echo $PD_VERSION | cut -d"." -f1`+0
let PD_MINORVERSION=`echo $PD_VERSION | cut -d"." -f2`+0
if test "$PD_MAJORVERSION" -gt 0 || test "$PD_MINORVERSION" -ge 37
then
REFERENCEPATH=extra/help-
echo "yes"
else
REFERENCEPATH=doc/5.reference/
echo "no"
fi
dnl check for zexy-version (but why...)
AC_MSG_CHECKING("zexy-version")
if test "$with_version" != ""
then
echo -n "($with_version)...forced "
ZEXY_VERSION="$with_version"
else
if test "x$cross_compiling" = "xno"
then
cat > conftest.c << EOF
#include <stdio.h>
#include "zexy.h"
int main(){
printf("%s\n", VERSION);
return 0;
}
EOF
if $CC $INCLUDES $DFLAGS -o conftest.o conftest.c > /dev/null 2>&1
then
ZEXY_VERSION=`./conftest.o`
echo "$ZEXY_VERSION"
else
ZEXY_VERSION="X"
echo "(unknown)"
fi
else
ZEXY_VERSION="X"
echo "(X)"
fi
fi
dnl
dnl OK, checks which machines are here now
dnl this needs some rethinking when cross-compiling (?)
dnl
if test `uname -s` = Linux;
then
LFLAGS="-export_dynamic -shared"
EXT=pd_linux
STRIPFLAGS="--strip-unneeded"
if test "$enable_icc" = "yes"; then
CC=icc
fi
if test $CC = "icc"
then
LD=$CC
LFLAGS="-ip -ipo_obj "$LFLAGS
CFLAGS="-ip -ipo_obj "$CFLAGS
else
:
fi
fi
dnl This should use '-bundle_loader /path/to/pd/bin/pd' instead of'-undefined suppress'
dnl then strip might do something
if test `uname -s` = Darwin;
then
LD=cc
EXT=pd_darwin
if test "$enable_bundleloader" = ""; then
if test "$PD_MAJORVERSION" -gt 0 || test "$PD_MINORVERSION" -ge 39; then
enable_bundleloader="yes"
else
enable_bundleloader="no"
fi
fi
if test "$enable_bundleloader" = "yes"; then
dnl i hope "prefix" points to where we want it...
dnl should it rather be @exec_prefix@ ???
LFLAGS="-bundle -bundle_loader @prefix@/bin/pd"
STRIPFLAGS=
else
LFLAGS="-bundle -undefined suppress -flat_namespace"
STRIPFLAGS=
fi
if test "$enable_lpt" = "yes"; then
AC_MSG_ERROR("lpt not supported on this platform");
fi
if test "$enable_lpt" = ""; then
AC_MSG_WARN("lpt not supported on this platform - disabling");
enable_lpt="no";
fi
fi
if test `uname | sed -e 's/^MINGW.*/NT/'` = NT;
then
LD=gcc
INCLUDES="-I@prefix@/src"
dnl mingw should (does?) define __WIN32__ which is now used
dnl DFLAGS="-DMSW -DNT"
LFLAGS="-shared @prefix@/bin/pd.dll"
EXT=dll
else
PDLIBDIR="/lib/pd"
dnl this is handled by AC_CHECK_LIB above
dnl LIBS="-lc -lm"
fi
if test `uname -s` = IRIX64;
then
LFLAGS="-n32 -DUNIX -DIRIX -DN32 -woff 1080,1064,1185 \
-OPT:roundoff=3 -OPT:IEEE_arithmetic=3 -OPT:cray_ivdep=true \
-shared -rdata_shared"
EXT=pd_irix6
dnl DFLAGS="-DUNIX -DIRIX6"
STRIPFLAGS="--strip-unneeded"
if test "$enable_lpt" = "yes"; then
AC_MSG_ERROR("lpt not supported on this platform");
fi
if test "$enable_lpt" = ""; then
AC_MSG_WARN("lpt not supported on this platform - disabling");
enable_lpt="no";
fi
fi
if test `uname -s` = IRIX32;
then
LFLAGS="-o32 -DUNIX -DIRIX -O2
-shared -rdata_shared"
EXT=pd_irix5
dnl DFLAGS="-DUNIX -DIRIX5"
STRIPFLAGS="--strip-unneeded"
if test "$enable_lpt" = "yes"; then
AC_MSG_ERROR("lpt not supported on this platform");
fi
if test "$enable_lpt" = ""; then
AC_MSG_WARN("lpt not supported on this platform - disabling");
enable_lpt="no";
fi
fi
if test "x$with_extension" != "x"
then
EXT=$with_extension
fi
dnl check for LPT
AC_MSG_CHECKING("parallel-port")
if test "$enable_lpt" != "no"
then
if test "$enable_lpt" = "yes"
then
DFLAGS="$DFLAGS -DZ_WANT_LPT"
echo "yes (forced)"
else
cat > conftest.c << EOF
# include <sys/io.h>
int main(){
ioperm(0x3bc, 8, 1);
outb(0, 0x3bc);
ioperm(0x3bc, 8, 0);
return 0;
}
EOF
if $CC $INCLUDES -o conftest.o conftest.c > /dev/null 2>&1
then
DFLAGS="$DFLAGS -DZ_WANT_LPT"
echo "yes"
else
echo "no"
fi
fi
else
echo "no (ignored)"
fi
AC_OUTPUT(Makefile)
rm -f conftest.*
./makesource.sh
|