Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 9 May 2002 14:49:27 +0400 (MSD)
From:      Dmitry Morozovsky <marck@rinet.ru>
To:        rooneg@electricjellyfish.net, <stable@freebsd.org>
Subject:   ports/devel/apr-devel broken for last 3 days
Message-ID:  <20020509133414.V6600-100000@woozle.rinet.ru>

next in thread | raw e-mail | index | archive | help
Hi there colleagues,

devel/apr-devel after maintainer's requested update at Tue May 7 14:52:56
2002 UTC (Version 1.3 of port's Makefile) fails to build if previous
version is installed due to incompatibility with headers and early
inclusion of old header.

Also, this port does not pay attention to $CFLAGS, unconditionally setting
them to '-g -O2', which is IIRC against ports policy. I have no patch for
this handy, though.

Here is the quick fix for includes order (for -stable users, you can put
the in files/patch-xxxx). I suppose, all other Maikefile.in's should be
patched the same way.

--- apr-util/Makefile.in~       Wed Feb  6 20:23:38 2002
+++ apr-util/Makefile.in        Thu May  9 13:48:15 2002
@@ -6,7 +6,7 @@
 srcdir = @srcdir@
 VPATH = @srcdir@

-INCLUDES = @APR_INCLUDES@ @APRUTIL_INCLUDES@ @APRUTIL_PRIV_INCLUDES@
+INCLUDES = @APRUTIL_PRIV_INCLUDES@ @APRUTIL_INCLUDES@ @APR_INCLUDES@

 TARGET_LIB = libaprutil.la
 INSTALL_SUBDIRS = @APR_XML_DIR@
--- apr-util/buckets/Makefile.in~       Fri Mar 29 14:29:27 2002
+++ apr-util/buckets/Makefile.in        Thu May  9 13:53:18 2002
@@ -1,6 +1,6 @@
 VPATH = @srcdir@

-INCLUDES = @APR_INCLUDES@ @APRUTIL_INCLUDES@ @APRUTIL_PRIV_INCLUDES@
+INCLUDES = @APRUTIL_PRIV_INCLUDES@ @APRUTIL_INCLUDES@ @APR_INCLUDES@

 TARGETS = apr_buckets_file.lo apr_buckets_pool.lo apr_buckets_flush.lo \
           apr_buckets_refcount.lo apr_buckets_heap.lo
apr_buckets_simple.lo \



Sincerely,
D.Marck                                   [DM5020, DM268-RIPE, DM3-RIPN]
------------------------------------------------------------------------
*** Dmitry Morozovsky --- D.Marck --- Wild Woozle --- marck@rinet.ru ***
------------------------------------------------------------------------



To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-stable" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20020509133414.V6600-100000>