76 lines
3.1 KiB
Diff
76 lines
3.1 KiB
Diff
diff -up srtp/Makefile.in.shared srtp/Makefile.in
|
|
--- Makefile.in.shared 2010-05-21 13:45:35.000000000 -0400
|
|
+++ Makefile.in 2010-10-04 15:53:29.132116130 -0400
|
|
@@ -8,7 +8,7 @@
|
|
# runtest runs test applications
|
|
# test builds test applications
|
|
# libcrypt.a static library implementing crypto engine
|
|
-# libsrtp.a static library implementing srtp
|
|
+# libsrtp.so shared library implementing srtp
|
|
# clean removes objects, libs, and executables
|
|
# distribution cleans and builds a .tgz
|
|
# tags builds etags file from all .c and .h files
|
|
@@ -97,13 +97,13 @@ kernel = crypto/kernel/crypto_kernel.o
|
|
|
|
cryptobj = $(ciphers) $(hashes) $(math) $(stat) $(kernel) $(replay)
|
|
|
|
-# libsrtp.a (implements srtp processing)
|
|
+# libsrtp (implements srtp processing)
|
|
|
|
srtpobj = srtp/srtp.o srtp/ekt.o
|
|
|
|
-libsrtp.a: $(srtpobj) $(cryptobj) $(gdoi)
|
|
- ar cr libsrtp.a $^
|
|
- $(RANLIB) libsrtp.a
|
|
+libsrtp.so: $(srtpobj) $(cryptobj) $(gdoi)
|
|
+ $(COMPILE) -shared -pthread -lm -Wl,--no-undefined -Wl,-soname,$@.0 -z noexecstack -o $@.0.0.0 $^
|
|
+ ln -s $@.0.0.0 $@
|
|
|
|
# libcryptomath.a contains general-purpose routines that are used to
|
|
# generate tables and verify cryptoalgorithm implementations - this
|
|
@@ -127,19 +127,19 @@ testapp = $(crypto_testapp) test/srtp_dr
|
|
test/roc_driver$(EXE) test/rdbx_driver$(EXE) test/rtpw$(EXE) \
|
|
test/dtls_srtp_driver$(EXE)
|
|
|
|
-$(testapp): libsrtp.a
|
|
+$(testapp): libsrtp.so
|
|
|
|
test/rtpw$(EXE): test/rtpw.c test/rtp.c test/getopt_s.c
|
|
- $(COMPILE) $(LDFLAGS) -o $@ $^ $(LIBS) $(SRTPLIB)
|
|
+ $(COMPILE) $(LDFLAGS) -o $@ test/rtpw.c test/rtp.c test/getopt_s.c $(LIBS) $(SRTPLIB)
|
|
|
|
test/srtp_driver$(EXE): test/srtp_driver.c test/getopt_s.c
|
|
- $(COMPILE) $(LDFLAGS) -o $@ $^ $(LIBS) $(SRTPLIB)
|
|
+ $(COMPILE) $(LDFLAGS) -o $@ test/srtp_driver.c test/getopt_s.c $(LIBS) $(SRTPLIB)
|
|
|
|
test/rdbx_driver$(EXE): test/rdbx_driver.c test/getopt_s.c
|
|
- $(COMPILE) $(LDFLAGS) -o $@ $^ $(LIBS) $(SRTPLIB)
|
|
+ $(COMPILE) $(LDFLAGS) -o $@ test/rdbx_driver.c test/getopt_s.c $(LIBS) $(SRTPLIB)
|
|
|
|
test/dtls_srtp_driver$(EXE): test/dtls_srtp_driver.c test/getopt_s.c
|
|
- $(COMPILE) $(LDFLAGS) -o $@ $^ $(LIBS) $(SRTPLIB)
|
|
+ $(COMPILE) $(LDFLAGS) -o $@ test/dtls_srtp_driver.c test/getopt_s.c $(LIBS) $(SRTPLIB)
|
|
|
|
test: $(testapp)
|
|
@echo "Build done. Please run '$(MAKE) runtest' to run self tests."
|
|
@@ -197,16 +197,16 @@ install:
|
|
cp $(srcdir)/include/*.h $(DESTDIR)$(includedir)/srtp
|
|
cp $(srcdir)/crypto/include/*.h $(DESTDIR)$(includedir)/srtp
|
|
if [ "$(srcdir)" != "." ]; then cp crypto/include/*.h $(DESTDIR)$(includedir)/srtp; fi
|
|
- if [ -f libsrtp.a ]; then cp libsrtp.a $(DESTDIR)$(libdir)/; fi
|
|
+ if [ -f libsrtp.so.0.0.0 ]; then cp libsrtp.so.0.0.0 $(DESTDIR)$(libdir)/; fi
|
|
|
|
uninstall:
|
|
rm -f $(DESTDIR)$(includedir)/srtp/*.h
|
|
- rm -f $(DESTDIR)$(libdir)/libsrtp.a
|
|
+ rm -f $(DESTDIR)$(libdir)/libsrtp.so*
|
|
-rmdir $(DESTDIR)$(includedir)/srtp
|
|
|
|
clean:
|
|
rm -rf $(cryptobj) $(srtpobj) $(cryptomath) TAGS \
|
|
- libcryptomath.a libsrtp.a core *.core test/core
|
|
+ libcryptomath.a libsrtp.so* core *.core test/core
|
|
for a in * */* */*/*; do \
|
|
if [ -f "$$a~" ] ; then rm -f $$a~; fi; \
|
|
done;
|