[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: Subversion configure script broken for serf if sysroot path contains "-D"

From: Bruce Bye <bruce.bye_at_realvnc.com>
Date: Thu, 21 May 2015 14:54:26 +0100

> > But then, since what the code is actually trying to get is the
> include path and not the full cflags, perhaps it could instead request
> --variable=includedir from pkg-config, and not need to munge the
> string at all.
>
> Do you mind trying that? I'm sure a patch that does away with the
> regex filter entirely would be welcome.
>
The below patch works for me:
diff --git a/build/ac-macros/serf.m4 b/build/ac-macros/serf.m4
index ae11e75..6549147 100644
--- a/build/ac-macros/serf.m4
+++ b/build/ac-macros/serf.m4
@@ -143,7 +143,7 @@ AC_DEFUN(SVN_SERF_PKG_CONFIG,
          if $PKG_CONFIG $serf_major
--atleast-version=$serf_check_version; then
            AC_MSG_RESULT([yes])
            serf_found=yes
- SVN_SERF_INCLUDES=[`$PKG_CONFIG $serf_major --cflags | $SED
-e 's/-D[^ ]*//g'`]
+ SVN_SERF_INCLUDES="-I`$PKG_CONFIG $serf_major
--variable=includedir`"
            SVN_SERF_LIBS=`$PKG_CONFIG $serf_major --libs`
            break
          else

Cheers,
Bruce
Received on 2015-05-21 15:55:20 CEST

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.