diff options
author | Stefan Sperling <stsp@cvs.openbsd.org> | 2010-07-28 16:16:56 +0000 |
---|---|---|
committer | Stefan Sperling <stsp@cvs.openbsd.org> | 2010-07-28 16:16:56 +0000 |
commit | df65c5ff2496cc590d17553f570b7f345d1be9d6 (patch) | |
tree | 634d5434768fffdd1057be75cf41758e32e856ba | |
parent | 4fc287e698ae86eee93cb8520b8002bef7fe8078 (diff) |
Fix fallout from the utf-8 commit (segfaults in disklabel on install media).
Sorry about that.
ok sthen deraadt
-rw-r--r-- | distrib/special/libstubs/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/distrib/special/libstubs/Makefile b/distrib/special/libstubs/Makefile index 1be061efab6..9fad4a97093 100644 --- a/distrib/special/libstubs/Makefile +++ b/distrib/special/libstubs/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.6 2010/07/27 16:59:03 stsp Exp $ +# $OpenBSD: Makefile,v 1.7 2010/07/28 16:16:55 stsp Exp $ .include <bsd.own.mk> LIB= stubs @@ -10,7 +10,8 @@ NOPROFILE=Yes NOMAN= 1 CFLAGS+=-D__DBINTERFACE_PRIVATE -DSHA256_ONLY -UYP -I${LIBCSRCDIR}/include \ - -DNO_LOG_BAD_DNS_RESPONSES -I${LIBCSRCDIR}/locale -I${LIBCSRCDIR}/stdio + -DNO_LOG_BAD_DNS_RESPONSES -I${LIBCSRCDIR}/locale \ + -I${LIBCSRCDIR}/stdio -DFLOATING_POINT LIBCSRCDIR=${.CURDIR}/../../../lib/libc |