Author: stsp
Date: Thu Jun 10 10:35:41 2010
New Revision: 953273
URL: http://svn.apache.org/viewvc?rev=953273&view=rev
Log:
* tools/dev/unix-build/Makefile.svn: Fix build of serf 0.6.1.
Modified:
subversion/trunk/tools/dev/unix-build/Makefile.svn
Modified: subversion/trunk/tools/dev/unix-build/Makefile.svn
URL:
http://svn.apache.org/viewvc/subversion/trunk/tools/dev/unix-build/Makefile.svn?rev=953273&r1=953272&r2=953273&view=diff
==============================================================================
--- subversion/trunk/tools/dev/unix-build/Makefile.svn (original)
+++ subversion/trunk/tools/dev/unix-build/Makefile.svn Thu Jun 10 10:35:41 2010
@@ -560,13 +560,14 @@ $(DISTDIR)/$(NEON_DIST):
$(SERF_OBJDIR)/.retrieved: $(DISTDIR)/$(SERF_DIST)
[ -d $(SERF_OBJDIR) ] || mkdir -p $(SERF_OBJDIR)
tar -C $(SRCDIR) -zxf $(DISTDIR)/$(SERF_DIST)
+ cd $(SRCDIR)/serf-$(SERF_VER) && \
+ svn diff -c1394 http://serf.googlecode.com/svn | patch -p2
touch $@
# compile serf (serf won't compile outside its source tree)
$(SERF_OBJDIR)/.compiled: $(SERF_OBJDIR)/.retrieved
cd $(SERF_SRCDIR) && \
./serfmake --with-apr=$(PREFIX)/apr \
- --with-apr-util=$(PREFIX)/apr \
--prefix=$(PREFIX)/serf \
build
touch $@