Merge pull request #538 from micmac1/fs-check
freeswitch: prevent libcheck use
This commit is contained in:
commit
ea6d48b680
3 changed files with 12 additions and 12 deletions
|
@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
|
|||
|
||||
PKG_NAME:=freeswitch
|
||||
PKG_VERSION:=1.10.3
|
||||
PKG_RELEASE:=1
|
||||
PKG_RELEASE:=2
|
||||
PKG_MAINTAINER:=Sebastian Kemper <sebastian_ml@gmx.net>
|
||||
|
||||
PKG_SOURCE:=freeswitch-$(PKG_VERSION).-release.tar.xz
|
||||
|
|
11
net/freeswitch/patches/400-disable-libcheck.patch
Normal file
11
net/freeswitch/patches/400-disable-libcheck.patch
Normal file
|
@ -0,0 +1,11 @@
|
|||
--- a/libs/sofia-sip/configure.ac
|
||||
+++ b/libs/sofia-sip/configure.ac
|
||||
@@ -250,7 +250,7 @@ SAC_OPENSSL
|
||||
SAC_TPORT
|
||||
|
||||
dnl Check is used for testing
|
||||
-PKG_CHECK_MODULES(CHECK, check >= 0.9.4, have_check="yes", have_check="no")
|
||||
+PKG_CHECK_MODULES(CHECK, we_do_not_want_check >= 0.9.4, have_check="yes", have_check="no")
|
||||
AM_CONDITIONAL(HAVE_CHECK, test x"$have_check" = "xyes")
|
||||
if test x"$have_check" = "xyes"; then
|
||||
AC_DEFINE([HAVE_CHECK], 1, [Define to 1 if check library is available])
|
|
@ -1,11 +0,0 @@
|
|||
--- a/libs/sofia-sip/Makefile.am
|
||||
+++ b/libs/sofia-sip/Makefile.am
|
||||
@@ -7,7 +7,7 @@
|
||||
|
||||
AUTOMAKE_OPTIONS = foreign 1.7
|
||||
|
||||
-SUBDIRS = libsofia-sip-ua $(GLIB_SUBDIRS) packages tests s2check utils
|
||||
+SUBDIRS = libsofia-sip-ua $(GLIB_SUBDIRS) packages # tests s2check utils
|
||||
DIST_SUBDIRS = s2check libsofia-sip-ua libsofia-sip-ua-glib utils packages \
|
||||
tests win32 open_c
|
||||
|
Loading…
Reference in a new issue