Ignore:
Timestamp:
Dec 28, 2016 3:28:05 AM (7 years ago)
Author:
nanang
Message:

Re #1900: Merged from trunk (without 3 text conflicts in sln & vcxproj).

Location:
pjproject/branches/projects/uwp/third_party
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • pjproject/branches/projects/uwp/third_party

    • Property svn:externals deleted
  • pjproject/branches/projects/uwp/third_party/build/srtp/Makefile

    r4786 r5512  
    11include ../../../build.mak 
    22include ../../../build/common.mak 
     3include ../os-$(OS_NAME).mak 
    34 
    45export LIBDIR := ../../lib 
     
    2930# libcrypt.a (the crypto engine)  
    3031ciphers = crypto/cipher/cipher.o crypto/cipher/null_cipher.o      \ 
    31           crypto/cipher/aes.o crypto/cipher/aes_icm.o             \ 
    32           crypto/cipher/aes_cbc.o 
     32          $(CIPHERS_SRC) 
    3333 
    34 hashes  = crypto/hash/null_auth.o crypto/hash/sha1.o \ 
    35           crypto/hash/hmac.o crypto/hash/auth.o # crypto/hash/tmmhv2.o  
     34hashes  = crypto/hash/null_auth.o crypto/hash/auth.o $(HASHES_SRC) 
    3635 
    3736replay  = crypto/replay/rdb.o crypto/replay/rdbx.o               \ 
     
    4241ust     = crypto/ust/ust.o  
    4342 
    44 rng     = crypto/rng/rand_source.o crypto/rng/prng.o crypto/rng/ctr_prng.o 
     43rng     = $(RNG_SRC) 
    4544 
    4645err     = pjlib/srtp_err.o 
     
    4948          crypto/kernel/key.o $(rng) $(err) # $(ust)  
    5049 
    51 srtpobj = srtp/srtp.o  
     50srtpobj = srtp/srtp.o srtp/ekt.o 
    5251 
    5352cryptobj =  $(ciphers) $(hashes) $(math) $(stat) $(kernel) $(replay) 
     
    5554export SRTP_SRCDIR = ../../srtp 
    5655export SRTP_OBJS = $(cryptobj) $(srtpobj) 
    57 export SRTP_CFLAGS = -DHAVE_CONFIG_H $(_CFLAGS) 
     56export SRTP_CFLAGS = -DHAVE_CONFIG_H $(_CFLAGS) $(SRTP_OTHER_CFLAGS) 
    5857export SRTP_LDFLAGS = $(PJLIB_LDLIB) $(_LDFLAGS) 
    5958 
Note: See TracChangeset for help on using the changeset viewer.