diff options
author | Ed Schouten <ed@FreeBSD.org> | 2009-06-04 06:25:38 +0000 |
---|---|---|
committer | Ed Schouten <ed@FreeBSD.org> | 2009-06-04 06:25:38 +0000 |
commit | c223e910c06334d2abc3a62a0fea986c43edd9c8 (patch) | |
tree | e88e9469d9521d03694a196f6fbe442fb160b250 | |
parent | - update to 1.0.PreAlpha29 (diff) |
Build libiconv with -std=gnu89.
libiconv fails to link when built with a C99 compiler, because it uses
GNU-style inlining.
Approved by: marcus
Notes
Notes:
svn path=/head/; revision=235144
-rw-r--r-- | converters/libiconv/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/converters/libiconv/Makefile b/converters/libiconv/Makefile index 004ec2737e6e..1bfbe16692a9 100644 --- a/converters/libiconv/Makefile +++ b/converters/libiconv/Makefile @@ -17,6 +17,7 @@ COMMENT= A character set conversion library USE_AUTOTOOLS= libtool:15 GNU_CONFIGURE= yes +USE_CSTD= gnu89 USE_GNOME= gnometarget LIBTOOLFILES= configure libcharset/configure CONFIGURE_ARGS= --enable-static \ |