summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErwin Nindl <nine@wirdorange.org>2007-07-13 16:38:15 +0000
committerErwin Nindl <nine@wirdorange.org>2007-07-13 16:38:15 +0000
commit1d28aa31e2e202fe9907b3a9c10caa73d125e592 (patch)
treec12b5124fddd2885fae8407742ceb315bd34e95d
parent* removed srtp directory (diff)
compiles again, libsrtp now under /usr/local/lib/libsrtp.a
-rw-r--r--Makefile5
-rw-r--r--cypher.cpp2
2 files changed, 4 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 5ce913a..f2bc367 100644
--- a/Makefile
+++ b/Makefile
@@ -41,7 +41,8 @@ OBJS = anytun.o \
log.o \
options.o \
seqWindow.o \
- $(OPENVPNDEPS)
+ $(OPENVPNDEPS) \
+ /usr/local/lib/libsrtp.a
EXECUTABLE = anytun
@@ -62,7 +63,7 @@ buffer.o: buffer.cpp buffer.h
packet.o: packet.cpp packet.h buffer.h
$(C++) $(CCFLAGS) $< -c
-cypher.o: cypher.cpp cypher.h buffer.h srtp/libsrtp.a
+cypher.o: cypher.cpp cypher.h buffer.h
$(C++) $(CCFLAGS) $< -c
authAlgo.o: authAlgo.cpp authAlgo.h buffer.h
diff --git a/cypher.cpp b/cypher.cpp
index 03688f2..17668a7 100644
--- a/cypher.cpp
+++ b/cypher.cpp
@@ -36,7 +36,7 @@
#include "cypher.h"
extern "C" {
-#include "srtp/crypto/include/crypto_kernel.h"
+#include <srtp/crypto_kernel.h>
}
void Cypher::cypher(Buffer& buf)