diff options
author | linimon <linimon@FreeBSD.org> | 2019-11-13 11:33:36 +0800 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2019-11-13 11:33:36 +0800 |
commit | 3498b25e0ff81ebfb9b219fd03643a0f02b39f4a (patch) | |
tree | b97aca4c6b88c0cc5db03d9f953e1f7434307943 /www | |
parent | 545c431d5b477d51ca5aed380f0a3adae2a4b3e6 (diff) | |
download | freebsd-ports-gnome-3498b25e0ff81ebfb9b219fd03643a0f02b39f4a.tar.gz freebsd-ports-gnome-3498b25e0ff81ebfb9b219fd03643a0f02b39f4a.tar.zst freebsd-ports-gnome-3498b25e0ff81ebfb9b219fd03643a0f02b39f4a.zip |
Fix build on GCC-based systems:
src/main.c:47: error: 'for' loop initial declaration used outside C99 mode
Approved by: portmgr (tier-2 blanket)
Diffstat (limited to 'www')
-rw-r--r-- | www/httpdirfs/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/www/httpdirfs/Makefile b/www/httpdirfs/Makefile index 2f77ef441b63..f2f75f5b3bcb 100644 --- a/www/httpdirfs/Makefile +++ b/www/httpdirfs/Makefile @@ -19,6 +19,7 @@ LIB_DEPENDS= libcurl.so:ftp/curl \ libuuid.so:misc/e2fsprogs-libuuid USES= gmake localbase pkgconfig ssl +USE_CSTD= c99 USE_GITHUB= yes GH_ACCOUNT= fangfufu |