Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 6 Aug 2014 06:39:21 +0000 (UTC)
From:      Hiroki Sato <hrs@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r364153 - in head/security/trousers: . files
Message-ID:  <53e1cd9a.5377.1e39c239@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: hrs
Date: Wed Aug  6 06:39:21 2014
New Revision: 364153
URL: http://svnweb.freebsd.org/changeset/ports/364153
QAT: https://qat.redports.org/buildarchive/r364153/

Log:
  Remove reference to my_init and my_fini.  These functions were causing
  symbol conflicts with other software like MySQL.
  
  PR:	192156

Modified:
  head/security/trousers/Makefile
  head/security/trousers/files/patch-src-tspi-rpc-hosttable.c

Modified: head/security/trousers/Makefile
==============================================================================
--- head/security/trousers/Makefile	Wed Aug  6 04:34:23 2014	(r364152)
+++ head/security/trousers/Makefile	Wed Aug  6 06:39:21 2014	(r364153)
@@ -3,7 +3,7 @@
 
 PORTNAME=	trousers
 PORTVERSION=	0.3.10
-PORTREVISION=	6
+PORTREVISION=	7
 CATEGORIES=	security
 MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}/${PORTVERSION}
 

Modified: head/security/trousers/files/patch-src-tspi-rpc-hosttable.c
==============================================================================
--- head/security/trousers/files/patch-src-tspi-rpc-hosttable.c	Wed Aug  6 04:34:23 2014	(r364152)
+++ head/security/trousers/files/patch-src-tspi-rpc-hosttable.c	Wed Aug  6 06:39:21 2014	(r364153)
@@ -1,6 +1,6 @@
---- src/tspi/rpc/hosttable.c.orig	2010-05-02 11:39:11.000000000 +0900
-+++ src/tspi/rpc/hosttable.c	2010-10-24 21:04:04.845560543 +0900
-@@ -36,8 +36,8 @@
+--- src/tspi/rpc/hosttable.c.orig	2012-09-20 02:35:07.000000000 +0900
++++ src/tspi/rpc/hosttable.c	2014-08-06 15:35:22.000000000 +0900
+@@ -36,10 +36,10 @@
  }
  
  #ifdef SOLARIS
@@ -9,8 +9,11 @@
 +#pragma init(_init_hosttable)
 +void _init_hosttable(void)
  #else
- void __attribute__ ((constructor)) my_init(void)
+-void __attribute__ ((constructor)) my_init(void)
++static void __attribute__ ((constructor)) my_init(void)
  #endif
+ {
+ 	host_table_init();
 @@ -51,6 +51,8 @@
  {
  	struct host_table_entry *hte, *next = NULL;
@@ -20,7 +23,7 @@
  	MUTEX_LOCK(ht->lock);
  
  	for (hte = ht->entries; hte; hte = next) {
-@@ -70,8 +72,8 @@
+@@ -70,10 +72,10 @@
  }
  
  #ifdef SOLARIS
@@ -29,8 +32,11 @@
 +#pragma fini(_fini_hosttable)
 +void _fini_hosttable(void)
  #else
- void __attribute__ ((destructor)) my_fini(void)
+-void __attribute__ ((destructor)) my_fini(void)
++static void __attribute__ ((destructor)) my_fini(void)
  #endif
+ {
+ 	host_table_final();
 @@ -84,6 +86,8 @@
  {
  	struct host_table_entry *entry, *tmp;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?53e1cd9a.5377.1e39c239>