4cd640f684
Same rationale as the previous commits.
(cherry picked from commit 422196759f
)
Removed the winrt-specific parts.
9 lines
190 B
Bash
9 lines
190 B
Bash
#!/bin/sh
|
|
#
|
|
# build using pthreads
|
|
#
|
|
# http://www.mit.edu:8001/people/proven/pthreads.html
|
|
#
|
|
/bin/rm -f mttest
|
|
pgcc -DPTHREADS -I../../include -g mttest.c -o mttest -L../.. -lssl -lcrypto
|
|
|