Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1003)

Unified Diff: srtp/Makefile.in

Issue 1434033004: Update libsrtp to upstream commit be95365fbb4788b688cab7af61c65b7989055fb4 (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/libsrtp@master
Patch Set: Updated to libsrtp be95365fbb4788b688cab7af61c65b7989055fb4 Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | srtp/VERSION » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: srtp/Makefile.in
diff --git a/srtp/Makefile.in b/srtp/Makefile.in
index 0f7ef5fd652d1a5f4a4efad3b85fbab92dd3f850..d9b2c4ff26f550f8a20b5e59fcdf34a3d2cf0da9 100644
--- a/srtp/Makefile.in
+++ b/srtp/Makefile.in
@@ -51,6 +51,7 @@ LDFLAGS = -L. @LDFLAGS@
COMPILE = $(CC) $(DEFS) $(INCDIR) $(CPPFLAGS) $(CFLAGS)
SRTPLIB = -lsrtp
+AR = @AR@
RANLIB = @RANLIB@
INSTALL = @INSTALL@
@@ -140,7 +141,7 @@ cryptobj = $(ciphers) $(hashes) $(math) $(stat) $(kernel) $(replay)
srtpobj = srtp/srtp.o srtp/ekt.o
libsrtp.a: $(srtpobj) $(cryptobj) $(gdoi)
- ar cr libsrtp.a $^
+ $(AR) cr libsrtp.a $^
$(RANLIB) libsrtp.a
libsrtp.$(SHAREDLIBSUFFIX): $(srtpobj) $(cryptobj) $(gdoi)
@@ -159,7 +160,7 @@ shared_library: libsrtp.$(SHAREDLIBSUFFIX)
cryptomath = crypto/math/math.o crypto/math/gf2_8.o
libcryptomath.a: $(cryptomath)
- ar cr libcryptomath.a $(cryptomath)
+ $(AR) cr libcryptomath.a $(cryptomath)
$(RANLIB) libcryptomath.a
« no previous file with comments | « no previous file | srtp/VERSION » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698