Revision: 7054
http://sourceforge.net/p/astlinux/code/7054
Author: abelbeck
Date: 2015-04-27 15:22:32 +0000 (Mon, 27 Apr 2015)
Log Message:
-----------
libsrtp, version bump to 1.5.2
Modified Paths:
--------------
branches/1.0/package/libsrtp/libsrtp.mk
Modified: branches/1.0/package/libsrtp/libsrtp.mk
===================================================================
--- branches/1.0/package/libsrtp/libsrtp.mk 2015-04-24 21:46:38 UTC (rev 7053)
+++ branches/1.0/package/libsrtp/libsrtp.mk 2015-04-27 15:22:32 UTC (rev 7054)
@@ -3,12 +3,12 @@
# libsrtp
#
#############################################################
-LIBSRTP_VERSION = 1.5.0
+LIBSRTP_VERSION = 1.5.2
LIBSRTP_SITE = http://files.astlinux.org
#LIBSRTP_SITE = https://github.com/cisco/libsrtp/releases
LIBSRTP_SOURCE = libsrtp-$(LIBSRTP_VERSION).tar.gz
LIBSRTP_INSTALL_STAGING = YES
-LIBSRTP_DEPENDENCIES = openssl
+LIBSRTP_DEPENDENCIES = host-pkg-config openssl
LIBSRTP_CONF_OPT = \
--prefix=/usr \
@@ -17,14 +17,12 @@
--disable-stdout \
--disable-debug
-LIBSRTP_MAKE_OPT = \
- CC='$(TARGET_CC)' \
- LD='$(TARGET_LD)' \
- CFLAGS='$(TARGET_CFLAGS) -fPIC' \
- -C $(@D) libsrtp.so
+LIBSRTP_MAKE_OPT = shared_library
define LIBSRTP_INSTALL_TARGET_CMDS
- cp -a $(STAGING_DIR)/usr/lib/libsrtp.so* $(TARGET_DIR)/usr/lib/
+ # Must install from build directory since Makefile does not properly copy symlinks
+ # cp -a $(STAGING_DIR)/usr/lib/libsrtp.so* $(TARGET_DIR)/usr/lib/
+ cp -a $(@D)/libsrtp.so* $(TARGET_DIR)/usr/lib/
endef
define LIBSRTP_UNINSTALL_TARGET_CMDS
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|