diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2001-09-25 14:27:19 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2001-09-25 14:27:19 +0000 |
commit | ebfde68cd87d715acb8dffa94face9437aab2e41 (patch) | |
tree | 3724e7a334948fd1a07b7bbf505e7720c1f5147a /lib/libc | |
parent | ed31172b7bf14e86dc017f027f4a41780acba725 (diff) |
Also build the .so version of sha1 without optimization.
ok jason@
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/hash/Makefile.inc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libc/hash/Makefile.inc b/lib/libc/hash/Makefile.inc index 23d79603498..f8518dc4546 100644 --- a/lib/libc/hash/Makefile.inc +++ b/lib/libc/hash/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.10 2001/09/24 20:10:13 jason Exp $ +# $OpenBSD: Makefile.inc,v 1.11 2001/09/25 14:27:18 drahn Exp $ # hash functions .PATH: ${LIBCSRCDIR}/hash @@ -18,4 +18,6 @@ sha1.o: sha1.po: ${CC} ${CFLAGS} ${CPPFLAGS} -O0 -c ${.IMPSRC} -o $@ +sha1.so: + ${CC} ${CFLAGS} ${CPPFLAGS} -O0 ${PICFLAG} -DPIC -c ${.IMPSRC} -o $@ .endif |