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
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
|
AC_PREREQ(2.59)
AC_INIT([xbmc-depends], [2.00], [http://trac.xbmc.org])
:${CFLAGS=""}
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_FILES([target/config.site native/config.site.native Makefile.include target/Toolchain.cmake])
AC_CANONICAL_HOST
AC_ARG_WITH([toolchain],
[AS_HELP_STRING([--with-toolchain],
[specify path to toolchain. Required for android. Defaults to xcode root for darwin, /usr for linux])],
[use_toolchain=$withval])
AC_ARG_WITH([tarballs],
[AS_HELP_STRING([--with-tarballs],
[path where tarballs will be saved [prefix/xbmc-tarballs]])],
[use_tarballs=$withval])
AC_ARG_WITH([cpu],
[AS_HELP_STRING([--with-cpu],
[optional. specify target cpu. guessed if not specified])],
[use_cpu=$withval],use_cpu=auto)
AC_ARG_WITH([ndk],
[AS_HELP_STRING([--with-ndk],
[specify path to ndk (required for android only)])],
[use_ndk=$withval])
AC_ARG_WITH([sdk-path],
[AS_HELP_STRING([--with-sdk-path],
[specify path to sdk (required for android only)])],
[use_sdk_path=$withval])
AC_ARG_WITH([sdk],
[AS_HELP_STRING([--with-sdk],
[spcify sdk platform version (optional for android). default is android-10])],
[use_sdk=$withval])
AC_ARG_ENABLE([gplv3],
[AS_HELP_STRING([--enable-gplv3],
[enable gplv3 components. default off for android, on everywhere else])],
[use_gplv3=1], [use_gplv3=auto])
AC_CHECK_PROG(HAVE_UNZIP,unzip,"yes","no",)
if test "x$HAVE_UNZIP" = "xno" ; then
AC_MSG_ERROR("Missing program: unzip")
fi
AC_CHECK_PROG(HAVE_ZIP,zip,"yes","no",)
if test "x$HAVE_ZIP" = "xno" ; then
AC_MSG_ERROR("Missing program: zip")
fi
AC_PATH_PROG(CURL,curl,"no")
if test "x$CURL" = "xno" ; then
AC_MSG_ERROR("Missing program: curl")
fi
AC_PATH_PROG(TAR,tar,"no")
if test "x$TAR" = "xno" ; then
AC_MSG_ERROR("Missing program: tar")
fi
use_host=$host_alias
if test "x$host" = "x$build"; then
use_host=$build_cpu-$build_os
fi
deps_dir=$use_host
tool_dir=$build_cpu-$build_os-native
cross_compiling="yes"
if test "x$host" = "x$build"; then
cross_compiling="no"
fi
passed_cflags="$CFLAGS"
passed_ldflags="$LDFLAGS"
passed_cxxflags="$CXXFLAGS"
platform_cc=gcc
platform_cxx=g++
case $host in
arm*-*linux-android*)
if test "x$use_cpu" = "xauto"; then
use_cpu="armeabi-v7a"
fi
if test "x$use_cpu" = "xarmeabi-v7a"; then
platform_cflags+=" -march=armv7-a -mtune=cortex-a9 -mfloat-abi=softfp -mfpu=neon "
fi
use_sdk="${use_sdk:-android-10}"
deps_dir="$use_host-$use_sdk"
platform_cflags+=" -DANDROID -Os -fexceptions"
platform_cxxflags="$platform_cflags -frtti"
platform_ldflags=" -L$prefix/$deps_dir/lib/$use_sdk"
platform_includes=" -I$prefix/$deps_dir/include/$use_sdk"
platform_os="android"
if test "x$use_gplv3" = "xauto"; then
use_gplv3=0
fi
#android builds are always cross
cross_compiling="yes"
;;
i*86*-android-linux-gnu*)
if test "x$use_cpu" = "xauto"; then
use_cpu=$host_cpu
fi
use_sdk="${use_sdk:-android-10}"
deps_dir="$use_host-$use_sdk"
platform_cflags="-DANDROID -Os -fexceptions"
platform_cxxflags="$platform_cflags -frtti"
platform_ldflags="-L$prefix/$deps_dir/lib/$use_sdk"
platform_includes="-I$prefix/$deps_dir/include/$use_sdk"
platform_os="android"
if test "x$use_gplv3" = "xauto"; then
use_gplv3=0
fi
#android builds are always cross
cross_compiling="yes"
;;
arm*-*-linux-gnu*)
if test "x$use_cpu" = "xauto"; then
use_cpu=$host_cpu
fi
use_toolchain="${use_toolchain:-/usr}"
platform_cflags+="-Os -fPIC -DPIC"
platform_cxxflags="$platform_cflags"
platform_ldflags="-Wl,-rpath-link=$prefix/$deps_dir/lib"
platform_os="linux"
;;
*i686*-linux-gnu*)
use_cpu=$host_cpu
use_toolchain="${use_toolchain:-/usr}"
platform_os="linux"
;;
x86_64*-linux-gnu*)
use_cpu=$host_cpu
use_toolchain="${use_toolchain:-/usr}"
platform_cflags="-fPIC -DPIC"
platform_cxxflags="$platform_cflags"
platform_os="linux"
;;
*darwin*)
if test "x$prefix" = "xNONE"; then
prefix=/Users/Shared/xbmc-depends
fi
use_tarballs="${use_tarballs:-$prefix/tarballs}"
use_xcodepath=`xcode-select -print-path`
use_xcodebuild=$use_xcodepath/usr/bin/xcodebuild
use_xcode=[`$use_xcodebuild -version | grep Xcode | awk '{ print $2}'`]
AC_MSG_RESULT(found xcodebuild at $use_xcodebuild)
use_build_toolchain=$use_xcodepath
#darwin builds are always cross
cross_compiling="yes"
platform_cflags="-Wl,-search_paths_first -no_compact_linkedit -std=gnu99 -no-cpp-precomp "
platform_ldflags="-Wl,-search_paths_first -no_compact_linkedit "
case $use_xcode in
3.*.*)
platform_cc=gcc-4.2
platform_cxx=g++-4.2
;;
*)
platform_cc=llvm-gcc-4.2
platform_cxx=llvm-g++-4.2
;;
esac
case $host in
*86*-apple-darwin)
found_sdk_version=[`$use_xcodebuild -showsdks | grep macosx | sort | tail -n 1 | grep -oE 'macosx[0-9.0-9]+' | cut -c 7-$NF`]
use_sdk="${use_sdk:-$found_sdk_version}"
use_toolchain="${use_toolchain:-$use_xcodepath}"
if test "$use_cpu" = "armv7"; then
AC_MSG_ERROR(error in configure of --with-arch=$use_cpu)
fi
case $use_sdk in
10.5);;
10.6);;
10.7);;
10.8);;
*)
AC_MSG_ERROR(error in configure of --with-sdk=$use_sdk)
esac
sdk_name=macosx$use_sdk
use_sdk_path=[`$use_xcodebuild -version -sdk $sdk_name Path`]
case $host in
x86_64-apple-darwin*)
if test "x$use_cpu" = "xauto"; then
use_cpu=x86_64
fi
;;
i*86-apple-darwin*)
if test "x$use_cpu" = "xauto"; then
use_cpu=i386
fi
;;
*)
AC_MSG_ERROR(error in configure of --with-arch=$use_cpu)
esac
platform_os="osx"
platform_min_version=macosx-version-min=10.6
;;
arm-apple-darwin*)
if test "x$use_cpu" = "xauto"; then
use_cpu=armv7
fi
if test "$use_cpu" != "armv7"; then
AC_MSG_ERROR(error in configure of --with-arch=$use_cpu)
fi
platform_min_version="iphoneos-version-min=4.2"
found_sdk_version=[`$use_xcodebuild -showsdks | grep iphoneos | sort | tail -n 1 | awk '{ print $2}'`]
use_sdk="${use_sdk:-$found_sdk_version}"
sdk_name=iphoneos$use_sdk
use_toolchain="${use_toolchain:-`$use_xcodebuild -version -sdk $sdk_name PlatformPath`/Developer}"
case $use_sdk in
4.*);;
5.*);;
6.*);;
*)
AC_MSG_ERROR(error in configure of --with-sdk=$use_sdk)
;;
esac
use_sdk_path=[`$use_xcodebuild -version -sdk $sdk_name | grep ^Path | awk '{ print $2}'`]
platform_os="ios"
platform_ldflags+=" -L$use_sdk_path/usr/lib/system "
platform_cflags="-mcpu=cortex-a8 -mfpu=neon -ftree-vectorize -mfloat-abi=softfp -pipe -Wno-trigraphs -fpascal-strings -O3 -Wreturn-type -Wunused-variable -fmessage-length=0 -gdwarf-2 "
;;
esac
platform_includes="-isysroot $use_sdk_path"
platform_cflags+=" -arch $use_cpu -m$platform_min_version "
platform_ldflags+=" -arch $use_cpu -m$platform_min_version -isysroot $use_sdk_path "
platform_cxxflags="$platform_cflags"
deps_dir=$sdk_name"_"$use_cpu
tool_dir=buildtools-native;
;;
*)
AC_MSG_ERROR(unsupported host ($use_host))
esac
platform_cflags+=" $passed_cflags"
platform_cxxflags+=" $passed_cxxflags"
platform_ldflags+=" $passed_ldflags"
platform_ldflags+=" $LIBS"
if test -n $use_build_toolchain; then
PATH_FOR_HOST=$use_toolchain:$use_toolchain/usr/bin:$use_toolchain/bin:$PATH
else
PATH_FOR_HOST=$PATH
fi
if test -n $use_build_toolchain; then
PATH_FOR_BUILD=$use_build_toolchain:$use_build_toolchain/usr/bin:$use_toolchain/bin:$PATH
else
PATH_FOR_BUILD=$PATH
fi
AC_PATH_TOOL([RANLIB], [ranlib],, $PATH_FOR_HOST)
AC_PATH_TOOL([LD], [ld],, $PATH_FOR_HOST)
AC_PATH_TOOL([AR], [ar],, $PATH_FOR_HOST)
AC_PATH_TOOL([READELF], [readelf],, $PATH_FOR_HOST)
AC_PATH_TOOL([STRIP], [strip],, $PATH_FOR_HOST)
AC_PATH_TOOL([AS], [as],, $PATH_FOR_HOST)
AC_PATH_TOOL([NM], [nm],, $PATH_FOR_HOST)
AC_PATH_TOOL([OBJDUMP], [objdump],, $PATH_FOR_HOST)
AC_PATH_TOOL([CC],[$platform_cc],,$PATH_FOR_HOST)
AC_PATH_TOOL([CXX],[$platform_cxx],,$PATH_FOR_HOST)
AC_PROG_CPP
AC_PATH_PROG([RANLIB_FOR_BUILD], [ranlib], ranlib, $PATH_FOR_BUILD)
AC_PATH_PROG([LD_FOR_BUILD], [ld], ld, $PATH_FOR_BUILD)
AC_PATH_PROG([AR_FOR_BUILD], [ar], ar, $PATH_FOR_BUILD)
AC_PATH_PROG([READELF_FOR_BUILD], [readelf], readelf, $PATH_FOR_BUILD)
AC_PATH_PROG([STRIP_FOR_BUILD], [strip], strip, $PATH_FOR_BUILD)
AC_PATH_PROG([AS_FOR_BUILD], [as], as, $PATH_FOR_BUILD)
AC_PATH_PROG([NM_FOR_BUILD], [nm], nm, $PATH_FOR_BUILD)
AC_PATH_PROG([OBJDUMP_FOR_BUILD], [objdump], objdump, $PATH_FOR_BUILD)
AC_PATH_PROG([CC_FOR_BUILD],[gcc llvm-gcc $platform_cc], gcc, $PATH_FOR_BUILD)
AC_PATH_PROG([CXX_FOR_BUILD],[g++ llvm-g++ $platform_cxx], g++, $PATH_FOR_BUILD)
AC_CHECK_LIB([z], [main], has_zlib=1, AC_MSG_WARN("No zlib support in toolchain. Will build libz."); has_zlib=0)
AC_SEARCH_LIBS([iconv_open],iconv, link_iconv=$ac_cv_search_iconv_open, link_iconv=-liconv; AC_MSG_WARN("No iconv support in toolchain. Will build libiconv."); need_libiconv=1)
AC_TRY_LINK([#include <locale.h>],[struct lconv* test=localeconv();], has_localeconv=yes, AC_MSG_WARN("No localeconv support in toolchain. Using replacement."); has_localeconv=no)
AC_CHECK_LIB([crystax], [main], has_libcrystax=1, has_libcrystax=0)
if test "x$use_gplv3" = "xauto"; then
use_gplv3=1
fi
if test "$link_iconv" = "none required"; then
link_iconv=
fi
if test "x$prefix" = "xNONE"; then
AC_MSG_ERROR([No prefix path defined. Use for ex: --prefix=/opt/xbmc-depends]);
fi
if test -z $use_tarballs; then
use_tarballs=$prefix/xbmc-tarballs
fi
if test "$platform_os" == "android"; then
if test -z $use_ndk; then
AC_MSG_ERROR("NDK path is required for android")
fi
if test -z $use_sdk_path; then
AC_MSG_ERROR("SDK path is required for android")
fi
if [ ! test -f $use_sdk_path/tools/zipalign ]; then
AC_MSG_ERROR(verify sdk path)
fi
if [ ! test -f $use_ndk/sources/android/native_app_glue/android_native_app_glue.h ]; then
AC_MSG_ERROR(verify ndk path)
fi
fi
# Some dumb checks to see if paths might be correct.
if [ ! `mkdir -p $prefix/$deps_dir/include` ]; then
AC_MSG_ERROR(unable to create $prefix/$deps_dir/include. verify that the path and permissions are correct.)
fi
if [ ! `mkdir -p $prefix/$deps_dir/lib` ]; then
AC_MSG_ERROR(unable to create $prefix/$deps_dir/lib. verify that the path and permissions are correct.)
fi
if [ ! `mkdir -p $prefix/$deps_dir/share` ]; then
AC_MSG_ERROR(unable to create $prefix/$deps_dir/share. verify that the path and permissions are correct.)
fi
if [ ! `mkdir -p $prefix/$tool_dir/include` ]; then
AC_MSG_ERROR(unable to create $prefix/$tool_dir/include. verify that the path and permissions are correct.)
fi
if [ ! `mkdir -p $prefix/$tool_dir/lib` ]; then
AC_MSG_ERROR(unable to create $prefix/$tool_dir/lib. verify that the path and permissions are correct.)
fi
if [ ! `mkdir -p $prefix/$tool_dir/share` ]; then
AC_MSG_ERROR(unable to create $prefix/$tool_dir/share. verify that the path and permissions are correct.)
fi
if [ ! `mkdir -p $prefix/tool_dir/bin` ]; then
AC_MSG_ERROR(unable to create $prefix/$tool_dir/share. verify that the path and permissions are correct.)
fi
if [ ! `mkdir -p $use_tarballs` ]; then
AC_MSG_ERROR(unable to create tarballs dir. verify that the path and permissions are correct.)
fi
if test "$platform_os" == "android"; then
echo
if [ ! `mkdir -p $prefix/$deps_dir/include/$use_sdk` ]; then
AC_MSG_ERROR(unable to create $prefix/$deps_dir/include/$use_sdk. verify that the path and permissions are correct.)
fi
if [ ! `mkdir -p $prefix/$deps_dir/lib/$use_sdk` ]; then
AC_MSG_ERROR(unable to create $prefix/$deps_dir/lib/$use_sdk. verify that the path and permissions are correct.)
fi
fi
if test "$platform_os" == "android"; then
echo -e
AC_SUBST(use_sdk_path)
AC_SUBST(use_ndk)
AC_SUBST(use_sdk)
fi
AC_SUBST(use_host)
AC_SUBST(deps_dir)
AC_SUBST(tool_dir)
AC_SUBST(use_cpu)
AC_SUBST(use_toolchain)
AC_SUBST(use_build_toolchain)
AC_SUBST(use_tarballs)
AC_SUBST(cross_compiling)
AC_SUBST(platform_cflags)
AC_SUBST(platform_cxxflags)
AC_SUBST(platform_ldflags)
AC_SUBST(platform_includes)
AC_SUBST(platform_os)
AC_SUBST(has_zlib)
AC_SUBST(link_iconv)
AC_SUBST(need_libiconv)
AC_SUBST(use_gplv3)
AC_SUBST(has_libcrystax)
AC_OUTPUT
echo -e "toolchain:\t $use_toolchain"
echo -e "cpu:\t\t $use_cpu"
echo -e "host:\t\t $use_host"
if test "$platform_os" == "android"; then
echo -e "sdk-platform:\t $use_sdk"
fi
if test "$platform_os" == "ios"; then
simulator_sdk_path=[`$use_xcodebuild -version -sdk iphonesimulator$use_sdk | grep ^Path | awk '{ print $2}'`]
cp -vf $simulator_sdk_path/usr/include/crt_externs.h $prefix/$deps_dir/include
fi
if test "x$has_localeconv" == "xno" && test "$platform_os" == "android"; then
cp -vf target/android-libc-replacements/locale.h $prefix/$deps_dir/include/
fi
cp -vf target/config.site $prefix/$deps_dir/share
cp -vf target/Toolchain.cmake $prefix/$deps_dir/share
cp -vf native/config.site.native $prefix/$tool_dir/share/config.site
|