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
|
--- configure.orig 2014-03-18 03:42:33.000000000 +0900
+++ configure 2014-03-18 03:57:27.000000000 +0900
@@ -1048,6 +1048,7 @@
with_x
enable_pulseaudio
enable_lqt
+enable_v4lconvert
enable_libvisual
enable_libcdio
enable_musicbrainz
@@ -6324,7 +6325,7 @@
rm -rf conftest*
;;
-x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \
+amd64-*freebsd*|x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \
s390*-*linux*|s390*-*tpf*|sparc*-*linux*)
# Find out which ABI we are using.
echo 'int i;' > conftest.$ac_ext
@@ -6336,7 +6337,7 @@
case `/usr/bin/file conftest.o` in
*32-bit*)
case $host in
- x86_64-*kfreebsd*-gnu)
+ amd64-*freebsd*|x86_64-*kfreebsd*-gnu)
LD="${LD-ld} -m elf_i386_fbsd"
;;
x86_64-*linux*)
@@ -6355,7 +6356,7 @@
;;
*64-bit*)
case $host in
- x86_64-*kfreebsd*-gnu)
+ amd64-*freebsd*|x86_64-*kfreebsd*-gnu)
LD="${LD-ld} -m elf_x86_64_fbsd"
;;
x86_64-*linux*)
@@ -11240,7 +11241,7 @@
for ac_word in $CC $CFLAGS $CPPFLAGS $LDFLAGS; do
if test -n "$ac_prev"; then
case $ac_word in
- i?86 | x86_64 | ppc | ppc64)
+ amd64 | i?86 | x86_64 | ppc | ppc64)
if test -z "$ac_arch" || test "$ac_arch" = "$ac_word"; then
ac_arch=$ac_word
else
@@ -15396,9 +15397,9 @@
V4LCONVERT_REQUIRED="0.5.7"
have_v4lconvert=false
-# Check whether --enable-lqt was given.
-if test "${enable_lqt+set}" = set; then :
- enableval=$enable_lqt; case "${enableval}" in
+# Check whether --enable-v4lconvert was given.
+if test "${enable_v4lconvert+set}" = set; then :
+ enableval=$enable_v4lconvert; case "${enableval}" in
yes) test_v4lconvert=true ;;
no) test_v4lconvert=false ;;
esac
@@ -17345,7 +17346,7 @@
case $host_cpu in
i[3-7]86)
lqt_cpu_family=x86;;
- x86_64*)
+ amd64* | x86_64*)
lqt_cpu_family=x86;;
powerpc | powerpc64)
lqt_cpu_family=ppc;;
@@ -17520,7 +17521,7 @@
$as_echo "IA32" >&6; }
ARCH_X86=true
;;
- x86_64*)
+ amd64* | x86_64*)
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: x86_64" >&5
$as_echo "x86_64" >&6; }
ARCH_X86=true
|