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
|
$NetBSD: patch-ab,v 1.7 2008/02/28 19:32:21 drochner Exp $
--- configure.orig 2008-02-20 23:09:56.000000000 +0100
+++ configure
@@ -30309,7 +30309,7 @@ rm -f conftest.mmap
-if test "x$ac_cv_func_mmap_fixed_mapped" == "xyes"; then
+if test "x$ac_cv_func_mmap_fixed_mapped" = "xyes"; then
GST_HAVE_MMAP_TRUE=
GST_HAVE_MMAP_FALSE='#'
else
@@ -31522,7 +31522,7 @@ rm -f core conftest.err conftest.$ac_obj
echo "${ECHO_T}$flag_ok" >&6; }
- if test "x$ERROR_CFLAGS" == "x"
+ if test "x$ERROR_CFLAGS" = "x"
then
{ echo "$as_me:$LINENO: checking to see if compiler understands -errwarn=%all,no%E_EMPTY_DECLARATION,no%E_STATEMENT_NOT_REACHED,no%E_ARGUEMENT_MISMATCH,no%E_MACRO_REDEFINED" >&5
@@ -31585,7 +31585,7 @@ rm -f core conftest.err conftest.$ac_obj
echo "${ECHO_T}$flag_ok" >&6; }
- if test "x$ERROR_CFLAGS" == "x"
+ if test "x$ERROR_CFLAGS" = "x"
then
{ echo "$as_me:$LINENO: checking to see if compiler understands -errwarn=%all" >&5
@@ -37539,9 +37539,9 @@ if test x$USE_FLAC = xyes; then
HAVE_FLAC=no
- { echo "$as_me:$LINENO: checking for FLAC__seekable_stream_encoder_new in -lFLAC" >&5
-echo $ECHO_N "checking for FLAC__seekable_stream_encoder_new in -lFLAC... $ECHO_C" >&6; }
-if test "${ac_cv_lib_FLAC_FLAC__seekable_stream_encoder_new+set}" = set; then
+ { echo "$as_me:$LINENO: checking for FLAC__stream_encoder_new in -lFLAC" >&5
+echo $ECHO_N "checking for FLAC__stream_encoder_new in -lFLAC... $ECHO_C" >&6; }
+if test "${ac_cv_lib_FLAC_FLAC__stream_encoder_new+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
ac_check_lib_save_LIBS=$LIBS
@@ -37559,11 +37559,11 @@ cat >>conftest.$ac_ext <<_ACEOF
#ifdef __cplusplus
extern "C"
#endif
-char FLAC__seekable_stream_encoder_new ();
+char FLAC__stream_encoder_new ();
int
main ()
{
-return FLAC__seekable_stream_encoder_new ();
+return FLAC__stream_encoder_new ();
;
return 0;
}
|