Initial release including wifi display based on gst-rtsp-server-1.4.1
[platform/upstream/gstreamer.git] / common / m4 / as-compiler-flag.m4
1 dnl as-compiler-flag.m4 0.1.0
2
3 dnl autostars m4 macro for detection of compiler flags
4
5 dnl David Schleef <ds@schleef.org>
6 dnl Tim-Philipp Müller <tim centricular net>
7
8 dnl AS_COMPILER_FLAG(CFLAGS, ACTION-IF-ACCEPTED, [ACTION-IF-NOT-ACCEPTED])
9 dnl Tries to compile with the given CFLAGS.
10 dnl Runs ACTION-IF-ACCEPTED if the compiler can compile with the flags,
11 dnl and ACTION-IF-NOT-ACCEPTED otherwise.
12
13 AC_DEFUN([AS_COMPILER_FLAG],
14 [
15   AC_MSG_CHECKING([to see if compiler understands $1])
16
17   save_CFLAGS="$CFLAGS"
18   CFLAGS="$CFLAGS $1"
19
20   AC_TRY_COMPILE([ ], [], [flag_ok=yes], [flag_ok=no])
21   CFLAGS="$save_CFLAGS"
22
23   if test "X$flag_ok" = Xyes ; then
24     $2
25     true
26   else
27     $3
28     true
29   fi
30   AC_MSG_RESULT([$flag_ok])
31 ])
32
33 dnl AS_CXX_COMPILER_FLAG(CPPFLAGS, ACTION-IF-ACCEPTED, [ACTION-IF-NOT-ACCEPTED])
34 dnl Tries to compile with the given CPPFLAGS.
35 dnl Runs ACTION-IF-ACCEPTED if the compiler can compile with the flags,
36 dnl and ACTION-IF-NOT-ACCEPTED otherwise.
37
38 AC_DEFUN([AS_CXX_COMPILER_FLAG],
39 [
40   AC_REQUIRE([AC_PROG_CXX])
41
42   AC_MSG_CHECKING([to see if c++ compiler understands $1])
43
44   save_CPPFLAGS="$CPPFLAGS"
45   CPPFLAGS="$CPPFLAGS $1"
46
47   AC_LANG_PUSH(C++)
48
49   AC_TRY_COMPILE([ ], [], [flag_ok=yes], [flag_ok=no])
50   CPPFLAGS="$save_CPPFLAGS"
51
52   if test "X$flag_ok" = Xyes ; then
53     $2
54     true
55   else
56     $3
57     true
58   fi
59
60   AC_LANG_POP(C++)
61
62   AC_MSG_RESULT([$flag_ok])
63 ])
64
65 dnl AS_OBJC_COMPILER_FLAG(CPPFLAGS, ACTION-IF-ACCEPTED, [ACTION-IF-NOT-ACCEPTED])
66 dnl Tries to compile with the given CPPFLAGS.
67 dnl Runs ACTION-IF-ACCEPTED if the compiler can compile with the flags,
68 dnl and ACTION-IF-NOT-ACCEPTED otherwise.
69
70 AC_DEFUN([AS_OBJC_COMPILER_FLAG],
71 [
72   AC_REQUIRE([AC_PROG_OBJC])
73
74   AC_MSG_CHECKING([to see if Objective C compiler understands $1])
75
76   save_CPPFLAGS="$CPPFLAGS"
77   CPPFLAGS="$CPPFLAGS $1"
78
79   AC_LANG_PUSH([Objective C])
80
81   AC_TRY_COMPILE([ ], [], [flag_ok=yes], [flag_ok=no])
82   CPPFLAGS="$save_CPPFLAGS"
83
84   if test "X$flag_ok" = Xyes ; then
85     $2
86     true
87   else
88     $3
89     true
90   fi
91
92   AC_LANG_POP([Objective C])
93
94   AC_MSG_RESULT([$flag_ok])
95 ])
96