mirror of
https://github.com/ossrs/srs.git
synced 2025-03-09 15:49:59 +00:00
Upgrade libsrtp from 2.0.0 to 2.3.0, with source code. 4.0.79
This commit is contained in:
parent
3749d4d833
commit
8089fc004c
111 changed files with 45307 additions and 5 deletions
34
trunk/3rdparty/libsrtp-2-fit/fuzzer/Makefile.in
vendored
Normal file
34
trunk/3rdparty/libsrtp-2-fit/fuzzer/Makefile.in
vendored
Normal file
|
@ -0,0 +1,34 @@
|
|||
# Makefile for libSRTP fuzzer
|
||||
|
||||
srcdir = @srcdir@
|
||||
top_srcdir = @top_srcdir@
|
||||
top_builddir = @top_builddir@
|
||||
VPATH = @srcdir@
|
||||
|
||||
CC = @CC@
|
||||
CXX = @CXX@
|
||||
INCDIR = -Iinclude -I$(srcdir)/include -I$(top_srcdir)/include -I$(top_srcdir)/crypto/include/
|
||||
DEFS = @DEFS@
|
||||
CPPFLAGS= @CPPFLAGS@ -g
|
||||
CXXFLAGS= @CXXFLAGS@ -g
|
||||
CFLAGS = @CFLAGS@ -g
|
||||
LIBS = @LIBS@
|
||||
COMPILE = $(CC) $(DEFS) $(INCDIR) $(CPPFLAGS) $(CFLAGS)
|
||||
COMPILECXX = $(CXX) $(DEFS) $(INCDIR) $(CPPFLAGS) $(CXXFLAGS)
|
||||
CRYPTOLIB = -lsrtp2
|
||||
|
||||
.PHONY: clean
|
||||
|
||||
all : srtp-fuzzer
|
||||
|
||||
mt19937.o: mt19937.cpp
|
||||
$(COMPILECXX) -c -std=c++11 mt19937.cpp -o mt19937.o
|
||||
fuzzer.o: fuzzer.c fuzzer.h testmem.h
|
||||
$(COMPILE) fuzzer.c -c -o fuzzer.o
|
||||
testmem.o: testmem.c
|
||||
$(COMPILE) -O0 testmem.c -c -o testmem.o
|
||||
srtp-fuzzer: fuzzer.o mt19937.o testmem.o
|
||||
$(COMPILECXX) -L. -L.. fuzzer.o mt19937.o testmem.o $(LIBFUZZER) $(CRYPTOLIB) $(LIBS) -o srtp-fuzzer
|
||||
|
||||
clean:
|
||||
rm -rf srtp-fuzzer *.o
|
Loading…
Add table
Add a link
Reference in a new issue