diff options
author | Alexey Dokuchaev <danfe@FreeBSD.org> | 2020-09-01 18:46:42 +0000 |
---|---|---|
committer | Alexey Dokuchaev <danfe@FreeBSD.org> | 2020-09-01 18:46:42 +0000 |
commit | 25bc2eabe344a16f5a4df084a4996c5b358c385b (patch) | |
tree | a47379c242b505a9eecd07190460cf7a1267481a /misc/geekcode | |
parent | comms/cubicsdr: Use USE_WX instead of the LIB_DEPENDS with the WX library (diff) |
Force -fcommon for the time being, fixing the code looks impractical.
This is to fix the build against modern compilers (Clang 11, GCC 10).
Reported by: pkg-fallout
Notes
Notes:
svn path=/head/; revision=547286
Diffstat (limited to 'misc/geekcode')
-rw-r--r-- | misc/geekcode/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/geekcode/Makefile b/misc/geekcode/Makefile index 74ab62c402ca..b4298c4f9a67 100644 --- a/misc/geekcode/Makefile +++ b/misc/geekcode/Makefile @@ -12,7 +12,7 @@ COMMENT= Geek Code Generator LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING -MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS}" +MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS} -fcommon" PLIST_FILES= bin/geekcode PORTDOCS= geekcode.txt |