svn commit: r550184 - in head/security/libhijack: . files

Stefan Eßer se at FreeBSD.org
Sat Sep 26 13:26:33 UTC 2020


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 at 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 \


More information about the svn-ports-head mailing list