Blame view

buildroot/buildroot-2016.08.1/package/libsrtp/libsrtp.mk 1.03 KB
6b13f685e   김민수   BSP 최초 추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
  ################################################################################
  #
  # libsrtp
  #
  ################################################################################
  
  LIBSRTP_VERSION = v1.5.4
  LIBSRTP_SITE = $(call github,cisco,libsrtp,$(LIBSRTP_VERSION))
  LIBSRTP_INSTALL_STAGING = YES
  LIBSRTP_LICENSE = BSD-3c
  LIBSRTP_LICENSE_FILES = LICENSE
  
  ifeq ($(BR2_STATIC_LIBS),y)
  LIBSRTP_MAKE_OPTS = libsrtp.a
  else ifeq ($(BR2_SHARED_LIBS),y)
  LIBSRTP_MAKE_OPTS = shared_library
  else
  LIBSRTP_MAKE_OPTS = libsrtp.a shared_library
  endif
  
  # While libsrtp is not using pkg-config itself, it checks if
  # pkg-config is available to determine whether it should install
  # libsrtp.pc. Since installing it seems useful, let's depend on
  # host-pkgconf to make sure pkg-config is installed.
  LIBSRTP_DEPENDENCIES = host-pkgconf
  
  # openssl handling needs libdl support
  ifeq ($(BR2_PACKAGE_OPENSSL)x$(BR2_STATIC_LIBS),yx)
  LIBSRTP_DEPENDENCIES += openssl
  LIBSRTP_CONF_OPTS += --enable-openssl
  else
  LIBSRTP_CONF_OPTS += --disable-openssl
  endif
  
  $(eval $(autotools-package))