[Pkg-voip-commits] r2566 - in wengophone/trunk/debian: . patches patches/generic

Marco Nenciarini mnencia at costa.debian.org
Mon Oct 16 15:38:26 UTC 2006


Author: mnencia
Date: 2006-10-16 15:38:26 +0000 (Mon, 16 Oct 2006)
New Revision: 2566

Added:
   wengophone/trunk/debian/patches/generic/cmake-amr-plugin-oneshot.patch
   wengophone/trunk/debian/patches/generic/fix-varargs-alpha.patch
Removed:
   wengophone/trunk/debian/patches/generic/cmake-conditional-iLBC.patch
Modified:
   wengophone/trunk/debian/changelog
   wengophone/trunk/debian/control
   wengophone/trunk/debian/patches/generic/stun-fix-non-i386.patch
   wengophone/trunk/debian/patches/series
   wengophone/trunk/debian/rules
Log:
Removed unused build-dep
New upstream snapshot
Added patches: 
 + cmake-amr-plugin-oneshot
 + fix-varargs-alpha
Refreshed stun-fix-non-i386 patch
Deleted cmake-conditional-iLBC patch (merged upstream)


Modified: wengophone/trunk/debian/changelog
===================================================================
--- wengophone/trunk/debian/changelog	2006-10-15 13:13:29 UTC (rev 2565)
+++ wengophone/trunk/debian/changelog	2006-10-16 15:38:26 UTC (rev 2566)
@@ -1,9 +1,25 @@
-wengophone (2.0.0~rc4-svn8014-1) unstable; urgency=medium
+wengophone (2.0.0~rc4-svn8074-1) unstable; urgency=medium
 
