summaryrefslogtreecommitdiffstats
path: root/crypto/threads
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2000-02-25 23:17:46 +0000
committerRichard Levitte <levitte@openssl.org>2000-02-25 23:17:46 +0000
commitdc8c8cda4dcbb59a5e99b6cc6668f620b244888c (patch)
tree8439f8b605aac452652a3b9809f9208802679f91 /crypto/threads
parent2d2d31394a710cfe854e3dd7f862613a6b45fcc4 (diff)
New script to compile on systems that already have pthreads in the
system.
Diffstat (limited to 'crypto/threads')
-rwxr-xr-xcrypto/threads/pthread2.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/crypto/threads/pthread2.sh b/crypto/threads/pthread2.sh
new file mode 100755
index 0000000000..41264c6a50
--- /dev/null
+++ b/crypto/threads/pthread2.sh
@@ -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
+