diff options
author | ed <ed@FreeBSD.org> | 2009-06-04 14:25:38 +0800 |
---|---|---|
committer | ed <ed@FreeBSD.org> | 2009-06-04 14:25:38 +0800 |
commit | 39ac6c33c1b39928272d41bd36d2aa5fb3ed3bd4 (patch) | |
tree | fc134c26ff7f141fbac01af192a26aacb3f8b3fa /converters/libiconv | |
parent | 444c773409ebf0b3e2b730cd9d36673ebe280aaa (diff) | |
download | freebsd-ports-gnome-39ac6c33c1b39928272d41bd36d2aa5fb3ed3bd4.tar.gz freebsd-ports-gnome-39ac6c33c1b39928272d41bd36d2aa5fb3ed3bd4.tar.zst freebsd-ports-gnome-39ac6c33c1b39928272d41bd36d2aa5fb3ed3bd4.zip |
Build libiconv with -std=gnu89.
libiconv fails to link when built with a C99 compiler, because it uses
GNU-style inlining.
Approved by: marcus
Diffstat (limited to 'converters/libiconv')
-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 \ |