comparison configure.ac @ 628:e50c4e111698 openvg

Disable mbaf for OpenVG
author Thinker K.F. Li <thinker@branda.to>
date Fri, 16 Jul 2010 18:44:29 +0800
parents 97bf0ff7a038
children 7b4e80ab671a
comparison
equal deleted inserted replaced
627:97bf0ff7a038 628:e50c4e111698
59 AM_CONDITIONAL([SH_STEXT], [test x$sh_stext = xtrue]) 59 AM_CONDITIONAL([SH_STEXT], [test x$sh_stext = xtrue])
60 [if [ x"${sh_stext}" = xtrue ]; then] 60 [if [ x"${sh_stext}" = xtrue ]; then]
61 AC_DEFINE([SH_STEXT]) 61 AC_DEFINE([SH_STEXT])
62 [fi] 62 [fi]
63 63
64 AC_ARG_ENABLE([mbaf],
65 [ --disable-mbaf Turn off mbaf],
66 [case "${enableval}" in
67 yes) mbaf=true ;;
68 no) mbaf=false ;;
69 *) AC_MSG_ERROR([bad value ${enableval} for --disable-mbaf]) ;;
70 esac],[mbaf=true])
71
64 AC_ARG_ENABLE([X_supp], 72 AC_ARG_ENABLE([X_supp],
65 [ --disable-X_supp Turn off X backend], 73 [ --disable-X_supp Turn off X backend],
66 [case "${enableval}" in 74 [case "${enableval}" in
67 yes) X_supp=true ;; 75 yes) X_supp=true ;;
68 no) X_supp=false ;; 76 no) X_supp=false ;;
93 AC_DEFINE([SKIA_GRAPH_ENGINE]) 101 AC_DEFINE([SKIA_GRAPH_ENGINE])
94 cairo=false 102 cairo=false
95 [elif [ x"${openvg}" = xtrue ]; then ] 103 [elif [ x"${openvg}" = xtrue ]; then ]
96 AC_DEFINE([OPENVG_GRAPH_ENGINE]) 104 AC_DEFINE([OPENVG_GRAPH_ENGINE])
97 cairo=false 105 cairo=false
106 mbaf=false
98 [else] 107 [else]
99 AC_DEFINE([CAIRO_GRAPH_ENGINE]) 108 AC_DEFINE([CAIRO_GRAPH_ENGINE])
100 cairo=true 109 cairo=true
101 [fi] 110 [fi]
102 111
103 AM_CONDITIONAL([SKIA_GRAPH_ENGINE], [test x$skia = xtrue]) 112 AM_CONDITIONAL([SKIA_GRAPH_ENGINE], [test x$skia = xtrue])
104 AM_CONDITIONAL([OPENVG_GRAPH_ENGINE], [test x$openvg = xtrue]) 113 AM_CONDITIONAL([OPENVG_GRAPH_ENGINE], [test x$openvg = xtrue])
105 AM_CONDITIONAL([CAIRO_GRAPH_ENGINE], [test x"$cairo" = xtrue]) 114 AM_CONDITIONAL([CAIRO_GRAPH_ENGINE], [test x"$cairo" = xtrue])
115 AM_CONDITIONAL([MBAF], [test x"$mbaf" = xtrue])
106 116
107 AC_ARG_ENABLE([nodejs], 117 AC_ARG_ENABLE([nodejs],
108 [ --enable-nodejs Turn on nodejs support], 118 [ --enable-nodejs Turn on nodejs support],
109 [case "${enableval}" in 119 [case "${enableval}" in
110 yes) nodejs=true ;; 120 yes) nodejs=true ;;