Tags: patch
In Ubuntu, we've applied the attached patch to achieve the following:
* debian/rules: Add -lcrypto,-lboost_system to LDFLAGS, fixes FTBFS.
We thought you might be interested in doing the same.
diff -u sslsniff-0.6/debian/rules sslsniff-0.6/debian/rules
--- sslsniff-0.6/debian/rules
+++ sslsniff-0.6/debian/rules
@@ -31,7 +31,7 @@
ifneq "$(wildcard /usr/share/misc/config.guess)" ""
cp -f /usr/share/misc/config.guess config.guess
endif
- ./configure $(CROSS) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info CFLAGS="$(CFLAGS)" LDFLAGS="-Wl,-z,defs"
+ ./configure $(CROSS) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info CFLAGS="$(CFLAGS)" LDFLAGS="-Wl,-z,defs,-lcrypto,-lboost_system"
### Fix incorrect LDFLAGS in generated Makefile
sed -i \
-e 's/-lboost_filesystem/-lboost_filesystem-mt/' \