-
Notifications
You must be signed in to change notification settings - Fork 537
/
configure.ac
324 lines (296 loc) · 10.3 KB
/
configure.ac
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
dnl Process this file with autoconf to produce a configure script.
AC_INIT(openwebrtc, 0.3.0)
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_MACRO_DIR(m4)
OWR_API_VERSION=0.3
AC_SUBST(OWR_API_VERSION)
OWR_API_VERSION_UNDERSCORE=0_3
AC_SUBST(OWR_API_VERSION_UNDERSCORE)
AC_CANONICAL_SYSTEM
AM_INIT_AUTOMAKE([1.11 -Wno-portability foreign])
AM_SILENT_RULES([yes])
AC_PROG_CC
AC_PROG_CC_STDC
AC_PROG_OBJC
LT_INIT
LIBOPENWEBRTC_CFLAGS="-DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_32 -DGLIB_VERSION_MAX_ALLOWED=GLIB_VERSION_2_32 -DGLIB_DISABLE_DEPRECATION_WARNINGS"
AC_SUBST(LIBOPENWEBRTC_CFLAGS)
GST_REQUIRED=1.4
PKG_CHECK_MODULES(GLIB, [glib-2.0, gobject-2.0, gmodule-2.0, gthread-2.0])
PKG_CHECK_MODULES(GSTREAMER, [gstreamer-1.0 >= $GST_REQUIRED gstreamer-rtp-1.0 >= $GST_REQUIRED gstreamer-video-1.0 >= $GST_REQUIRED gstreamer-audio-1.0 >= $GST_REQUIRED gstreamer-app-1.0 >= $GST_REQUIRED gstreamer-gl-1.0 >= $GST_REQUIRED])
PKG_CHECK_MODULES(NICE, [nice >= 0.1.7.1])
PKG_CHECK_MODULES(GSTREAMER_SCTP, [gstreamer-sctp-1.0])
PKG_CHECK_MODULES(ORC, [orc-0.4])
PKG_CHECK_MODULES(OPENSSL, [openssl >= 0.9.5 libcrypto ])
dnl build bridge or not
AC_MSG_CHECKING([whether to build bridge or not])
AC_ARG_ENABLE(bridge,
AC_HELP_STRING(
[--enable-bridge],
[Enable bridge @<:@default=yes@:>@]),
[case "${enableval}" in
yes) enable_bridge=yes ;;
no) enable_bridge=no ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-bridge) ;;
esac],[enable_bridge=yes])
AC_MSG_RESULT([$enable_bridge])
if test "x$enable_bridge" = xyes; then
AC_DEFINE(OWR_BRIDGE, 1,
[Define if building bridge])
PKG_CHECK_MODULES(SEED, [seed])
fi
AM_CONDITIONAL(OWR_BRIDGE, test x$enable_bridge = xyes)
AC_CONFIG_MACRO_DIR(m4)
# check for gobject-introspection
GOBJECT_INTROSPECTION_CHECK([1.30.0])
m4_ifdef([GTK_DOC_CHECK], [
GTK_DOC_CHECK([1.18],[--flavour no-tmpl])
],[
AM_CONDITIONAL([ENABLE_GTK_DOC], false)
])
dnl build debug or not
AC_MSG_CHECKING([whether to build debug or not])
AC_ARG_ENABLE(debug,
AC_HELP_STRING(
[--enable-debug],
[Enable debug @<:@default=yes@:>@]),
[case "${enableval}" in
yes) enable_debug=yes ;;
no) enable_debug=no ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-debug) ;;
esac],[enable_debug=yes])
AC_MSG_RESULT([$enable_debug])
if test "x$enable_debug" = xyes; then
AC_DEFINE(OWR_DEBUG, 1,
[Define if building debug])
fi
AM_CONDITIONAL(OWR_DEBUG, test x$enable_debug = xyes)
dnl build debug or not
AC_MSG_CHECKING([whether to build tests or not])
AC_ARG_ENABLE(tests,
AC_HELP_STRING(
[--enable-tests],
[Enable tests @<:@default=yes@:>@]),
[case "${enableval}" in
yes) enable_tests=yes ;;
no) enable_tests=no ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-tests) ;;
esac],[enable_tests=yes])
AC_MSG_RESULT([$enable_tests])
if test "x$enable_tests" = xyes; then
PKG_CHECK_MODULES(JSON_GLIB, [json-glib-1.0])
PKG_CHECK_MODULES(LIBSOUP, [libsoup-2.4])
AC_DEFINE(OWR_TESTS, 1,
[Define if building tests])
fi
AM_CONDITIONAL(OWR_TESTS, test x$enable_tests = xyes)
dnl build static or not
AC_MSG_CHECKING([whether to build static owr or not])
AC_ARG_ENABLE(owr-static,
AC_HELP_STRING(
[--enable-owr-static],
[Enable static owr @<:@default=no@:>@]),
[case "${enableval}" in
yes) enable_owr_static=yes ;;
no) enable_owr_static=no ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-owr-static) ;;
esac],[enable_owr_static=no])
AC_MSG_RESULT([$enable_owr_static])
if test "x$enable_owr_static" = xyes; then
AC_DEFINE(OWR_STATIC, 1,
[Define if building static])
fi
AC_SUBST(GST_STATIC_PLUGINS_DIR)
AM_CONDITIONAL(OWR_STATIC, test x$enable_owr_static = xyes)
dnl build GStreamer library or not
AC_MSG_CHECKING([whether to build owr-gst or not])
AC_ARG_ENABLE(owr-gst,
AC_HELP_STRING(
[--enable-owr-gst],
[Enable owr-gst @<:@default=no@:>@]),
[case "${enableval}" in
yes) enable_owr_gst=yes ;;
no) enable_owr_gst=no ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-owr-gst) ;;
esac],[enable_owr_gst=no])
AC_MSG_RESULT([$enable_owr_gst])
if test "x$enable_owr_gst" = xyes; then
if test x$enable_owr_static = xyes; then
AC_MSG_ERROR(owr-gst is not supported with owr-static)
fi
AC_DEFINE(OWR_GST, 1,
[Define if building owr-gst])
fi
AM_CONDITIONAL(OWR_GST, test x$enable_owr_gst = xyes)
dnl pick dependencies and build flags based on OS
case "$host_os" in
darwin*)
is_apple=yes
AC_CHECK_HEADER(AVFoundation/AVFoundation.h, ,
AC_MSG_ERROR(AVFoundation is needed while building for OS X or iOS),
[-])
AC_CHECK_HEADER(MobileCoreServices/MobileCoreServices.h, is_ios="yes",
is_ios="no", [-])
if test "x$is_ios" == "xno"; then
dnl OS X frameworks
OWR_DEVICE_LIST_EXT_LIBS="-framework AVFoundation "
else
dnl iOS frameworks
m4_foreach([check_header],
[[AssetsLibrary/AssetsLibrary.h], [CoreMedia/CoreMedia.h],
[CoreVideo/CoreVideo.h], [OpenGLES/ES2/gl.h],
[CoreAudio/CoreAudio.h], [AudioToolbox/AudioToolbox.h]],
AC_CHECK_HEADER([check_header], ,
AC_MSG_ERROR([check_header is needed while
building for iOS]),
[-]))
OWR_DEVICE_LIST_EXT_LIBS="-framework AssetsLibrary -framework CoreMedia \
-framework CoreVideo -framework AVFoundation -framework Foundation \
-framework OpenGLES -framework CoreAudio -framework AudioToolbox \
-weak_framework VideoToolbox -lc++ "
fi
;;
linux-android*)
is_android=yes
OWR_DEVICE_LIST_EXT_CFLAGS=""
OWR_DEVICE_LIST_EXT_LIBS=""
;;
linux*)
PKG_CHECK_MODULES(PULSE, [libpulse libpulse-mainloop-glib])
OWR_DEVICE_LIST_EXT_CFLAGS="\$(PULSE_CFLAGS)"
OWR_DEVICE_LIST_EXT_LIBS="\$(PULSE_LIBS)"
;;
esac
AM_CONDITIONAL(TARGET_APPLE, test x$is_apple = xyes)
dnl We substitute OWR_DEVICE_LIST_EXT_LIBS in the end
dnl generate java bindings or not
AC_MSG_CHECKING([whether to generate java bindings or not])
AC_ARG_ENABLE(owr-java,
AC_HELP_STRING(
[--enable-owr-java],
[Enable java owr @<:@default=no@:>@]),
[case "${enableval}" in
yes) enable_owr_java=yes ;;
no) enable_owr_java=no ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-owr-java) ;;
esac],[enable_owr_java=no])
AC_MSG_RESULT([$enable_owr_java])
if test "x$enable_owr_java" = xyes; then
if test "x$is_android" != xyes; then
AC_MSG_ERROR([--enable-owr-java is only valid when building for Android])
fi
if test "x$enable_shared" != xyes; then
AC_MSG_ERROR([--enable-owr-java needs --enabled-shared])
fi
AC_PATH_PROG(JAVAC, javac)
if test -z "$JAVAC"; then
AC_MSG_ERROR([You need 'javac' to build the Android bindings])
fi
AC_PATH_PROG(JAR, jar)
if test -z "$JAR"; then
AC_MSG_ERROR([You need 'jar' to build the Android bindings])
fi
AC_PATH_PROG(JAVADOC, javadoc)
if test -z "$JAVADOC"; then
AC_MSG_ERROR([You need 'javadoc' to build the Android bindings])
fi
AC_DEFINE(OWR_JAVA, 1,
[Define if generating bindings for java])
fi
AM_CONDITIONAL(OWR_JAVA, test x$enable_owr_java = xyes)
dnl The Jar file installation path is needed as well
AC_MSG_CHECKING([for jar installation path])
AC_ARG_WITH(jardir,
AS_HELP_STRING([--with-jardir],
[jar file installation path [LIBDIR/jni]]),
jardir=${withval}, jardir=${libdir}/jni)
AC_MSG_RESULT([$jardir])
AC_SUBST(jardir)
dnl The Javadoc installation path is needed as well
AC_MSG_CHECKING([for javadoc installation path])
AC_ARG_WITH(javadocdir,
AS_HELP_STRING([--with-javadocdir],
[javadoc file installation path [LIBDIR/share/javadoc]]),
javadocdir=${withval}, javadocdir=${datarootdir}/javadoc/openwebrtc)
AC_MSG_RESULT([$javadocdir])
AC_SUBST(javadocdir)
dnl Android SDK path is needed when Java bindings are enabled
AC_ARG_WITH(android-sdk,
AS_HELP_STRING([--with-android-sdk],
[path to the Android SDK]),
androidsdkdir=${withval}, androidsdkdir=)
if test "x$enable_owr_java" = xyes; then
AC_MSG_CHECKING([for android.jar])
if test "x$androidsdkdir" = x; then
AC_MSG_ERROR([Need path to the Android SDK when building Android bindings])
fi
ANDROID_CLASSPATH="$androidsdkdir/platforms/android-20/android.jar"
if ! test -f "$ANDROID_CLASSPATH"; then
ANDROID_CLASSPATH="$androidsdkdir/platforms/android-19/android.jar"
if ! test -f "$ANDROID_CLASSPATH"; then
AC_MSG_ERROR([Android SDK API level 19 or 20 not found])
fi
fi
AC_MSG_RESULT([$ANDROID_CLASSPATH])
fi
AC_SUBST(ANDROID_CLASSPATH)
dnl Android NDK path is needed when building for Android
AC_ARG_WITH(android-ndk,
AS_HELP_STRING([--with-android-ndk],
[path to the Android NDK]),
androidndkdir=${withval}, androidndkdir=)
if test "x$is_android" = xyes; then
AC_MSG_CHECKING([for the Android NDK prefix])
if test "x$androidndkdir" = x; then
AC_MSG_ERROR([Need path to the Android NDK when building for Android])
fi
case "$target" in
i?86-*|x86_64-*)
ndk_arch=x86;;
arm-*)
ndk_arch=arm;;
mips-*)
ndk_arch=mips;;
*)
AC_MSG_ERROR([Unsupported Android target: $target]);;
esac
if ! test -d "$androidndkdir"; then
AC_MSG_ERROR([Android NDK path $androidndkdir is invalid])
fi
ANDROID_NDK_PREFIX="$androidndkdir/platforms/android-9/arch-$ndk_arch/usr"
if ! test -d "$ANDROID_NDK_PREFIX"; then
AC_MSG_ERROR([Android NDK level 9 not found for arch $ndk_arch])
fi
AC_MSG_RESULT([$ANDROID_NDK_PREFIX])
fi
AC_SUBST(ANDROID_NDK_PREFIX)
if test "x$is_android" = xyes; then
dnl The GNU C++ STL is needed for JNI. This pkg-config file is
dnl only provided by Cerbero.
PKG_CHECK_MODULES(GNU_CXXSTL, [gnustl])
OWR_DEVICE_LIST_EXT_CFLAGS="$OWR_DEVICE_LIST_EXT_CFLAGS $GNU_CXXSTL_CFLAGS"
OWR_DEVICE_LIST_EXT_LIBS="$OWR_DEVICE_LIST_EXT_LIBS $GNU_CXXSTL_LIBS"
fi
AC_SUBST(OWR_DEVICE_LIST_EXT_CFLAGS)
AC_SUBST(OWR_DEVICE_LIST_EXT_LIBS)
AC_OUTPUT([
Makefile
bridge/Makefile
bridge/openwebrtc-bridge-$OWR_API_VERSION.pc
bridge/client/Makefile
bridge/seed/Makefile
bridge/shared/Makefile
bridge/worker/Makefile
gst/Makefile
gst/openwebrtc-gst-$OWR_API_VERSION.pc
owr/Makefile
owr/openwebrtc-$OWR_API_VERSION.pc
transport/Makefile
local/Makefile
tests/Makefile
bindings/Makefile
bindings/java/Makefile
docs/Makefile
docs/reference/Makefile
docs/reference/owr/Makefile
])