ports/165089: The patch of devel/glog is a little wrong

Changming Sun snnn119 at gmail.com
Mon Feb 13 09:40:07 UTC 2012


>Number:         165089
>Category:       ports
>Synopsis:       The patch of devel/glog is a little wrong
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Mon Feb 13 09:40:07 UTC 2012
>Closed-Date:
>Last-Modified:
>Originator:     Changming Sun
>Release:        FreeBSD 9.0
>Organization:
tudou.inc.
>Environment:
FreeBSD test27.localdomain 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan  3 07:46:30 UTC 2012     root at farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  amd64
>Description:
The patch of devel/glog is a little wrong

--- src/utilities.cc.orig       2010-06-15 14:28:09.000000000 +0800
+++ src/utilities.cc    2011-04-07 17:00:18.000000000 +0800
@@ -227,8 +227,6 @@
 #ifndef __NR_gettid
 #ifdef OS_MACOSX
 #define __NR_gettid SYS_gettid
-#elif ! defined __i386__
-#error "Must define __NR_gettid for non-x86 platforms"
 #else
 #define __NR_gettid 224
 #endif


The syscall of "224" is SYS_freebsd7_msgctl

>How-To-Repeat:
portsnap fetch update
read /usr/ports/devel/glog/files/extra-patch-src-utilities.cc 
>Fix:
I don't know how to get thread id in FreeBSD.
If we don't have such a function, we can just return pid.

pid_t GetTID() {
  return getpid();                                          
}


>Release-Note:
>Audit-Trail:
>Unformatted:



More information about the freebsd-ports-bugs mailing list