summaryrefslogtreecommitdiff
path: root/notes.txt
diff options
context:
space:
mode:
authorPeter Wu <lekensteyn@gmail.com>2013-12-06 00:06:35 +0100
committerPeter Wu <lekensteyn@gmail.com>2013-12-06 00:06:35 +0100
commit403cfce4177cab791e29209f63f665d7170c20e3 (patch)
tree3662e069015d8776343c4913e3916d2ba577a27f /notes.txt
parentbefe0f77dd2246e437e61cefb861bf9a6d4ff82b (diff)
downloadwireshark-notes-403cfce4177cab791e29209f63f665d7170c20e3.tar.gz
openssl-{connect,listen}: fix usage, reduce output
The CLIENT_RANDOM is applicable to clients only, so remove it from ServerHello. Also update notes with cmake+gcrypt instructions.
Diffstat (limited to 'notes.txt')
-rw-r--r--notes.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/notes.txt b/notes.txt
index 68c527d..9e4d70f 100644
--- a/notes.txt
+++ b/notes.txt
@@ -6,12 +6,15 @@ cmake -DCMAKE_INSTALL_PREFIX=/tmp/wsroot -DENABLE_GTK3=0 -DENABLE_PORTAUDIO=0 -D
# http://lists.gnupg.org/pipermail/gcrypt-devel/2013-October/002428.html)
# Fix compile issue (missing fig2dev in doc, Makefile.in in tests is not
# generated (Makefile/autotools of the repo too old?))
+sed '/^tests\/Makefile$/d' -i configure.ac &&
sed '/SUBDIRS/s/ doc tests//' -i Makefile.am && ./autogen.sh
mkdir build && cd build
../configure --disable-static --disable-padlock-support --prefix=/tmp/libgcrypt/prefix
make install
# for libgcrypt-config test in wireshark ./configure
PATH=/tmp/libgcrypt/prefix/bin:$PATH
+# for cmake add:
+-DGCRYPT_INCLUDE_DIR=/tmp/libgcrypt/prefix/include -DGCRYPT_LIBRARY=/tmp/libgcrypt/prefix/lib/libgcrypt.so
# Build cyassl for AES-CCM testing
patch -p1 < cyassl-Implement-SSLKEYLOGFILE-support-for-ClientRandom.patch