diff options
author | rdivacky <rdivacky@FreeBSD.org> | 2009-03-14 17:55:16 +0000 |
---|---|---|
committer | rdivacky <rdivacky@FreeBSD.org> | 2009-03-14 17:55:16 +0000 |
commit | 4cd01fc223701ae9a3fc4907d8c8e835ca6193d6 (patch) | |
tree | 2e832ae7edeb004a0ac2179546f03d09f8ad19b9 /cddl/lib | |
parent | 9dac23d7ae211df76cd0c75b8afc7a756730f4d4 (diff) | |
download | FreeBSD-src-4cd01fc223701ae9a3fc4907d8c8e835ca6193d6.zip FreeBSD-src-4cd01fc223701ae9a3fc4907d8c8e835ca6193d6.tar.gz |
Switch over to gnu99 compilation on default for userland.
Tested by: make universe
Tested by: ports exp build (done by pav)
Reviewed by: ru
Reviewed by: silence on arch
Approved by: ed (mentor)
Diffstat (limited to 'cddl/lib')
-rw-r--r-- | cddl/lib/libzpool/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cddl/lib/libzpool/Makefile b/cddl/lib/libzpool/Makefile index 26d5499..54ab6c0 100644 --- a/cddl/lib/libzpool/Makefile +++ b/cddl/lib/libzpool/Makefile @@ -33,8 +33,6 @@ SRCS= ${ZFS_COMMON_SRCS} ${ZFS_SHARED_SRCS} \ ${KERNEL_SRCS} ${LIST_SRCS} ${ATOMIC_SRCS} \ ${UNICODE_SRCS} -CFLAGS+= -std=c99 - CFLAGS+= -I${.CURDIR}/../../../sys/cddl/compat/opensolaris CFLAGS+= -I${.CURDIR}/../../../cddl/compat/opensolaris/include CFLAGS+= -I${.CURDIR}/../../../cddl/compat/opensolaris/lib/libumem @@ -60,4 +58,6 @@ LDADD= -lpthread -lz # atomic.S doesn't like profiling. NO_PROFILE= +CSTD= c99 + .include <bsd.lib.mk> |