[ccache] ccache version 3.2.3 has been released

Mike Frysinger vapier at gentoo.org
Wed Aug 19 13:41:41 UTC 2015


On 17 Aug 2015 21:06, Joel Rosdahl wrote:
> Tom Lane <tgl at sss.pgh.pa.us> wrote:
> > [...] this fails to build for me on late-model OS X:
> 
> Bummer. Here's my proposed fix:
> https://git.samba.org/?p=ccache.git;a=commitdiff;h=f74c76107933046309861680b741adc67ac2a34e.
> Perhaps you could try it out?

that might work, but i think it's incorrect and can/will lead to problems in
the future.  ldflags should not contain libs for linking ... that's what LIBS
is for.  so you probably want:

--- a/configure.ac
+++ b/configure.ac
@@ -120,7 +120,7 @@ if test x${use_bundled_zlib} = xyes; then
     extra_libs="zlib/libz.a"
     mkdir -p zlib
 else
-    extra_ldflags="-lz"
+    LIBS="$LIBS -lz"
 fi
 
 dnl Linking on Windows needs ws2_32

-mike
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: Digital signature
URL: <http://lists.samba.org/pipermail/ccache/attachments/20150819/e2e0fac0/signature.sig>


More information about the ccache mailing list