Date: Sat, 26 Sep 2020 13:26:32 +0000 (UTC) From: =?UTF-8?Q?Stefan_E=c3=9fer?= <se@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r550184 - in head/security/libhijack: . files Message-ID: <202009261326.08QDQWVI020777@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: se Date: Sat Sep 26 13:26:32 2020 New Revision: 550184 URL: https://svnweb.freebsd.org/changeset/ports/550184 Log: Fix build with -fno-common The libhijack/Makefile specified elf.c twice as a source file to build, leading to double defined global symbols in the link step. Added: head/security/libhijack/files/ head/security/libhijack/files/patch-libhijack_Makefile (contents, props changed) Modified: head/security/libhijack/Makefile Modified: head/security/libhijack/Makefile ============================================================================== --- head/security/libhijack/Makefile Sat Sep 26 13:18:05 2020 (r550183) +++ head/security/libhijack/Makefile Sat Sep 26 13:26:32 2020 (r550184) @@ -4,6 +4,7 @@ PORTNAME= libhijack DISTVERSIONPREFIX= v DISTVERSION= 0.8.0-2 DISTVERSIONSUFFIX= -g972534d +PORTREVISION= 1 CATEGORIES= security MAINTAINER= shawn.webb@hardenedbsd.org Added: head/security/libhijack/files/patch-libhijack_Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/libhijack/files/patch-libhijack_Makefile Sat Sep 26 13:26:32 2020 (r550184) @@ -0,0 +1,10 @@ +--- libhijack/Makefile.orig 2018-12-20 16:47:42 UTC ++++ libhijack/Makefile +@@ -6,7 +6,6 @@ SHLIB= hijack + SHLIB_MAJOR= 2 + SRCS= \ + elf.c \ +- elf.c \ + error.c \ + func.c \ + libhijack.c \
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202009261326.08QDQWVI020777>