diff options
Diffstat (limited to 'src/lib/libcrypto/threads/pthread2.sh')
-rw-r--r-- | src/lib/libcrypto/threads/pthread2.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/lib/libcrypto/threads/pthread2.sh b/src/lib/libcrypto/threads/pthread2.sh new file mode 100644 index 0000000000..41264c6a50 --- /dev/null +++ b/src/lib/libcrypto/threads/pthread2.sh | |||
@@ -0,0 +1,7 @@ | |||
1 | #!/bin/sh | ||
2 | # | ||
3 | # build using pthreads where it's already built into the system | ||
4 | # | ||
5 | /bin/rm -f mttest | ||
6 | gcc -DPTHREADS -I../../include -g mttest.c -o mttest -L../.. -lssl -lcrypto -lpthread | ||
7 | |||