New script to compile on systems that already have pthreads in the
authorRichard Levitte <levitte@openssl.org>
Fri, 25 Feb 2000 23:17:46 +0000 (23:17 +0000)
committerRichard Levitte <levitte@openssl.org>
Fri, 25 Feb 2000 23:17:46 +0000 (23:17 +0000)
system.

crypto/threads/pthread2.sh [new file with mode: 0755]

diff --git a/crypto/threads/pthread2.sh b/crypto/threads/pthread2.sh
new file mode 100755 (executable)
index 0000000..41264c6
--- /dev/null
@@ -0,0 +1,7 @@
+#!/bin/sh
+#
+# build using pthreads where it's already built into the system
+#
+/bin/rm -f mttest
+gcc -DPTHREADS -I../../include -g mttest.c -o mttest -L../.. -lssl -lcrypto -lpthread
+