mirror of
https://github.com/jambonz/jambonz-infrastructure.git
synced 2025-12-19 09:07:44 +00:00
* initial changes for proxmox support * proxmox packer updates * terraform template for Proxmox jambonz-mini * update jambonz-mini to 0.8.3-3
34 lines
1.2 KiB
Diff
34 lines
1.2 KiB
Diff
--- configure.ac 2019-10-22 22:47:40.566582350 +0000
|
|
+++ configure.ac.new 2019-10-23 14:56:29.469206772 +0000
|
|
@@ -1563,6 +1563,20 @@
|
|
AM_CONDITIONAL([HAVE_LWS],[false])
|
|
fi
|
|
|
|
++dnl DH: Added for including google protobuf libs
|
|
++AC_ARG_WITH(grpc,
|
|
+ [AS_HELP_STRING([--with-grpc],
|
|
+ [enable support for google rpc (libgrpc++ and libgrpc)])],
|
|
+ [with_grpc="$withval"],
|
|
+ [with_grpc="no"])
|
|
+if test "$with_grpc" = "yes"; then
|
|
+ PKG_CHECK_MODULES([GRPC], [grpc++ grpc], [
|
|
+ AM_CONDITIONAL([HAVE_GRPC],[true])], [
|
|
+ AC_MSG_RESULT([no]); AM_CONDITIONAL([HAVE_GRPC],[false])])
|
|
+else
|
|
+ AM_CONDITIONAL([HAVE_GRPC],[false])
|
|
+fi
|
|
+
|
|
dnl ---------------------------------------------------------------------------
|
|
dnl - OpenLDAP SDK
|
|
dnl ---------------------------------------------------------------------------
|
|
@@ -1858,6 +1872,9 @@
|
|
src/Makefile
|
|
src/mod/Makefile
|
|
src/mod/applications/mod_audio_fork/Makefile
|
|
+ src/mod/applications/mod_google_tts/Makefile
|
|
+ src/mod/applications/mod_google_transcribe/Makefile
|
|
+ src/mod/applications/mod_dialogflow/Makefile
|
|
src/mod/applications/mod_abstraction/Makefile
|
|
src/mod/applications/mod_avmd/Makefile
|
|
src/mod/applications/mod_bert/Makefile
|