+  * New upstream snapshot.
   * Removed iLBC codec from source. (Closes: #361327)
-  * Added patch cmake-conditional-iLBC.
+  * This version includes many new translations:
+     + German
+     + Spanish
+     + Italian
+     + Japanese
+     + Polish
+     + Swedish (Closes: #391349)
+     + Turkish
+     + Chinese
+  * Added patches
+     + cmake-amr-plugin-oneshot
+     + fix-varargs-alpha (Closes: #393218)
+  * Removed patches (merged upstream)
+     + cmake-fix-static-phapi
+     + cmake-amrplugin-pic-code
+     + cmake-static-owcurl
 
- -- Marco Nenciarini <mnencia at debian.org>  Thu, 12 Oct 2006 14:45:46 +0200
+ -- Marco Nenciarini <mnencia at debian.org>  Mon, 16 Oct 2006 17:35:47 +0200
 
 wengophone (2.0.0~rc4-svn7960-3) unstable; urgency=low
 

Modified: wengophone/trunk/debian/control
===================================================================
--- wengophone/trunk/debian/control	2006-10-15 13:13:29 UTC (rev 2565)
+++ wengophone/trunk/debian/control	2006-10-16 15:38:26 UTC (rev 2566)
@@ -6,9 +6,9 @@
  cmake, libqt4-dev, libgtk2.0-dev, libavcodec-dev (>= 0.cvs20060823-3.1),
  libavformat-dev (>= 0.cvs20060823-3.1), portaudio19-dev, libgnutls-dev,
  libboost-serialization-dev (>= 1.33.1-5), libboost-thread-dev (>= 1.33.1-5),
- libboost-test-dev (>= 1.33.1-5), libboost-regex-dev (>= 1.33.1-5),
- libboost-signals-dev (>= 1.33.1-5), libboost-program-options-dev (>= 1.33.1-5),
- uuid-dev, libasound2-dev, libspeex-dev, libssl-dev
+ libboost-regex-dev (>= 1.33.1-5), libboost-signals-dev (>= 1.33.1-5),
+ libboost-program-options-dev (>= 1.33.1-5), uuid-dev, libasound2-dev,
+ libspeex-dev, libssl-dev 
 Standards-Version: 3.7.2
 
 Package: wengophone

Added: wengophone/trunk/debian/patches/generic/cmake-amr-plugin-oneshot.patch
===================================================================
--- wengophone/trunk/debian/patches/generic/cmake-amr-plugin-oneshot.patch	                        (rev 0)
+++ wengophone/trunk/debian/patches/generic/cmake-amr-plugin-oneshot.patch	2006-10-16 15:38:26 UTC (rev 2566)
@@ -0,0 +1,160 @@
+Index: wengophone-2.0.0~rc4-svn8074/wifo/phapi/CMakeLists.txt
+===================================================================
+--- wengophone-2.0.0~rc4-svn8074.orig/wifo/phapi/CMakeLists.txt	2006-10-16 17:26:28.000000000 +0200
++++ wengophone-2.0.0~rc4-svn8074/wifo/phapi/CMakeLists.txt	2006-10-16 17:26:52.000000000 +0200
+@@ -95,6 +95,28 @@
+ # phapi plugins
+ set(phapi_amr_plugin_SRCS
+   phcodec-amr-wrapper.c
++  amrnb/interf_dec.c
++  amrnb/interf_enc.c
++  amrnb/sp_dec.c
++  amrnb/sp_enc.c
++  amrwb/dec_acelp.c
++  amrwb/dec_dtx.c
++  amrwb/dec_gain.c
++  amrwb/dec_if.c
++  amrwb/dec_lpc.c
++  amrwb/dec_main.c
++  amrwb/dec_rom.c
++  amrwb/dec_util.c
++  amrwb/enc_acelp.c
++  amrwb/enc_dtx.c
++  amrwb/enc_gain.c
++  amrwb/enc_if.c
++  amrwb/enc_lpc.c
++  amrwb/enc_main.c
++  amrwb/enc_rom.c
++  amrwb/enc_util.c
++  amrwb/if_rom.c
++
+ )
+ 
+ set(phapi_speex_plugin_SRCS
+@@ -406,9 +428,13 @@
+ ### phapi plugins
+ 
+ # amr
++include_directories(
++  amrwb
++  ambnb
++)
+ macro_add_plugin(phamrplugin ${phapi_amr_plugin_SRCS})
+ macro_add_compile_flags(phamrplugin ${PHAPI_OPTIMIZATION_FLAGS})
+-target_link_libraries(phamrplugin amrwb amrnb)
++target_link_libraries(phamrplugin)
+ 
+ # speex
+ #find_package(Speex REQUIRED)
+Index: wengophone-2.0.0~rc4-svn8074/wifo/CMakeLists.txt
+===================================================================
+--- wengophone-2.0.0~rc4-svn8074.orig/wifo/CMakeLists.txt	2006-10-16 17:26:28.000000000 +0200
++++ wengophone-2.0.0~rc4-svn8074/wifo/CMakeLists.txt	2006-10-16 17:26:52.000000000 +0200
+@@ -26,8 +26,6 @@
+   netlib
+   ortp
+   phapi-util
+-  phapi/amrnb
+-  phapi/amrwb
+   phapi/fidlib
+   phapi/gsm
+   phapi/ilbc
+Index: wengophone-2.0.0~rc4-svn8074/wifo/phapi/amrnb/CMakeLists.txt
+===================================================================
+--- wengophone-2.0.0~rc4-svn8074.orig/wifo/phapi/amrnb/CMakeLists.txt	2006-10-16 17:26:27.000000000 +0200
++++ /dev/null	1970-01-01 00:00:00.000000000 +0000
+@@ -1,38 +0,0 @@
+-project(amrnb)
+-
+-# needed include directories to build amrnb
+-# saves the variable in internal cache for later use
+-set(AMRNB_INCLUDE_DIRS
+-  ${CMAKE_CURRENT_SOURCE_DIR}
+-  CACHE INTERNAL "amrnb include directories"
+-)
+-
+-set(AMRNB_LIBRARY
+-  amrnb
+-  CACHE INTERNAL "amrnb library"
+-)
+-
+-# amrnb lib and dependencies
+-set(AMRNB_LINK_LIBRARIES
+-  ${AMRNB_LIBRARY}
+-)
+-
+-set(amrnb_SRCS
+-  interf_dec.c
+-  interf_enc.c
+-  sp_dec.c
+-  sp_enc.c
+-)
+-
+-include_directories(
+-  ${AMRNB_INCLUDE_DIRS}
+-)
+-
+-add_library(${AMRNB_LIBRARY} SHARED ${amrnb_SRCS})
+-
+-target_link_libraries(${AMRNB_LINK_LIBRARIES})
+-
+-macro_add_compile_flags(${AMRNB_LIBRARY}
+-  ${PHAPI_OPTIMIZATION_FLAGS}
+-)
+-
+Index: wengophone-2.0.0~rc4-svn8074/wifo/phapi/amrwb/CMakeLists.txt
+===================================================================
+--- wengophone-2.0.0~rc4-svn8074.orig/wifo/phapi/amrwb/CMakeLists.txt	2006-10-16 17:26:27.000000000 +0200
++++ /dev/null	1970-01-01 00:00:00.000000000 +0000
+@@ -1,51 +0,0 @@
+-project(amrwb)
+-
+-# needed include directories to build amrwb
+-# saves the variable in internal cache for later use
+-set(AMRWB_INCLUDE_DIRS
+-  ${CMAKE_CURRENT_SOURCE_DIR}
+-  CACHE INTERNAL "amrwb include directories"
+-)
+-
+-set(AMRWB_LIBRARY
+-  amrwb
+-  CACHE INTERNAL "amrwb library"
+-)
+-
+-# amrwb lib and dependencies
+-set(AMRWB_LINK_LIBRARIES
+-  ${AMRWB_LIBRARY}
+-)
+-
+-set(amrwb_SRCS
+-  dec_acelp.c
+-  dec_dtx.c
+-  dec_gain.c
+-  dec_if.c
+-  dec_lpc.c
+-  dec_main.c
+-  dec_rom.c
+-  dec_util.c
+-  enc_acelp.c
+-  enc_dtx.c
+-  enc_gain.c
+-  enc_if.c
+-  enc_lpc.c
+-  enc_main.c
+-  enc_rom.c
+-  enc_util.c
+-  if_rom.c
+-)
+-
+-include_directories(
+-  ${AMRWB_INCLUDE_DIRS}
+-)
+-
+-add_library(${AMRWB_LIBRARY} SHARED ${amrwb_SRCS})
+-
+-target_link_libraries(${AMRWB_LINK_LIBRARIES})
+-
+-macro_add_compile_flags(${AMRWB_LIBRARY}
+-  ${PHAPI_OPTIMIZATION_FLAGS}
+-)
+-

Deleted: wengophone/trunk/debian/patches/generic/cmake-conditional-iLBC.patch
===================================================================
--- wengophone/trunk/debian/patches/generic/cmake-conditional-iLBC.patch	2006-10-15 13:13:29 UTC (rev 2565)
+++ wengophone/trunk/debian/patches/generic/cmake-conditional-iLBC.patch	2006-10-16 15:38:26 UTC (rev 2566)
@@ -1,107 +0,0 @@
-Index: wengophone-2.0.0~rc4-svn8014/wifo/CMakeLists.txt
-===================================================================
---- wengophone-2.0.0~rc4-svn8014.orig/wifo/CMakeLists.txt	2006-10-09 00:59:06.000000000 +0000
-+++ wengophone-2.0.0~rc4-svn8014/wifo/CMakeLists.txt	2006-10-12 16:18:54.000000000 +0000
-@@ -19,6 +19,8 @@
-   )
- endif (MSVC)
- 
-+option(WITH_ILBC "Build phapi with iLBC codec" ON)
-+
- subdirs(
-   libosip2
-   eXosip
-@@ -30,7 +32,15 @@
-   phapi/amrwb
-   phapi/fidlib
-   phapi/gsm
--  phapi/ilbc
-+)
-+
-+if(WITH_ILBC)
-+  subdirs(
-+    phapi/ilbc
-+  )
-+endif (WITH_ILBC)
-+
-+subdirs(
-   phapi/speex
-   phapi/speexec
-   phapi/stun
-Index: wengophone-2.0.0~rc4-svn8014/wifo/phapi/CMakeLists.txt
-===================================================================
---- wengophone-2.0.0~rc4-svn8014.orig/wifo/phapi/CMakeLists.txt	2006-10-10 14:25:12.000000000 +0000
-+++ wengophone-2.0.0~rc4-svn8014/wifo/phapi/CMakeLists.txt	2006-10-12 17:05:04.000000000 +0000
-@@ -7,7 +7,6 @@
-   ${OSIP2_INCLUDE_DIRS}
-   ${EXOSIP_INCLUDE_DIRS}
-   ${ORTP_INCLUDE_DIRS}
--  ${ILBC_INCLUDE_DIRS}
-   ${STUN_INCLUDE_DIRS}
-   ${GSM_INCLUDE_DIRS}
-   ${OWUTIL_INCLUDE_DIRS}
-@@ -32,7 +31,6 @@
-   ${OSIP2_LIBRARY}
-   ${EXOSIP_LIBRARY}
-   ${ORTP_LIBRARY}
--  ${ILBC_LIBRARY}
-   ${STUN_LIBRARY}
-   ${GSM_LIBRARY}
-   ${PHAPI-UTIL_LIBRARY}
-@@ -54,7 +52,6 @@
-   -DUSE_WAVEIN_CBK=1
-   -DPSEUDO_AEC=0
-   -DNO_ECHO__SUPPRESSOR=1
--  -DENABLE_ILBC=1
-   -DOSIP_MT=1
-   -DENABLE_TRACE=0
-   -DPH_VIDEO_USELOCK=1
-@@ -68,6 +65,21 @@
-   add_definitions(-DSUBVERSION_REVISION="${SVN_REVISION}")
- endif (WITH_BUILDID)
- 
-+if (WITH_ILBC)
-+  set(PHAPI_INCLUDE_DIRS
-+    ${PHAPI_INCLUDE_DIRS}
-+    ${ILBC_INCLUDE_DIRS}
-+  )
-+  set(PHAPI_LINK_LIBRARIES
-+    ${PHAPI_LINK_LIBRARY}
-+    ${ILBC_LIBRARY}
-+  )
-+  set(PHAPI_DEFINITIONS
-+    ${PHAPI_DEFINITIONS}
-+    -DENABLE_ILBC=1
-+  )
-+endif (WITH_ILBC)
-+
- # PH_FORCE_16KHZ : activate FORCED 16 KHZ SAMPLING
- # SUBVERSION_REVISION : grab the svn revision number
- # WENGOPHONE_UA : set the wengophone user agent. It should
-Index: wengophone-2.0.0~rc4-svn8014/wifo/phapi/phcodec.c
-===================================================================
---- wengophone-2.0.0~rc4-svn8014.orig/wifo/phapi/phcodec.c	2006-10-12 16:57:30.000000000 +0000
-+++ wengophone-2.0.0~rc4-svn8014/wifo/phapi/phcodec.c	2006-10-12 17:05:40.000000000 +0000
-@@ -16,9 +16,12 @@
- #include "rtpport.h" // only for GMutex <- phmedia.h <- phcodec-h263.h
- #include "phcodec.h"
- 
-+#ifdef ENABLE_ILBC
- #include "ilbc/iLBC_define.h"
- #include "ilbc/iLBC_encode.h"
- #include "ilbc/iLBC_decode.h"
-+#endif
-+
- //#define FIXED_AMR 1
- 
- void ph_media_plugin_codec_init(const char *dirpath);
-@@ -44,9 +47,6 @@
- #include "gsm/gsm.h"
- #include "gsm/private.h"
- #endif
--#ifndef NO_ILBC
--#define ENABLE_ILBC 1
--#endif
- 
- #if defined(WIN32) && !defined(__GNUC__)
- # define inline _inline

Added: wengophone/trunk/debian/patches/generic/fix-varargs-alpha.patch
===================================================================
--- wengophone/trunk/debian/patches/generic/fix-varargs-alpha.patch	                        (rev 0)
+++ wengophone/trunk/debian/patches/generic/fix-varargs-alpha.patch	2006-10-16 15:38:26 UTC (rev 2566)
@@ -0,0 +1,120 @@
+Index: wengophone-2.0.0~rc4-svn8049/libs/gaim/src/src/account.c
+===================================================================
+--- wengophone-2.0.0~rc4-svn8049.orig/libs/gaim/src/src/account.c	2006-10-16 14:23:42.000000000 +0200
++++ wengophone-2.0.0~rc4-svn8049/libs/gaim/src/src/account.c	2006-10-16 14:23:53.000000000 +0200
+@@ -1400,32 +1400,22 @@
+ gaim_account_set_status(GaimAccount *account, const char *status_id,
+ 						gboolean active, ...)
+ {
+-	va_list args;
+-
+-	va_start(args, active);
+-	gaim_account_set_status_vargs(account, status_id, active, args);
+-	va_end(args);
+-}
+-
+-void
+-gaim_account_set_status_vargs(GaimAccount *account, const char *status_id,
+-							  gboolean active, va_list args)
+-{
+ 	GList *attrs = NULL;
+ 	const gchar *id;
+ 	gpointer data;
++	va_list args;
++
++	va_start(args, active);
+ 
+-	if (args != NULL)
++	while ((id = va_arg(args, const char *)) != NULL)
+ 	{
+-		while ((id = va_arg(args, const char *)) != NULL)
+-		{
+-			attrs = g_list_append(attrs, (char *)id);
+-			data = va_arg(args, void *);
+-			attrs = g_list_append(attrs, data);
+-		}
++		attrs = g_list_append(attrs, (char *)id);
++		data = va_arg(args, void *);
++		attrs = g_list_append(attrs, data);
+ 	}
+ 	gaim_account_set_status_list(account, status_id, active, attrs);
+ 	g_list_free(attrs);
++	va_end(args);
+ }
+ 
+ void
+Index: wengophone-2.0.0~rc4-svn8049/libs/gaim/src/src/account.h
+===================================================================
+--- wengophone-2.0.0~rc4-svn8049.orig/libs/gaim/src/src/account.h	2006-10-16 14:23:42.000000000 +0200
++++ wengophone-2.0.0~rc4-svn8049/libs/gaim/src/src/account.h	2006-10-16 14:23:53.000000000 +0200
+@@ -314,8 +314,7 @@
+ 
+ /**
+  * Activates or deactivates a status.  All changes to the statuses of
+- * an account go through this function or gaim_account_set_status_vargs
+- * or gaim_account_set_status_list.
++ * an account go through this function or gaim_account_set_status_list.
+  *
+  * Only independent statuses can be deactivated with this. To deactivate
+  * an exclusive status, activate a different (and exclusive?) status.
+@@ -323,34 +322,15 @@
+  * @param account   The account.
+  * @param status_id The ID of the status.
+  * @param active    The active state.
+- * @param ...       Optional NULL-terminated attributes passed for the
+- *                  new status, in an id, value pair.
++ * @param ...       Pairs of attributes for the new status passed in
++ *                  as a NULL-terminated list of id/value pairs.
+  */
+ void gaim_account_set_status(GaimAccount *account, const char *status_id,
+ 							 gboolean active, ...);
+ 
+-
+-/**
+- * Activates or deactivates a status.  All changes to the statuses of
+- * an account go through this function or gaim_account_set_status or
+- * gaim_account_set_status_list.
+- *
+- * Only independent statuses can be deactivated with this. To deactivate
+- * an exclusive status, activate a different (and exclusive?) status.
+- *
+- * @param account   The account.
+- * @param status_id The ID of the status.
+- * @param active    The active state.
+- * @param args      The va_list of attributes.
+- */
+-void gaim_account_set_status_vargs(GaimAccount *account,
+-								   const char *status_id,
+-								   gboolean active, va_list args);
+-
+ /**
+  * Activates or deactivates a status.  All changes to the statuses of
+- * an account go through this function or gaim_account_set_status or
+- * gaim_account_set_status_vargs.
++ * an account go through this function or gaim_account_set_status.
+  *
+  * Only independent statuses can be deactivated with this. To deactivate
+  * an exclusive status, activate a different (and exclusive?) status.
+Index: wengophone-2.0.0~rc4-svn8049/libs/gaim/src/src/status.c
+===================================================================
+--- wengophone-2.0.0~rc4-svn8049.orig/libs/gaim/src/src/status.c	2006-10-16 14:23:42.000000000 +0200
++++ wengophone-2.0.0~rc4-svn8049/libs/gaim/src/src/status.c	2006-10-16 14:23:53.000000000 +0200
+@@ -729,14 +729,11 @@
+ 	const gchar *id;
+ 	gpointer data;
+ 
+-	if (args != NULL)
++	while ((id = va_arg(args, const char *)) != NULL)
+ 	{
+-		while ((id = va_arg(args, const char *)) != NULL)
+-		{
+-			attrs = g_list_append(attrs, (char *)id);
+-			data = va_arg(args, void *);
+-			attrs = g_list_append(attrs, data);
+-		}
++		attrs = g_list_append(attrs, (char *)id);
++		data = va_arg(args, void *);
++		attrs = g_list_append(attrs, data);
+ 	}
+ 	gaim_status_set_active_with_attrs_list(status, active, attrs);
+ 	g_list_free(attrs);

Modified: wengophone/trunk/debian/patches/generic/stun-fix-non-i386.patch
===================================================================
--- wengophone/trunk/debian/patches/generic/stun-fix-non-i386.patch	2006-10-15 13:13:29 UTC (rev 2565)
+++ wengophone/trunk/debian/patches/generic/stun-fix-non-i386.patch	2006-10-16 15:38:26 UTC (rev 2566)
@@ -1,7 +1,7 @@
-Index: wengophone-2.0.0~rc4-svn7960/wifo/phapi/stun/stun.c
+Index: wengophone-2.0.0~rc4-svn8074/wifo/phapi/stun/stun.c
 ===================================================================
---- wengophone-2.0.0~rc4-svn7960.orig/wifo/phapi/stun/stun.c	2006-03-13 17:07:07.000000000 +0100
-+++ wengophone-2.0.0~rc4-svn7960/wifo/phapi/stun/stun.c	2006-10-10 10:06:10.000000000 +0200
+--- wengophone-2.0.0~rc4-svn8074.orig/wifo/phapi/stun/stun.c	2006-10-16 17:26:28.000000000 +0200
++++ wengophone-2.0.0~rc4-svn8074/wifo/phapi/stun/stun.c	2006-10-16 17:26:40.000000000 +0200
 @@ -773,16 +773,18 @@
  	  }
  #elif defined(__GNUC__) && ( defined(__i686__) || defined(__i386__) || defined(__x86_64__) )
@@ -30,11 +30,11 @@
  #endif 
        seed = (tick);
  #ifdef WIN32
-Index: wengophone-2.0.0~rc4-svn7960/wifo/netlib/src/stun_func.cpp
+Index: wengophone-2.0.0~rc4-svn8074/wifo/netlib/src/stun_func.cpp
 ===================================================================
---- wengophone-2.0.0~rc4-svn7960.orig/wifo/netlib/src/stun_func.cpp	2006-10-10 09:52:14.000000000 +0200
-+++ wengophone-2.0.0~rc4-svn7960/wifo/netlib/src/stun_func.cpp	2006-10-10 10:02:33.000000000 +0200
-@@ -668,8 +668,6 @@
+--- wengophone-2.0.0~rc4-svn8074.orig/wifo/netlib/src/stun_func.cpp	2006-10-16 17:26:28.000000000 +0200
++++ wengophone-2.0.0~rc4-svn8074/wifo/netlib/src/stun_func.cpp	2006-10-16 17:26:40.000000000 +0200
+@@ -718,8 +718,6 @@
        tick |= lowtick;
  #elif defined(__GNUC__) && ( defined(__i686__) || defined(__i386__) || defined(__x86_64__) )
        asm("rdtsc" : "=A" (tick));

Modified: wengophone/trunk/debian/patches/series
===================================================================
--- wengophone/trunk/debian/patches/series	2006-10-15 13:13:29 UTC (rev 2565)
+++ wengophone/trunk/debian/patches/series	2006-10-16 15:38:26 UTC (rev 2566)
@@ -1,6 +1,7 @@
 generic/cmake-fix-static-sfp-plugin.patch
 generic/stun-fix-non-i386.patch
 generic/fix-implicit-pointer-functions.patch
+generic/cmake-amr-plugin-oneshot.patch
+generic/fix-varargs-alpha.patch
 debian/disable-crashreport.patch
 debian/cmake-svnrelease-from-debian-changelog.patch
-generic/cmake-conditional-iLBC.patch

Modified: wengophone/trunk/debian/rules
===================================================================
--- wengophone/trunk/debian/rules	2006-10-15 13:13:29 UTC (rev 2565)
+++ wengophone/trunk/debian/rules	2006-10-16 15:38:26 UTC (rev 2566)
@@ -6,8 +6,7 @@
 
 DEB_INSTALL_MANPAGES_wengophone := $(CURDIR)/debian/qtwengophone.1
 DEB_CMAKE_EXTRA_FLAGS := -DWITH_BUILDID=ON -DWITH_SHARED_PHAPI=OFF \
-	-DWITH_SHARED_OWCURL=OFF -DWITH_SHARED_SFP-PLUGIN=OFF \
-	-DWITH_ILBC=OFF
+	-DWITH_SHARED_OWCURL=OFF -DWITH_SHARED_SFP-PLUGIN=OFF
 
 DEBVERSION:=$(shell head -n 1 debian/changelog | sed -e 's/^[^(]*(\([^)]*\)).*/\1/')
 UPVERSION:=$(shell echo $(DEBVERSION) | sed -e 's/^.*://' -e 's/-[0-9]*$$//' -e 's/-svn.*$$//' -e 's/.dfsg$$//')




More information about the Pkg-voip-commits mailing list