forked from petterreinholdtsen/bs1770gain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.ac
executable file
·292 lines (258 loc) · 7.84 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
##
# configure.ac
# Copyright (C) 2015 Peter Belkner <[email protected]>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public
# License as published by the Free Software Foundation; either
# version 2.0 of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
# MA 02110-1301 USA
##
# http://www.freesoftwaremagazine.com/books/autotools_a_guide_to_autoconf_automake_libtool
# https://autotools.io/autoconf/arguments.html
# http://www.gnu.org/software/libidn/manual/html_node/Autoconf-tests.html
# http://www.clearchain.com/blog/posts/autotools
#
# AC_ARG_WITH (option-name, help-string, action-if-present, action-if-not-present)
# AC_CHECK_HEADER (header-file, [action-if-found], [action-if-not-found], [includes = `default-includes'])
# AC_CHECK_LIB (library, function, [action-if-found], [action-if-not-found], [other-libraries])
AC_INIT([bs1770gain], [0.4.9], [[email protected]], [], [http://bs1770gain.sourceforge.net/])
AM_INIT_AUTOMAKE([-Wall -Werror foreign])
AC_PROG_CC
AC_PROG_RANLIB
# test for win32 {
AC_MSG_CHECKING([for win32])
tmp=`mktemp`
cat << _ACEOF | gcc -xc -o "$tmp" -
#include <stdio.h>
int main()
{
#if defined (_WIN32) // {
puts("yes");
#else // } {
puts("no");
#endif // }
return 0;
}
_ACEOF
win32="`$tmp`"
rm -f "$tmp"
AM_CONDITIONAL([WIN32], [test x$win32 = xyes])
AC_MSG_RESULT($win32)
# }
# dealing with shared objects {
if test "x$win32" = "xyes"; then
SODIR='bin'
SOLIB='$(1)$(2)-$(3).dll'
BS1770GAIN_LDFLAGS="-static-libgcc -static-libstdc++"
else
SODIR='lib'
SOLIB='lib$(2).so.$(3)'
BS1770GAIN_LDFLAGS=""
fi
AC_SUBST(SODIR)
AC_SUBST(SOLIB)
AC_SUBST(BS1770GAIN_LDFLAGS)
# }
# test for FFmpeg {
FFSOX_TEMP_CPPFLAGS="${CPPFLAGS}"
FFSOX_TEMP_LDFLAGS="${LDFLAGS}"
FFSOX_TEMP_LIBS="${LIBS}"
unset withval
AC_ARG_WITH(ffmpeg, AC_HELP_STRING([--with-ffmpeg=[DIR]], [path to FFmpeg installation]),
ffmpeg=$withval, ffmpeg=yes)
if test "x$ffmpeg" != "xno"; then
if test "x$ffmpeg" != "xyes"; then
LDFLAGS="${LDFLAGS} -L$ffmpeg/lib"
CPPFLAGS="${CPPFLAGS} -I$ffmpeg/include"
if test "x$win32" = "xno"; then
export LD_LIBRARY_PATH="$ffmpeg/lib:${LD_LIBRARY_PATH}"
else
export PATH="$ffmpeg/bin:${PATH}"
fi
FFMPEG_PREFIX="$ffmpeg"
else
FFMPEG_PREFIX="/usr"
fi
AC_SUBST(FFMPEG_PREFIX)
fi
if test "x$ffmpeg" != "xno"; then
AC_CHECK_HEADER(libavutil/avutil.h,
AC_CHECK_LIB(avutil, avutil_version, [ffmpeg=yes LIBS="${LIBS} -lavutil"], ffmpeg=no),
ffmpeg=no)
fi
if test "x$ffmpeg" != "xno"; then
AC_CHECK_HEADER(libswresample/swresample.h,
AC_CHECK_LIB(swresample, swresample_version, [ffmpeg=yes LIBS="${LIBS} -lswresample"], ffmpeg=no),
ffmpeg=no)
fi
if test "x$ffmpeg" != "xno"; then
AC_CHECK_HEADER(libavcodec/avcodec.h,
AC_CHECK_LIB(avcodec, avcodec_version, [ffmpeg=yes LIBS="${LIBS} -lavcodec"], ffmpeg=no),
ffmpeg=no)
fi
if test "x$ffmpeg" != "xno"; then
AC_CHECK_HEADER(libavformat/avformat.h,
AC_CHECK_LIB(avformat, avformat_version, [ffmpeg=yes LIBS="${LIBS} -lavformat"], ffmpeg=no),
ffmpeg=no)
fi
if test "x$ffmpeg" == "xno" ; then
AC_MSG_ERROR([FFmpeg not found])
fi
# }
# test for SoX {
unset withval
AC_ARG_WITH(sox, AC_HELP_STRING([--with-sox=[DIR]], [path to SoX installation]),
sox=$withval, sox=yes)
if test "x$sox" != "xno"; then
if test "x$sox" != "xyes"; then
LDFLAGS="${LDFLAGS} -L$sox/lib"
CPPFLAGS="${CPPFLAGS} -I$sox/include"
if test "$win32" = "xno"; then
export LD_LIBRARY_PATH="$sox/lib:${LD_LIBRARY_PATH}"
else
export PATH="$sox/bin:${PATH}"
fi
SOX_PREFIX="$sox"
else
SOX_PREFIX="/usr"
fi
AC_SUBST(SOX_PREFIX)
fi
if test "x$sox" != "xno"; then
AC_CHECK_HEADER(sox.h,
AC_CHECK_LIB(sox, sox_version, [sox=yes LIBS="${LIBS} -lsox"], sox=no),
sox=no)
fi
if test "x$sox" == "xno" ; then
AC_MSG_ERROR([SoX not found])
fi
# }
# test for dynload {
unset withval
AC_ARG_ENABLE(dynload, AC_HELP_STRING([--enable-dynload], [load FFmpeg and SoX dynamically]),
dynload=yes, dynload=no)
if test "x$dynload" = "xyes"; then # {
AC_DEFINE([HAVE_FFSOX_DYNLOAD], [1],
[Define to 1 if SoX and FFmpeg should be loaded dynamically.])
# define avutil major version {
tmp=`mktemp`
cat << _ACEOF | gcc -xc ${CPPFLAGS} -o "$tmp" - ${LDFLAGS} ${LIBS}
#include <stdio.h>
#include <libavutil/avutil.h>
int main() { printf("%u",avutil_version()>>16); return 0; }
_ACEOF
FFSOX_AVUTIL_V="`$tmp`"
AC_SUBST(FFSOX_AVUTIL_V)
AC_DEFINE_UNQUOTED([FFSOX_AVUTIL_V], ["$FFSOX_AVUTIL_V"], [Define to libavutil major version.])
rm -f "$tmp"
# end }
# define swresample major version {
tmp=`mktemp`
cat << _ACEOF | gcc -xc ${CPPFLAGS} -o "$tmp" - ${LDFLAGS} ${LIBS}
#include <stdio.h>
#include <libswresample/swresample.h>
int main() { printf("%u",swresample_version()>>16); return 0; }
_ACEOF
FFSOX_SWRESAMPLE_V="`$tmp`"
AC_SUBST(FFSOX_SWRESAMPLE_V)
AC_DEFINE_UNQUOTED([FFSOX_SWRESAMPLE_V], ["$FFSOX_SWRESAMPLE_V"], [Define to libswresample major version.])
rm -f "$tmp"
# }
# define avcodec major version {
tmp=`mktemp`
cat << _ACEOF | gcc -xc ${CPPFLAGS} -o "$tmp" - ${LDFLAGS} ${LIBS}
#include <stdio.h>
#include <libavcodec/avcodec.h>
int main() { printf("%u",avcodec_version()>>16); return 0; }
_ACEOF
FFSOX_AVCODEC_V="`$tmp`"
AC_SUBST(FFSOX_AVCODEC_V)
AC_DEFINE_UNQUOTED([FFSOX_AVCODEC_V], ["$FFSOX_AVCODEC_V"], [Define to libavcodec major version.])
rm -f "$tmp"
# }
# define avformat major version {
tmp=`mktemp`
cat << _ACEOF | gcc -xc ${CPPFLAGS} -o "$tmp" - ${LDFLAGS} ${LIBS}
#include <stdio.h>
#include <libavformat/avformat.h>
int main() { printf("%u",avformat_version()>>16); return 0; }
_ACEOF
FFSOX_AVFORMAT_V="`$tmp`"
AC_SUBST(FFSOX_AVFORMAT_V)
AC_DEFINE_UNQUOTED([FFSOX_AVFORMAT_V], ["$FFSOX_AVFORMAT_V"], [Define to libavformat major version.])
rm -f "$tmp"
# }
# define sox major version {
tmp=`mktemp`
cat << _ACEOF | gcc -xc ${CPPFLAGS} -o "$tmp" - ${LDFLAGS} ${LIBS}
#include <stdio.h>
#include <string.h>
#include <sox.h>
int main()
{
puts(strcmp(sox_version(),"14.4.2")<0?"2":"3");
return 0;
}
_ACEOF
FFSOX_LIBSOX_V="`$tmp`"
AC_SUBST(FFSOX_LIBSOX_V)
AC_DEFINE_UNQUOTED([FFSOX_LIBSOX_V], ["$FFSOX_LIBSOX_V"], [Define to libsox major version.])
rm -f "$tmp"
# }
# reset linker flags
LDFLAGS="${FFSOX_TEMP_LDFLAGS}"
LIBS="${FFSOX_TEMP_LIBS}"
#test for dl {
if test "xyes" != "x$win32"; then # {
unset withval
AC_ARG_WITH(dl, AC_HELP_STRING([--with-dl=[DIR]], [path to libdl installation]),
dl=$withval, dl=yes)
if test "x$dl" != "xno"; then
if test "x$dl" != "xyes"; then
LDFLAGS="${LDFLAGS} -L$dl/lib"
CPPFLAGS="${CPPFLAGS} -I$dl/include"
fi
fi
if test "x$dl" != "xno"; then
AC_CHECK_HEADER(dlfcn.h,
AC_CHECK_LIB(dl, dlopen, [dl=yes LIBS="${LIBS} -ldl"], dl=no),
dl=no)
fi
if test "x$dl" == "xno" ; then
AC_MSG_ERROR([libdl not found])
fi # }
fi
# }
BS1770GAIN_TOOLS_ALL=bs1770gain-tools-all
BS1770GAIN_TOOLS_INSTALL=bs1770gain-tools-install
BS1770GAIN_TOOLS_UNINSTALL=bs1770gain-tools-uninstall
AC_MSG_NOTICE([loading FFmpeg and SoX dynamically])
else # } {
BS1770GAIN_TOOLS_ALL=bs1770gain-tools-nop
BS1770GAIN_TOOLS_INSTALL=bs1770gain-tools-nop
BS1770GAIN_TOOLS_UNINSTALL=bs1770gain-tools-nop
AC_MSG_NOTICE([linking FFmpeg and SoX])
fi # }
# }
AC_SUBST(BS1770GAIN_TOOLS_ALL)
AC_SUBST(BS1770GAIN_TOOLS_INSTALL)
AC_SUBST(BS1770GAIN_TOOLS_UNINSTALL)
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_FILES([
Makefile
libpbutil/Makefile
lib1770-2/Makefile
libffsox-2/Makefile
bs1770gain/Makefile
])
AC_OUTPUT