diff options
author | wollman <wollman@FreeBSD.org> | 1999-02-26 18:43:01 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 1999-02-26 18:43:01 +0000 |
commit | 563552afce2240b94a832861f16a3ebb3c17dccb (patch) | |
tree | c2454e03a235eb4bd5787037b624116889a7f2b0 /lib/libmd | |
parent | db4b7a727b6b70ad291fe1dd62d4ce4b5ac85fcb (diff) | |
download | FreeBSD-src-563552afce2240b94a832861f16a3ebb3c17dccb.zip FreeBSD-src-563552afce2240b94a832861f16a3ebb3c17dccb.tar.gz |
Don't build the assembly for shared linkage, PIC isn't implemented.
Diffstat (limited to 'lib/libmd')
-rw-r--r-- | lib/libmd/i386/rmd160.S | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/libmd/i386/rmd160.S b/lib/libmd/i386/rmd160.S index f90f6f2..b94d560 100644 --- a/lib/libmd/i386/rmd160.S +++ b/lib/libmd/i386/rmd160.S @@ -5,6 +5,7 @@ * SOL - Solaris style elf */ +#ifndef PIC #define TYPE(a,b) .type a,b #define SIZE(a,b) .size a,b @@ -2014,3 +2015,4 @@ ripemd160_block_x86: .ripemd160_block_x86_end: SIZE(ripemd160_block_x86,.ripemd160_block_x86_end-ripemd160_block_x86) .ident "desasm.pl" +#endif /* not PIC */ |