ports/58834: deve/apr port update
Craig Rodrigues
rodrigc at crodrigues.org
Sun Nov 2 15:50:22 UTC 2003
>Number: 58834
>Category: ports
>Synopsis: deve/apr port update
>Confidential: no
>Severity: serious
>Priority: medium
>Responsible: freebsd-ports-bugs
>State: open
>Quarter:
>Keywords:
>Date-Required:
>Class: maintainer-update
>Submitter-Id: current-users
>Arrival-Date: Sun Nov 02 07:50:18 PST 2003
>Closed-Date:
>Last-Modified:
>Originator: Craig Rodrigues
>Release: FreeBSD 5.1-CURRENT i386
>Organization:
>Environment:
System: FreeBSD dibbler.crodrigues.org 5.1-CURRENT FreeBSD 5.1-CURRENT #6: Sun Aug 10 03:31:21 EDT 2003 rodrigc at h00609772adf0.ne.client2.attbi.com:/usr/obj/usr/src/sys/MYKERNEL1 i386
>Description:
Add thread support to APR port.
>How-To-Repeat:
>Fix:
Index: Makefile
===================================================================
RCS file: /home/ncvs/ports/devel/apr/Makefile,v
retrieving revision 1.21
diff -u -r1.21 Makefile
--- Makefile 3 Oct 2003 05:25:25 -0000 1.21
+++ Makefile 2 Nov 2003 15:27:27 -0000
@@ -24,6 +24,8 @@
USE_LIBTOOL_VER= 14
LIBTOOLFILES= # none
INSTALLS_SHLIB= yes
+CONFIGURE_ENV= CPPFLAGS="${PTHREAD_CFLAGS}" \
+ LIBS="${PTHREAD_LIBS}"
WRKSRC= ${WRKDIR}
--- /dev/null Sun Nov 2 10:22:00 2003
+++ devel/apr/files/patch-apr_hints.m4 Sun Nov 2 01:25:47 2003
@@ -0,0 +1,12 @@
+--- apr-0.9.4/build/apr_hints.m4.orig Sun Nov 2 01:23:53 2003
++++ apr-0.9.4/build/apr_hints.m4 Sun Nov 2 01:24:44 2003
+@@ -135,9 +135,7 @@
+ APR_ADDTO(CFLAGS, [-funsigned-char])
+ ;;
+ esac
+- APR_SETIFNULL(enable_threads, [no])
+ APR_SETIFNULL(apr_lock_method, [USE_FLOCK_SERIALIZE])
+- APR_ADDTO(CPPFLAGS, [-D_REENTRANT -D_THREAD_SAFE])
+ ;;
+ *-next-nextstep*)
+ APR_SETIFNULL(CFLAGS, [-O])
--- /dev/null Sun Nov 2 10:22:00 2003
+++ devel/apr/files/patch-apr_atomic.h Sun Nov 2 02:23:07 2003
@@ -0,0 +1,20 @@
+--- apr-0.9.4/include/apr_atomic.h.orig Sun Nov 2 01:57:08 2003
++++ apr-0.9.4/include/apr_atomic.h Sun Nov 2 02:20:37 2003
+@@ -206,10 +206,16 @@
+
+ #define apr_atomic_t apr_uint32_t
+ #define apr_atomic_add(mem, val) atomic_add_int(mem,val)
+-#define apr_atomic_dec(mem) atomic_subtract_int(mem,1)
+ #define apr_atomic_inc(mem) atomic_add_int(mem,1)
+ #define apr_atomic_set(mem, val) atomic_set_int(mem, val)
+ #define apr_atomic_read(mem) (*mem)
++
++#define apr_atomic_dec(mem) \
++({ \
++ atomic_subtract_int(mem,1); \
++ *(int *)mem; \
++ })
++
+
+ #elif (defined(__linux__) || defined(__EMX__)) && defined(__i386__) && !APR_FORCE_ATOMIC_GENERIC
+
>Release-Note:
>Audit-Trail:
>Unformatted:
More information about the freebsd-ports-bugs
mailing list