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
|
--- configure.ac (Revision 3521)
+++ configure.ac (Arbeitskopie)
@@ -187,7 +187,7 @@
AC_CHECK_FUNC([statvfs], X=, STATVFS_DEF=)
dnl If this would be done more specifically in Makefile.am
dnl via libburn_libburn_la_CFLAGS then undesired .o file names would emerge
-CFLAGS="$CFLAGS $STATVFS_DEF"
+CFLAGS="$STATVFS_DEF $CFLAGS"
dnl ts A91122
AC_ARG_ENABLE(track-src-odirect,
@@ -202,7 +202,7 @@
fi
dnl Avoid the need for libburn_libburn_la_CFLAGS in Makefile.am (ugly .o names)
dnl ### AC_SUBST(LIBBURN_O_DIRECT_DEF)
-CFLAGS="$CFLAGS $LIBBURN_O_DIRECT_DEF"
+CFLAGS="$LIBBURN_O_DIRECT_DEF $CFLAGS"
dnl ts A91116
AC_ARG_ENABLE(dvd-obs-64k,
@@ -215,7 +215,7 @@
LIBBURN_DVD_OBS_64K=
echo "disabled write size default 64 KB on DVD and BD"
fi
-CFLAGS="$CFLAGS $LIBBURN_DVD_OBS_64K"
+CFLAGS="$LIBBURN_DVD_OBS_64K $CFLAGS"
dnl ts A91218
AC_ARG_ENABLE(libcdio,
@@ -238,7 +238,7 @@
fi
else
echo "enabled EXPERIMENTAL use of libcdio as system adapter"
- CFLAGS="$CFLAGS $LIBCDIO_DEF"
+ CFLAGS="$LIBCDIO_DEF $CFLAGS"
LIBCDIO_REQUIRED=0.83
PKG_CHECK_MODULES(LIBCDIO, libcdio >= $LIBCDIO_REQUIRED)
@@ -286,15 +286,15 @@
, enable_debug=yes)
if test x$enable_debug != xyes; then
if test x$GCC = xyes; then
- CFLAGS="$CFLAGS -O3"
- CFLAGS="$CFLAGS -fexpensive-optimizations"
+ CFLAGS="-O3 $CFLAGS"
+ CFLAGS="-fexpensive-optimizations $CFLAGS"
fi
- CFLAGS="$CFLAGS -DNDEBUG"
+ CFLAGS="-DNDEBUG $CFLAGS"
else
if test x$GCC = xyes; then
- CFLAGS="$CFLAGS -g -pedantic -Wall"
+ CFLAGS="-g -pedantic -Wall $CFLAGS"
fi
- CFLAGS="$CFLAGS -DDEBUG"
+ CFLAGS="-DDEBUG $CFLAGS"
fi
dnl Determine target directory for libburn-*.pc
|