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 |