Displaying 3 results from an estimated 3 matches for "op_enable_http".
2012 Sep 25
0
[libopusfile PATCH] build: implement autotools build system for libopusfile. (v3)
...uot;], [
+ AC_DEFINE([OP_ENABLE_ASSERTIONS], [1], [Enable assertions in code])
+])
+
+AC_ARG_ENABLE([http],
+ AS_HELP_STRING([--disable-http], [Disable HTTP support]),,
+ enable_http=yes)
+
+AS_IF([test "x$enable_http" != "xno"],
+ [openssl="openssl"
+ AC_DEFINE([OP_ENABLE_HTTP], [1], [Enable HTTP support])
+])
+
+PKG_CHECK_MODULES([DEPS], [ogg opus ]${openssl})
+
+AC_ARG_ENABLE([fixed-point],
+ AS_HELP_STRING([--enable-fixed-point], [Enable fixed-point calculation]),,
+ enable_fixed_point=no)
+AC_ARG_ENABLE([float],
+ AS_HELP_STRING([--disable-float], [Disable floatin...
2012 Sep 25
3
[libopusfile PATCH] build: implement autotools build system for libopusfile. (v2)
...uot;], [
+ AC_DEFINE([OP_ENABLE_ASSERTIONS], [1], [Enable assertions in code])
+])
+
+AC_ARG_ENABLE([http],
+ AS_HELP_STRING([--disable-http], [Disable HTTP support]),,
+ enable_http=yes)
+
+AS_IF([test "x$enable_http" != "xno"],
+ [openssl="openssl"
+ AC_DEFINE([OP_ENABLE_HTTP], [1], [Enable HTTP support])
+])
+
+PKG_CHECK_MODULES([DEPS], [ogg opus ]${openssl})
+
+AC_ARG_ENABLE([fixed-point],
+ AS_HELP_STRING([--enable-fixed-point], [Enable fixed-point calculation]),,
+ enable_fixed_point=no)
+AC_ARG_ENABLE([float],
+ AS_HELP_STRING([--disable-float], [Disable floatin...
2012 Sep 29
2
[libopusfile PATCH] build: implement autotools build system for libopusfile. (v4)
...uot;], [
+ AC_DEFINE([OP_ENABLE_ASSERTIONS], [1], [Enable assertions in code])
+])
+
+AC_ARG_ENABLE([http],
+ AS_HELP_STRING([--disable-http], [Disable HTTP support]),,
+ enable_http=yes)
+
+AS_IF([test "x$enable_http" != "xno"],
+ [openssl="openssl"
+ AC_DEFINE([OP_ENABLE_HTTP], [1], [Enable HTTP support])
+])
+
+PKG_CHECK_MODULES([DEPS], [ogg opus ]${openssl})
+
+AC_ARG_ENABLE([fixed-point],
+ AS_HELP_STRING([--enable-fixed-point], [Enable fixed-point
calculation]),,
+ enable_fixed_point=no)
+AC_ARG_ENABLE([float],
+ AS_HELP_STRING([--disable-float], [Disable floati...