forked from FFMS/ffms2
-
Notifications
You must be signed in to change notification settings - Fork 1
/
configure
executable file
·650 lines (584 loc) · 17.9 KB
/
configure
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
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
#!/bin/bash
if [ "$1" = "-h" -o "$1" = "--help" ]; then
echo "Usage: ./configure [options]"
echo ""
echo "available options:"
echo ""
echo " --help print this message"
echo " --enable-avisynth-c enables avisynth c plugin support"
echo " --enable-avisynth-cpp enables avisynth c++ plugin support"
echo " --enable-avxsynth enables avxsynth plugin support (linux, osx only; deprecated)"
echo " --enable-vapoursynth enables vapoursynth plugin support"
echo " --enable-debug adds -g, doesn't strip"
echo " --enable-gprof adds -pg, doesn't strip"
echo " --enable-pic build position-independent code"
echo " --enable-shared build libffms2.so"
echo " --optlevel=olev GCC optimization level [0-3, s, fast] (2)"
echo " --avs-plugindir=PLUGINDIR location of AviSynth plugin directory,
default is [libdir]/avisynth"
echo " --avx-plugindir=PLUGINDIR location of AvxSynth plugin directory,
default is [libdir]/avxsynth"
echo " --vs-plugindir=PLUGINDIR location of VapourSynth plugin directory,
default is [libdir]/vapoursynth"
echo " --extra-cppflags=EFLAGS add EFLAGS to CPPFLAGS"
echo " --extra-cflags=ECFLAGS add ECFLAGS to CFLAGS"
echo " --extra-cxxflags=EFLAGS add EFLAGS to CXXFLAGS"
echo " --extra-ldflags=ELDFLAGS add ELDFLAGS to LDFLAGS"
echo " --extra-soflags=ESOFLAGS add ESOFLAGS to SOFLAGS"
echo " --host=HOST build programs to run on HOST"
echo " --cross-prefix=PREFIX use PREFIX for compilation tools"
echo " --sysroot=SYSROOT root of cross-build tree"
echo ""
exit 1
fi
# [cc/cxx]_check will fail on non-windows because of wmain/municode
# unless we check for mingw first
if [[ "$1" =~ "--cross-prefix=*-w64-mingw32-" ]]; then
mingw_build="yes"
else
mingw_build="no"
fi
log_check() {
echo -n "checking $1... " >> config.log
}
log_ok() {
echo "yes" >> config.log
}
log_fail() {
echo "no" >> config.log
}
log_msg() {
echo "$1" >> config.log
}
cpp_check() {
log_check "whether $3 is true"
rm -f conftest.c
[ -n "$1" ] && echo "#include <$1>" > conftest.c
echo -e "#if !($3) \n#error $4 \n#endif " >> conftest.c
if $CC conftest.c $CPPFLAGS $2 -E -o conftest >conftest.log 2>&1; then
res=$?
log_ok
else
res=$?
log_fail
log_msg "--------------------------------------------------"
cat conftest.log >> config.log
log_msg "--------------------------------------------------"
fi
return $res
}
cc_check() {
if [ -z "$3" ]; then
if [ -z "$1$2" ]; then
log_check "whether $CC works"
elif [ -z "$1" ]; then
log_check "for $2"
else
log_check "for $1"
fi
elif [ -z "$1" ]; then
log_check "whether $CC supports $3"
else
log_check "for $3 in $1";
fi
rm -f conftest.c
[ -n "$1" ] && echo "#include <$1>" > conftest.c
if [ "$mingw_build" = "yes" ]; then
echo "int wmain () { $3 return 0; }" >> conftest.c
IDXFLAGS=-municode
else
echo "int main () { $3 return 0; }" >> conftest.c
fi
if $CC conftest.c $CPPFLAGS $CFLAGS $2 $LDFLAGS $IDXFLAGS -o conftest >conftest.log 2>&1; then
res=$?
log_ok
else
res=$?
log_fail
log_msg "Failed commandline was:"
log_msg "--------------------------------------------------"
log_msg "$CC conftest.c $CFLAGS $LDFLAGS $2"
cat conftest.log >> config.log
log_msg "--------------------------------------------------"
fi
return $res
}
cxx_check() {
if [ -z "$3" ]; then
if [ -z "$1$2" ]; then
log_check "whether $CXX works"
elif [ -z "$1" ]; then
log_check "for $2"
else
log_check "for $1"
fi
elif [ -z "$1" ]; then
log_check "whether $CXX supports $3"
else
log_check "for $3 in $1";
fi
rm -f conftest.c
[ -n "$1" ] && echo "#include <$1>" > conftest.c
if [ "$mingw_build" = "yes" ]; then
echo "int wmain () { $3 return 0; }" >> conftest.c
IDXFLAGS=-municode
else
echo "int main () { $3 return 0; }" >> conftest.c
fi
if $CXX conftest.c $CPPFLAGS $CXXFLAGS $2 $LDFLAGS $IDXFLAGS -o conftest >conftest.log 2>&1; then
res=$?
log_ok
else
res=$?
log_fail
log_msg "Failed commandline was:"
log_msg "--------------------------------------------------"
log_msg "$CXX conftest.c $CXXFLAGS $LDFLAGS $2"
cat conftest.log >> config.log
log_msg "--------------------------------------------------"
fi
return $res
}
define() {
echo "#define $1$([ -n "$2" ] && echo " $2" || echo " 1")" >> config.h
}
die() {
log_msg "DIED: $@"
echo "$@"
exit 1
}
rm -f config.h config.mak config.log ffms2.pc rcinfo.h ffmsdll.rc.h ffmsindexexe.rc.h conftest*
prefix='/usr/local'
exec_prefix='${prefix}'
bindir='${exec_prefix}/bin'
libdir='${exec_prefix}/lib'
includedir='${prefix}/include'
libdirpc='${libdir}'
includedirpc='${includedir}'
avsplugindir='${libdir}/avisynth'
avxplugindir='${libdir}/avxsynth'
vsplugindir='${libdir}/vapoursynth'
DEVNULL='/dev/null'
avs="no"
avsgcc="no"
avsplug="no"
avx="no"
vapoursynth="no"
debug="no"
gprof="no"
pic="no"
shared="no"
CPPFLAGS="$CPPFLAGS -I. -Iinclude -D_FILE_OFFSET_BITS=64 -DFFMS_EXPORTS -fno-omit-frame-pointer"
CFLAGS="$CFLAGS -Wall"
CXXFLAGS="$CXXFLAGS -Wall -D__STDC_CONSTANT_MACROS --std=c++11"
LDFLAGS="$LDFLAGS"
SOFLAGS="$SOFLAGS"
RCFLAGS="$RCFLAGS"
HAVE_GETOPT_LONG=1
olev="2"
cross_prefix=""
EXE=""
# parse options
for opt do
optarg="${opt#*=}"
case "$opt" in
--prefix=*)
prefix="$optarg"
;;
--exec-prefix=*)
exec_prefix="$optarg"
;;
--bindir=*)
bindir="$optarg"
;;
--libdir=*)
libdir="$optarg"
;;
--includedir=*)
includedir="$optarg"
;;
--enable-avs|--enable-avisynth|--enable-avisynth-c|--enable-avsc)
avs="yes"
avsplug="yes"
;;
--enable-avsgcc|--enable-avisynthgcc|--enable-avisynth-cpp|--enable-avscpp)
avsgcc="yes"
avsplug="yes"
;;
--enable-avx|--enable-avxsynth)
avx="yes"
;;
--enable-vs|--enable-vapoursynth)
vapoursynth="yes"
;;
--optlevel=*)
olev="$optarg"
;;
--avs-plugindir=*|--avisynth-plugindir=*)
avsplugindir="$optarg"
;;
--avx-plugindir=*|--avxsynth-plugindir=*)
avxplugindir="$optarg"
;;
--vs-plugindir=*|--vapoursynth-plugindir=*)
vsplugindir="$optarg"
;;
--extra-cppflags=*)
CPPFLAGS="$CPPFLAGS ${opt#--extra-cppflags=}"
;;
--extra-cflags=*)
CFLAGS="$CFLAGS ${opt#--extra-cflags=}"
;;
--extra-cxxflags=*)
CXXFLAGS="$CXXFLAGS ${opt#--extra-cxxflags=}"
;;
--extra-ldflags=*)
LDFLAGS="$LDFLAGS ${opt#--extra-ldflags=}"
;;
--extra-soflags=*)
SOFLAGS="$SOFLAGS ${opt#--extra-soflags=}"
;;
--enable-debug)
debug="yes"
;;
--enable-gprof)
CFLAGS="$CFLAGS -pg"
LDFLAGS="$LDFLAGS -pg"
gprof="yes"
;;
--enable-pic)
pic="yes"
;;
--enable-shared)
shared="yes"
;;
--host=*)
host="${opt#--host=}"
;;
--cross-prefix=*)
cross_prefix="${opt#--cross-prefix=}"
;;
--sysroot=*)
CFLAGS="$CFLAGS --sysroot=${opt#--sysroot=}"
LDFLAGS="$LDFLAGS --sysroot=${opt#--sysroot=}"
;;
*)
echo "Unknown option $opt, ignored"
;;
esac
done
CC="${CC-${cross_prefix}gcc}"
CXX="${CXX-${cross_prefix}g++}"
AR="${AR-${cross_prefix}ar}"
RANLIB="${RANLIB-${cross_prefix}ranlib}"
STRIP="${STRIP-${cross_prefix}strip}"
RC=""
if [ -z "$host" -a -z "$cross_prefix" ]; then
host=`./config.guess`
else
host="${cross_prefix%%-}"
fi
# normalize a triplet into a quadruplet
host=`./config.sub $host`
# split $host
host_cpu="${host%%-*}"
host="${host#*-}"
host_vendor="${host%%-*}"
host_os="${host#*-}"
case $host_os in
beos*)
SYS="BEOS"
;;
darwin*)
SYS="MACOSX"
if [ "$pic" = "no" ]; then
cc_check "" -mdynamic-no-pic && CFLAGS="$CFLAGS -mdynamic-no-pic"
fi
;;
freebsd*)
SYS="FREEBSD"
;;
kfreebsd*-gnu)
SYS="FREEBSD"
;;
netbsd*)
SYS="NETBSD"
;;
openbsd*)
SYS="OPENBSD"
;;
*linux*)
SYS="LINUX"
;;
cygwin*)
SYS="MINGW"
EXE=".exe"
DEVNULL="NUL"
pic="no"
if cc_check "" -mno-cygwin; then
CFLAGS="$CFLAGS -mno-cygwin"
CXXFLAGS="$CXXFLAGS -mno-cygwin"
LDFLAGS="$LDFLAGS -mno-cygwin"
fi
;;
mingw*)
SYS="MINGW"
EXE=".exe"
DEVNULL="NUL"
;;
sunos*|solaris*)
SYS="SunOS"
;;
*)
die "Unknown system $host, edit the configure"
;;
esac
! cc_check && die "no working c compiler found
! cxx_check && die "no working c++ compiler found
if cc_check '' -std=gnu99 ; then
CFLAGS="$CFLAGS -std=gnu99"
elif cc_check '' -std=c99 ; then
CFLAGS="$CFLAGS -std=c99"
CPPFLAGS="$CPPFLAGS -D_POSIX_C_SOURCE=200112L -D_BSD_SOURCE -U__STRICT_ANSI__"
fi
if [ "$avs" = "yes" -a "$avsgcc" = "yes" ] ; then
msg="cannot activate both c++ and c plugin for avisynth; choose only one"
echo $msg
log_msg "$msg"
fi
if [ "$avx" = "yes" -a "$SYS" = "MINGW" ] ; then
msg="avxsynth support is invalid on Windows"
echo $msg
log_msg "$msg"
avx="no"
fi
if cpp_check '' '' "defined(_WIN32)" ; then
pic="no"
fi
#find ffmpeg
if ${cross_prefix}pkg-config --exists libavformat libavcodec libswscale libavutil 2>$DEVNULL; then
FFMPEG_LIBS="$FFMPEG_LIBS $(${cross_prefix}pkg-config --libs libavformat libavcodec libswscale libavutil)"
FFMPEG_CFLAGS="$FFMPEG_CFLAGS $(${cross_prefix}pkg-config --cflags libavformat libavcodec libswscale libavutil)"
fi
#check for the presence of swresample and avresample, prefer swresample if present
if ${cross_prefix}pkg-config --exists libswresample 2>$DEVNULL; then
FFMPEG_LIBS="$FFMPEG_LIBS $(${cross_prefix}pkg-config --libs libswresample)"
FFMPEG_CFLAGS="$FFMPEG_CFLAGS $(${cross_prefix}pkg-config --cflags libswresample) -DWITH_SWRESAMPLE"
RESAMPLE_LIB="swresample"
elif ${cross_prefix}pkg-config --exists libavresample 2>$DEVNULL; then
FFMPEG_LIBS="$FFMPEG_LIBS $(${cross_prefix}pkg-config --libs libavresample)"
FFMPEG_CFLAGS="$FFMPEG_CFLAGS $(${cross_prefix}pkg-config --cflags libavresample)"
RESAMPLE_LIB="avresample"
fi
if [ -z "$FFMPEG_LIBS" -a -z "$FFMPEG_CFLAGS" ]; then
FFMPEG_LIBS="-lavformat -lavcodec -lswscale -lavresample"
for lib in -l$RESAMPLE_LIB -lavutil -lm -lz -lbz2 -lpthread -lavifil32 -lrt; do
cc_check "" $lib && FFMPEG_LIBS="$FFMPEG_LIBS $lib"
done
fi
# As of 0eec06ed8747923faa6a98e474f224d922dc487d ffmpeg only adds -lrt to lavc's
# dnl LIBS, but lavu needs it, so move it to the end if it's present
FFMPEG_LIBS=$(echo $FFMPEG_LIBS | sed 's/\(.*\) -lrt\(.*\)/\1\2 -lrt/')
echo "checking whether linking with FFmpeg or Libav... "
ffmpegORlibav="Libav"
if cpp_check libavcodec/avcodec.h "$FFMPEG_CFLAGS $FFMPEG_LIBS" "LIBAVCODEC_VERSION_MICRO >= 100" ||
(cpp_check libavcodec/avcodec.h "$FFMPEG_CFLAGS $FFMPEG_LIBS" "LIBAVCODEC_VERSION_INT < AV_VERSION_INT(53, 47, 100)" &&
cc_check libavcodec/avcodec.h "$FFMPEG_CFLAGS $FFMPEG_LIBS" "int test = CODEC_ID_G2M;") ; then
ffmpegORlibav="FFmpeg"
CPPFLAGS="$CPPFLAGS -DFFMS_USE_FFMPEG_COMPAT"
fi
if ! cc_check libavformat/avformat.h "$FFMPEG_CFLAGS $FFMPEG_LIBS" "avcodec_send_packet( 0, 0 );" ||
! cc_check libswscale/swscale.h "$FFMPEG_CFLAGS $FFMPEG_LIBS" "swscale_version();" ; then
die "unable to link against $ffmpegORlibav"
fi
#find libz
if ! cc_check zlib.h -lz "deflate( 0, 0 );" ; then
die "unable to link against zlib"
fi
CPPFLAGS="$FFMPEG_CFLAGS $CPPFLAGS"
LDFLAGS="$FFMPEG_LIBS $LDFLAGS"
[ "${LDFLAGS/-lz/}" = "$LDFLAGS" ] && LDFLAGS="$LDFLAGS -lz"
# god do not shadow...
#if cc_check '' -Wshadow ; then
# CFLAGS="-Wshadow $CFLAGS"
# CXXFLAGS="-Wshadow $CXXFLAGS"
#fi
if [ "$shared" = "no" ] ; then
CFLAGS="$CFLAGS -DFFMS_STATIC"
CXXFLAGS="$CXXFLAGS -DFFMS_STATIC"
STATICDEF="-DFFMS_STATIC"
else
STATICDEF=""
fi
if [ "$avs" = "yes" -o "$avsgcc" = "yes" -o "$avx" = "yes" -o "$vapoursynth" = "yes" ] ; then
if [ "$shared" = "no" ] ; then
msg="plugin support is invalid when not building a shared library"
echo $msg
log_msg "$msg"
avs="no"
avsgcc="no"
avx="no"
vapoursynth="no"
fi
fi
if [ "$avs" = "yes" ] ; then
CFLAGS="$CFLAGS -DFFMS_CPLUGIN_SHARED"
CXXFLAGS="$CXXFLAGS -DFFMS_CPLUGIN_SHARED"
fi
if [ "$avsgcc" = "yes" ] ; then
CFLAGS="$CFLAGS -DAVSC_WIN32_GCC32"
CXXFLAGS="$CXXFLAGS -DAVSC_WIN32_GCC32"
fi
if [ "$pic" = "yes" ] ; then
CFLAGS="$CFLAGS -fPIC"
CXXFLAGS="$CXXFLAGS -fPIC"
# resolve textrels in the x86 asm
cc_check stdio.h -Wl,-Bsymbolic && LDFLAGS="$LDFLAGS -Wl,-Bsymbolic"
fi
if [ "$debug" != "yes" -a "$gprof" != "yes" ]; then
CFLAGS="$CFLAGS -fomit-frame-pointer"
CXXFLAGS="$CXXFLAGS -fomit-frame-pointer"
LDFLAGS="$LDFLAGS -s"
fi
if [ "$debug" = "yes" ]; then
CFLAGS="$CFLAGS -g"
CXXFLAGS="$CXXFLAGS -g"
olev="0"
test "x$?" != "x0" && pkg_failed=yes
fi
if [ "$optlevel" != "no" -a "$olev" = "0" ] ; then
CFLAGS="$CFLAGS"
CXXFLAGS="$CXXFLAGS"
else
CFLAGS="-O$olev $CFLAGS"
CXXFLAGS="-O$olev $CXXFLAGS"
fi
# generate config files
version=`./version.sh`
API=$(echo $version | cut -f 1 -d '.')
if [ "$SYS" = "MINGW" ] ; then
RC="${cross_prefix}windres"
last_commit_year=$(echo $(git log -1 --pretty=format:%ci | cut -f1 -d "-"))
ffms_version=$(echo $version | sed -e 's/\./,/g')
version_digits=$(echo $ffms_version | sed -e 's/,/ /g' | wc -w)
# if digits are missing, add them now
while [ "$version_digits" -lt 4 ]; do
ffms_version="${ffms_version},0"
version_digits=`expr $version_digits + 1`
done
ffms_name="FFmpegSource Index"
cpp_check "" "" "defined(_WIN64)" && ffms_name="$ffms_name x64"
cat > rcinfo.h << EOF
#define FFMS_VERSION $ffms_version
#define FFMS_VERSION_STRING "${ffms_version}\0"
#define FFMS_COPYRIGHT "Copyright (C) Project contributors 2009-${last_commit_year}\0"
EOF
cat > ffmsindexexe.rc.h << EOF
#define FFMS_NAME "${ffms_name}\0"
#define FFMS_DESCRIPTION "${ffms_name}\0"
EOF
if [ "$shared" = "yes" ] ; then
# now generate the rc file header
ffms_name="FFmpegSource"
[ "$avs" = "yes" ] && ffms_name="$ffms_name Avisynth C Plugin" || ffms_name="$ffms_name for Windows"
cpp_check "" "" "defined(_WIN64)" && ffms_name="$ffms_name x64"
[ "$avs" = "yes" ] && ffms_file="ffms${API}.dll" || ffms_file="libffms-${API}.dll"
cat > ffmsdll.rc.h << EOF
#define FFMS_NAME "${ffms_name}\0"
#define FFMS_DESCRIPTION "${ffms_name}\0"
#define FFMS_FILE "${ffms_file}\0"
EOF
fi
fi
rm -f conftest*
cat > config.mak << EOF
prefix=$prefix
exec_prefix=$exec_prefix
bindir=$bindir
libdir=$libdir
avsplugindir=$avsplugindir
avxplugindir=$avxplugindir
vsplugindir=$vsplugindir
includedir=$includedir
API=$API
CC=$CC
CXX=$CXX
PLC=$CC
PLPL=$CXX
CPPFLAGS=$CPPFLAGS
CFLAGS=$CFLAGS
CXXFLAGS=$CXXFLAGS
LDFLAGS=$LDFLAGS
AR=$AR
RANLIB=$RANLIB
RANLIBX=$RANLIB
STRIP=$STRIP
EXE=$EXE
DEVNULL=$DEVNULL
AVISYNTH=$avs
AVISYNTH_GCC=$avsgcc
AVSPLUG=$avsplug
AVXSYNTH=$avx
VAPOURSYNTH=$vapoursynth
SOFLAGS_USER=$SOFLAGS
SYS=$SYS
RC=$RC
RCFLAGS=$RCFLAGS
EOF
if [ "$shared" = "yes" ]; then
if [ "$SYS" = "MINGW" ]; then
# avisynth plugins have a generally different name than other things
if [ "$avs" = "yes" -o "$avsgcc" = "yes" -o "$vapoursynth" = "yes" ] ; then
echo "SONAME=ffms${API}.dll" >> config.mak
echo 'SOFLAGS=-Wl,--out-implib,$(IMPLIBNAME) -Wl,--enable-auto-image-base -Wl,--export-all-symbols' >> config.mak
else
echo "SONAME=libffms2-${API}.dll" >> config.mak
echo 'SOFLAGS=-Wl,--out-implib,$(IMPLIBNAME) -Wl,--enable-auto-image-base' >> config.mak
fi
echo "IMPLIBNAME=libffms2-${API}.dll.a" >> config.mak
elif [ "$SYS" = "MACOSX" ]; then
echo "SOSUFFIX=dylib" >> config.mak
echo "SONAME=ffms2.$API.dylib" >> config.mak
echo 'SOFLAGS=-dynamiclib -Wl,-single_module -Wl,-read_only_relocs,suppress -install_name $(DESTDIR)$(libdir)/$(SONAME)' >> config.mak
elif [ "$SYS" = "SunOS" ]; then
echo "SOSUFFIX=so" >> config.mak
echo "SONAME=ffms2.so.$API" >> config.mak
echo 'SOFLAGS=-Wl,-h,$(SONAME)' >> config.mak
else
echo "SOSUFFIX=so" >> config.mak
echo "SONAME=libffms2.so.$API" >> config.mak
echo 'SOFLAGS=-Wl,-soname,$(SONAME)' >> config.mak
fi
echo 'default: $(SONAME)' >> config.mak
fi
cat > ffms2.pc << EOF
# ffms2.pc. Generated internally by configure.
prefix=$prefix
exec_prefix=$exec_prefix
libdir=$libdir
includedir=$includedir
Name: ffms2
Description: The Fabulous FM Library 2
Requires.private: libavformat libavcodec libswscale libavutil lib$RESAMPLE_LIB
Version: $version
Libs.private: -lz
Libs: -L$libdirpc -lffms2
Cflags: -I$includedirpc $STATICDEF
EOF
cat > conftest.log <<EOF
avisynth-c: $avs
avisynth-cpp: $avsgcc
avxsynth: $avx
vapoursynth: $vapoursynth
debug: $debug
gprof: $gprof
PIC: $pic
shared: $shared
optlevel: $olev
EOF
echo >> config.log
cat conftest.log >> config.log
cat conftest.log
rm conftest.log
echo
echo "You can run 'make' now."