diff options
author | Richard Levitte <levitte@openssl.org> | 2000-02-26 00:18:27 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2000-02-26 00:18:27 +0100 |
commit | 9da65c3280872e2228001fa3f0aabe4f94357c41 (patch) | |
tree | 8d607ccfec22bad95e473d104f2c9244b08cad9b /crypto/threads | |
parent | New script to compile on systems that already have pthreads in the (diff) | |
download | openssl-9da65c3280872e2228001fa3f0aabe4f94357c41.tar.xz openssl-9da65c3280872e2228001fa3f0aabe4f94357c41.zip |
Adjust all the old scripts to deal with the new location.
Diffstat (limited to 'crypto/threads')
-rw-r--r-- | crypto/threads/profile.sh | 2 | ||||
-rwxr-xr-x | crypto/threads/ptest.bat | 2 | ||||
-rw-r--r-- | crypto/threads/pthread.sh | 2 | ||||
-rw-r--r-- | crypto/threads/purify.sh | 2 | ||||
-rw-r--r-- | crypto/threads/solaris.sh | 2 | ||||
-rwxr-xr-x | crypto/threads/win32.bat | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/crypto/threads/profile.sh b/crypto/threads/profile.sh index de5eb06708..6e3e342fc0 100644 --- a/crypto/threads/profile.sh +++ b/crypto/threads/profile.sh @@ -1,4 +1,4 @@ #!/bin/sh /bin/rm -f mttest -cc -p -DSOLARIS -I../include -g mttest.c -o mttest -L/usr/lib/libc -ldl -L.. -lthread -lssl -lcrypto -lnsl -lsocket +cc -p -DSOLARIS -I../../include -g mttest.c -o mttest -L/usr/lib/libc -ldl -L../.. -lthread -lssl -lcrypto -lnsl -lsocket diff --git a/crypto/threads/ptest.bat b/crypto/threads/ptest.bat index ccaccae09d..4071b5ffea 100755 --- a/crypto/threads/ptest.bat +++ b/crypto/threads/ptest.bat @@ -1,4 +1,4 @@ del mttest.exe -purify cl /O2 -DWIN32 /MD -I..\out mttest.c /Femttest ..\out\ssl32.lib ..\out\crypt32.lib +purify cl /O2 -DWIN32 /MD -I..\..\out mttest.c /Femttest ..\..\out\ssl32.lib ..\..\out\crypt32.lib diff --git a/crypto/threads/pthread.sh b/crypto/threads/pthread.sh index 7d0b6e55f5..f1c49821d2 100644 --- a/crypto/threads/pthread.sh +++ b/crypto/threads/pthread.sh @@ -5,5 +5,5 @@ # 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 +pgcc -DPTHREADS -I../../include -g mttest.c -o mttest -L../.. -lssl -lcrypto diff --git a/crypto/threads/purify.sh b/crypto/threads/purify.sh index 57c4017073..6d44fe26b7 100644 --- a/crypto/threads/purify.sh +++ b/crypto/threads/purify.sh @@ -1,4 +1,4 @@ #!/bin/sh /bin/rm -f mttest -purify cc -DSOLARIS -I../include -g mttest.c -o mttest -L.. -lthread -lssl -lcrypto -lnsl -lsocket +purify cc -DSOLARIS -I../../include -g mttest.c -o mttest -L../.. -lthread -lssl -lcrypto -lnsl -lsocket diff --git a/crypto/threads/solaris.sh b/crypto/threads/solaris.sh index f6a90b17ee..bc93094a27 100644 --- a/crypto/threads/solaris.sh +++ b/crypto/threads/solaris.sh @@ -1,4 +1,4 @@ #!/bin/sh /bin/rm -f mttest -cc -DSOLARIS -I../include -g mttest.c -o mttest -L.. -lthread -lssl -lcrypto -lnsl -lsocket +cc -DSOLARIS -I../../include -g mttest.c -o mttest -L../.. -lthread -lssl -lcrypto -lnsl -lsocket diff --git a/crypto/threads/win32.bat b/crypto/threads/win32.bat index 56089f69be..ee6da80a07 100755 --- a/crypto/threads/win32.bat +++ b/crypto/threads/win32.bat @@ -1,4 +1,4 @@ del mttest.exe -cl /O2 -DWIN32 /MD -I..\out mttest.c /Femttest ..\out\ssleay32.lib ..\out\libeay32.lib +cl /O2 -DWIN32 /MD -I..\..\out mttest.c /Femttest ..\..\out\ssleay32.lib ..\..\out\libeay32.lib |