diff options
author | roberto <roberto@FreeBSD.org> | 2002-05-09 12:19:55 +0000 |
---|---|---|
committer | roberto <roberto@FreeBSD.org> | 2002-05-09 12:19:55 +0000 |
commit | f86f9ad7d528f0154c7b2ff552e6e23235f92b1b (patch) | |
tree | 5962bdf4b95ac32db2257fb483c982b70cd9cd0b /devel/apr1/Makefile | |
parent | 70e4ea34aaf464a36167556d2b492ccb4c862b75 (diff) | |
download | FreeBSD-ports-f86f9ad7d528f0154c7b2ff552e6e23235f92b1b.zip FreeBSD-ports-f86f9ad7d528f0154c7b2ff552e6e23235f92b1b.tar.gz |
Add a rather ugly hack to work around problems compiling this port when a
older, incompatable version of apr is installed into ${PREFIX}. I've sent
a mail about the problem to dev@apr.apache.org, so hopefully this will be
worked out before the next time I update this package, and I'll be able to
get rid of this hack.
Submitted by: Garrett Rooney <rooneg@electricjellyfish.net> (MAINTAINER)
Diffstat (limited to 'devel/apr1/Makefile')
-rw-r--r-- | devel/apr1/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/devel/apr1/Makefile b/devel/apr1/Makefile index 0807e45..2a379aa 100644 --- a/devel/apr1/Makefile +++ b/devel/apr1/Makefile @@ -25,6 +25,9 @@ pre-fetch: ${SH} pkg-install apr-devel PRE-INSTALL pre-configure: + (find ${WRKDIR}/apr-util/ -name Makefile.in -exec \ + ${PERL} -pi -e 's/\@APRUTIL_INCLUDES\@ \@APRUTIL_PRIV_INCLUDES\@/\@APRUTIL_PRIV_INCLUDES\@ \@APRUTIL_INCLUDES\@/g' \{\} \;) + (cd ${WRKDIR}/apr/ && ./buildconf) (cd ${WRKDIR}/apr-util/ && ./buildconf) |