diff options
author | Ulf Möller <ulf@openssl.org> | 2000-02-28 20:16:41 +0100 |
---|---|---|
committer | Ulf Möller <ulf@openssl.org> | 2000-02-28 20:16:41 +0100 |
commit | 2da0c119260afd15433dde7c431c69c837ee840b (patch) | |
tree | e389db610196b034a516bc8625e708f129c2c847 /config | |
parent | Shared library support for Solaris and HPUX (diff) | |
download | openssl-2da0c119260afd15433dde7c431c69c837ee840b.tar.xz openssl-2da0c119260afd15433dde7c431c69c837ee840b.zip |
Support assembler for Mingw32.
Diffstat (limited to 'config')
-rwxr-xr-x | config | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -292,6 +292,8 @@ TEST="false" for i do case "$i" in +# shared library support (behnke@trustcenter.de) +-shared) SHARED=true;; -d*) PREFIX="debug-";; -t*) TEST="true";; -h*) TEST="true"; cat <<EOF @@ -476,6 +478,16 @@ then options="$options -DATALLA" fi +#get some basic shared lib support (behnke@trustcenter.de) +case "$OUT" in + solaris-*-gcc) + if [ "$SHARED" = "true" ] + then + options="$options -DPIC -fPIC" + fi + ;; +esac + # gcc < 2.8 does not support -mcpu=ultrasparc if [ "$OUT" = solaris-sparcv9-gcc -a $GCCVER -lt 28 ] then |