Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 15 Sep 2014 19:07:25 +0000 (UTC)
From:      Garrett Cooper <ngie@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-user@freebsd.org
Subject:   svn commit: r271642 - in user/ngie/checkdpadd-fixes/usr.bin/svn: svn svnadmin svndumpfilter svnlook svnmucc svnrdump svnserve svnsync svnversion
Message-ID:  <201409151907.s8FJ7PvE053008@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ngie
Date: Mon Sep 15 19:07:24 2014
New Revision: 271642
URL: http://svnweb.freebsd.org/changeset/base/271642

Log:
  Commit draft make checkdpadd fixes for usr.bin/svn/...

Modified:
  user/ngie/checkdpadd-fixes/usr.bin/svn/svn/Makefile
  user/ngie/checkdpadd-fixes/usr.bin/svn/svnadmin/Makefile
  user/ngie/checkdpadd-fixes/usr.bin/svn/svndumpfilter/Makefile
  user/ngie/checkdpadd-fixes/usr.bin/svn/svnlook/Makefile
  user/ngie/checkdpadd-fixes/usr.bin/svn/svnmucc/Makefile
  user/ngie/checkdpadd-fixes/usr.bin/svn/svnrdump/Makefile
  user/ngie/checkdpadd-fixes/usr.bin/svn/svnserve/Makefile
  user/ngie/checkdpadd-fixes/usr.bin/svn/svnsync/Makefile
  user/ngie/checkdpadd-fixes/usr.bin/svn/svnversion/Makefile

Modified: user/ngie/checkdpadd-fixes/usr.bin/svn/svn/Makefile
==============================================================================
--- user/ngie/checkdpadd-fixes/usr.bin/svn/svn/Makefile	Mon Sep 15 18:46:02 2014	(r271641)
+++ user/ngie/checkdpadd-fixes/usr.bin/svn/svn/Makefile	Mon Sep 15 19:07:24 2014	(r271642)
@@ -24,25 +24,19 @@ CFLAGS+=-I${SVNDIR}/include -I${SVNDIR} 
 	-I${APRU}/include/private \
 	-I${APRU}/include
 
-LDADD=	-L${LIBSVN_CLIENTDIR} -lsvn_client \
-	-L${LIBSVN_WCDIR} -lsvn_wc \
-	-L${LIBSVN_RADIR} -lsvn_ra \
-	-L${LIBSVN_RA_LOCALDIR} -lsvn_ra_local \
-	-L${LIBSVN_RA_SVNDIR} -lsvn_ra_svn \
-	-L${LIBSVN_RA_SERFDIR} -lsvn_ra_serf \
-	-L${LIBSVN_REPOSDIR} -lsvn_repos \
-	-L${LIBSVN_FSDIR} -lsvn_fs \
-	-L${LIBSVN_FS_FSDIR} -lsvn_fs_fs \
-	-L${LIBSVN_FS_UTILDIR} -lsvn_fs_util \
-	-L${LIBSVN_DELTADIR} -lsvn_delta \
-	-L${LIBSVN_DIFFDIR} -lsvn_diff \
-	-L${LIBSVN_SUBRDIR} -lsvn_subr \
-	-L${LIBSERFDIR} -lserf \
-	-L${LIBAPR_UTILDIR} -lapr-util \
-	-lbsdxml \
-	-L${LIBAPRDIR} -lapr \
-	-L${LIBSQLITEDIR} -lsqlite3 \
-	-lz -lcrypt -lmagic -lcrypto -lssl -lpthread
+LDFLAGS= -L${LIBSVN_CLIENTDIR} -L${LIBSVN_WCDIR} -L${LIBSVN_RADIR} \
+	 -L${LIBSVN_RA_LOCALDIR} -L${LIBSVN_RA_SVNDIR} -L${LIBSVN_RA_SERFDIR} \
+	 -L${LIBSVN_REPOSDIR} -L${LIBSVN_FSDIR} -L${LIBSVN_FS_FSDIR} \
+	 -L${LIBSVN_FS_UTILDIR} -L${LIBSVN_DELTADIR} -L${LIBSVN_DIFFDIR} \
+	 -L${LIBSVN_SUBRDIR} -L${LIBSERFDIR} -L${LIBAPR_UTILDIR} \
+	 -L${LIBAPRDIR} -L${LIBSQLITEDIR} \
+
+LDADD=	-lsvn_client -lsvn_wc -lsvn_ra -lsvn_ra_local \
+	-lsvn_ra_svn -lsvn_ra_serf -lsvn_repos \
+	-lsvn_fs -lsvn_fs_fs -lsvn_fs_util -lsvn_delta \
+	-lsvn_diff -lsvn_subr -lserf -lapr-util \
+	-lbsdxml -lapr -lsqlite3 -lz -lcrypt -lmagic \
+	-lcrypto -lssl -lpthread
 
 DPADD=	${LIBSVN_CLIENT} ${LIBSVN_WC} ${LIBSVN_RA} ${LIBSVN_RA_LOCAL} \
 	${LIBSVN_RA_SVN} ${LIBSVN_RA_SERF} ${LIBSVN_REPOS} \

Modified: user/ngie/checkdpadd-fixes/usr.bin/svn/svnadmin/Makefile
==============================================================================
--- user/ngie/checkdpadd-fixes/usr.bin/svn/svnadmin/Makefile	Mon Sep 15 18:46:02 2014	(r271641)
+++ user/ngie/checkdpadd-fixes/usr.bin/svn/svnadmin/Makefile	Mon Sep 15 19:07:24 2014	(r271642)
@@ -18,17 +18,12 @@ CFLAGS+=-I${SVNDIR}/include -I${SVNDIR} 
 	-I${APRU}/include/private \
 	-I${APRU}/include
 
-LDADD=	-L${LIBSVN_REPOSDIR} -lsvn_repos \
-	-L${LIBSVN_FSDIR} -lsvn_fs \
-	-L${LIBSVN_FS_FSDIR} -lsvn_fs_fs \
-	-L${LIBSVN_FS_UTILDIR} -lsvn_fs_util \
-	-L${LIBSVN_DELTADIR} -lsvn_delta \
-	-L${LIBSVN_SUBRDIR} -lsvn_subr \
-	-L${LIBAPR_UTILDIR} -lapr-util \
-	-lbsdxml \
-	-L${LIBAPRDIR} -lapr \
-	-L${LIBSQLITEDIR} -lsqlite3 \
-	-lz -lcrypt
+LDFLAGS= -L${LIBSVN_REPOSDIR} -L${LIBSVN_FSDIR} -L${LIBSVN_FS_FSDIR} \
+	 -L${LIBSVN_FS_UTILDIR} -L${LIBSVN_DELTADIR} -L${LIBSVN_SUBRDIR} \
+	 -L${LIBAPR_UTILDIR} -L${LIBAPRDIR} -L${LIBSQLITEDIR} \
+
+LDADD=	-lsvn_repos -lsvn_fs -lsvn_fs_fs -lsvn_fs_util -lsvn_delta \
+	-lsvn_subr -lapr-util -lbsdxml -lapr -lsqlite3 -lz -lcrypt \
 
 DPADD=	${LIBSVN_REPOS} ${LIBSVN_FS} ${LIBSVN_FS_FS} ${LIBSVN_FS_UTIL} \
 	${LIBSVN_DELTA} ${LIBSVN_SUBR} ${LIBAPR_UTIL} \

Modified: user/ngie/checkdpadd-fixes/usr.bin/svn/svndumpfilter/Makefile
==============================================================================
--- user/ngie/checkdpadd-fixes/usr.bin/svn/svndumpfilter/Makefile	Mon Sep 15 18:46:02 2014	(r271641)
+++ user/ngie/checkdpadd-fixes/usr.bin/svn/svndumpfilter/Makefile	Mon Sep 15 19:07:24 2014	(r271642)
@@ -18,17 +18,12 @@ CFLAGS+=-I${SVNDIR}/include -I${SVNDIR} 
 	-I${APRU}/include/private \
 	-I${APRU}/include
 
-LDADD=	-L${LIBSVN_REPOSDIR} -lsvn_repos \
-	-L${LIBSVN_FSDIR} -lsvn_fs \
-	-L${LIBSVN_FS_FSDIR} -lsvn_fs_fs \
-	-L${LIBSVN_FS_UTILDIR} -lsvn_fs_util \
-	-L${LIBSVN_DELTADIR} -lsvn_delta \
-	-L${LIBSVN_SUBRDIR} -lsvn_subr \
-	-L${LIBAPR_UTILDIR} -lapr-util \
-	-lbsdxml \
-	-L${LIBAPRDIR} -lapr \
-	-L${LIBSQLITEDIR} -lsqlite3 \
-	-lz -lcrypt
+LDFLAGS=-L${LIBSVN_REPOSDIR} -L${LIBSVN_FSDIR} -L${LIBSVN_FS_FSDIR} \
+	-L${LIBSVN_FS_UTILDIR} -L${LIBSVN_DELTADIR} -L${LIBSVN_SUBRDIR} \
+	-L${LIBAPR_UTILDIR} -L${LIBAPRDIR} -L${LIBSQLITEDIR}
+
+LDADD=	-lsvn_repos -lsvn_fs -lsvn_fs_fs -lsvn_fs_util -lsvn_delta -lsvn_subr \
+	-lapr-util -lbsdxml -lapr -lsqlite3 -lz -lcrypt
 
 DPADD=	${LIBSVN_REPOS} ${LIBSVN_FS} ${LIBSVN_FS_FS} ${LIBSVN_FS_UTIL} \
 	${LIBSVN_DELTA} ${LIBSVN_SUBR} ${LIBAPR_UTIL} \

Modified: user/ngie/checkdpadd-fixes/usr.bin/svn/svnlook/Makefile
==============================================================================
--- user/ngie/checkdpadd-fixes/usr.bin/svn/svnlook/Makefile	Mon Sep 15 18:46:02 2014	(r271641)
+++ user/ngie/checkdpadd-fixes/usr.bin/svn/svnlook/Makefile	Mon Sep 15 19:07:24 2014	(r271642)
@@ -18,18 +18,13 @@ CFLAGS+=-I${SVNDIR}/include -I${SVNDIR} 
 	-I${APRU}/include/private \
 	-I${APRU}/include
 
-LDADD=	-L${LIBSVN_REPOSDIR} -lsvn_repos \
-	-L${LIBSVN_FSDIR} -lsvn_fs \
-	-L${LIBSVN_FS_FSDIR} -lsvn_fs_fs \
-	-L${LIBSVN_FS_UTILDIR} -lsvn_fs_util \
-	-L${LIBSVN_DELTADIR} -lsvn_delta \
-	-L${LIBSVN_DIFFDIR} -lsvn_diff \
-	-L${LIBSVN_SUBRDIR} -lsvn_subr \
-	-L${LIBAPR_UTILDIR} -lapr-util \
-	-lbsdxml \
-	-L${LIBAPRDIR} -lapr \
-	-L${LIBSQLITEDIR} -lsqlite3 \
-	-lz -lcrypt
+LDFLAGS=-L${LIBSVN_REPOSDIR} -L${LIBSVN_FSDIR} -L${LIBSVN_FS_FSDIR} \
+	-L${LIBSVN_FS_UTILDIR} -L${LIBSVN_DELTADIR} -L${LIBSVN_DIFFDIR} \
+	-L${LIBSVN_SUBRDIR} -L${LIBAPR_UTILDIR} -L${LIBAPRDIR} \
+	-L${LIBSQLITEDIR}
+
+LDADD=	-lsvn_repos -lsvn_fs -lsvn_fs_fs -lsvn_fs_util -lsvn_delta -lsvn_diff \
+	-lsvn_subr -lapr-util -lbsdxml -lapr -lsqlite3 -lz -lcrypt
 
 DPADD=	${LIBSVN_REPOS} ${LIBSVN_FS} ${LIBSVN_FS_FS} ${LIBSVN_FS_UTIL} \
 	${LIBSVN_DELTA} ${LIBSVN_DIFF} ${LIBSVN_SUBR} ${LIBAPR_UTIL} \

Modified: user/ngie/checkdpadd-fixes/usr.bin/svn/svnmucc/Makefile
==============================================================================
--- user/ngie/checkdpadd-fixes/usr.bin/svn/svnmucc/Makefile	Mon Sep 15 18:46:02 2014	(r271641)
+++ user/ngie/checkdpadd-fixes/usr.bin/svn/svnmucc/Makefile	Mon Sep 15 19:07:24 2014	(r271642)
@@ -18,23 +18,16 @@ CFLAGS+=-I${SVNDIR}/include -I${SVNDIR} 
 	-I${APRU}/include/private \
 	-I${APRU}/include
 
-LDADD=	-L${LIBSVN_CLIENTDIR} -lsvn_client \
-	-L${LIBSVN_RADIR} -lsvn_ra \
-	-L${LIBSVN_RA_LOCALDIR} -lsvn_ra_local \
-	-L${LIBSVN_RA_SVNDIR} -lsvn_ra_svn \
-	-L${LIBSVN_RA_SERFDIR} -lsvn_ra_serf \
-	-L${LIBSVN_REPOSDIR} -lsvn_repos \
-	-L${LIBSVN_FSDIR} -lsvn_fs \
-	-L${LIBSVN_FS_FSDIR} -lsvn_fs_fs \
-	-L${LIBSVN_FS_UTILDIR} -lsvn_fs_util \
-	-L${LIBSVN_DELTADIR} -lsvn_delta \
-	-L${LIBSVN_SUBRDIR} -lsvn_subr \
-	-L${LIBSERFDIR} -lserf \
-	-L${LIBAPR_UTILDIR} -lapr-util \
-	-lbsdxml \
-	-L${LIBAPRDIR} -lapr \
-	-L${LIBSQLITEDIR} -lsqlite3 \
-	-lz -lcrypt -lmagic -lcrypto -lssl -lpthread
+LDFLAGS=-L${LIBSVN_CLIENTDIR} -L${LIBSVN_RADIR} -L${LIBSVN_RA_LOCALDIR} \
+	-L${LIBSVN_RA_SVNDIR} -L${LIBSVN_RA_SERFDIR} -L${LIBSVN_REPOSDIR} \
+	-L${LIBSVN_FSDIR} -L${LIBSVN_FS_FSDIR} -L${LIBSVN_FS_UTILDIR} \
+	-L${LIBSVN_DELTADIR} -L${LIBSVN_SUBRDIR} -L${LIBSERFDIR} \
+	-L${LIBAPR_UTILDIR} -L${LIBAPRDIR} -L${LIBSQLITEDIR}
+
+LDADD=	-lsvn_client -lsvn_ra -lsvn_ra_local -lsvn_ra_svn -lsvn_ra_serf \
+	-lsvn_repos -lsvn_fs -lsvn_fs_fs -lsvn_fs_util -lsvn_delta -lsvn_subr \
+	-lserf -lapr-util -lbsdxml -lapr -lsqlite3 -lz -lcrypt -lmagic \
+	-lcrypto -lssl -lpthread
 
 DPADD=	${LIBSVN_CLIENT} ${LIBSVN_RA} ${LIBSVN_RA_LOCAL} ${LIBSVN_RA_SVN} \
 	${LIBSVN_RA_SERF} ${LIBSVN_REPOS} ${LIBSVN_FS} ${LIBSVN_FS_FS} \

Modified: user/ngie/checkdpadd-fixes/usr.bin/svn/svnrdump/Makefile
==============================================================================
--- user/ngie/checkdpadd-fixes/usr.bin/svn/svnrdump/Makefile	Mon Sep 15 18:46:02 2014	(r271641)
+++ user/ngie/checkdpadd-fixes/usr.bin/svn/svnrdump/Makefile	Mon Sep 15 19:07:24 2014	(r271642)
@@ -18,25 +18,17 @@ CFLAGS+=-I${SVNDIR}/include -I${SVNDIR} 
 	-I${APRU}/include/private \
 	-I${APRU}/include
 
-LDADD=	-L${LIBSVN_CLIENTDIR} -lsvn_client \
-	-L${LIBSVN_WCDIR} -lsvn_wc \
-	-L${LIBSVN_RADIR} -lsvn_ra \
-	-L${LIBSVN_RA_LOCALDIR} -lsvn_ra_local \
-	-L${LIBSVN_RA_SVNDIR} -lsvn_ra_svn \
-	-L${LIBSVN_RA_SERFDIR} -lsvn_ra_serf \
-	-L${LIBSVN_REPOSDIR} -lsvn_repos \
-	-L${LIBSVN_FSDIR} -lsvn_fs \
-	-L${LIBSVN_FS_FSDIR} -lsvn_fs_fs \
-	-L${LIBSVN_FS_UTILDIR} -lsvn_fs_util \
-	-L${LIBSVN_DELTADIR} -lsvn_delta \
-	-L${LIBSVN_DIFFDIR} -lsvn_diff \
-	-L${LIBSVN_SUBRDIR} -lsvn_subr \
-	-L${LIBSERFDIR} -lserf \
-	-L${LIBAPR_UTILDIR} -lapr-util \
-	-lbsdxml \
-	-L${LIBAPRDIR} -lapr \
-	-L${LIBSQLITEDIR} -lsqlite3 \
-	-lz -lcrypt -lmagic -lcrypto -lssl -lpthread
+LDFLAGS=-L${LIBSVN_CLIENTDIR} -L${LIBSVN_WCDIR} -L${LIBSVN_RADIR} \
+	-L${LIBSVN_RA_LOCALDIR} -L${LIBSVN_RA_SVNDIR} -L${LIBSVN_RA_SERFDIR} \
+	-L${LIBSVN_REPOSDIR} -L${LIBSVN_FSDIR} -L${LIBSVN_FS_FSDIR} \
+	-L${LIBSVN_FS_UTILDIR} -L${LIBSVN_DELTADIR} -L${LIBSVN_DIFFDIR} \
+	-L${LIBSVN_SUBRDIR} -L${LIBSERFDIR} -L${LIBAPR_UTILDIR} \
+	-L${LIBAPRDIR} -L${LIBSQLITEDIR}
+
+LDADD=	-lsvn_client -lsvn_wc -lsvn_ra -lsvn_ra_local -lsvn_ra_svn \
+	-lsvn_ra_serf -lsvn_repos -lsvn_fs -lsvn_fs_fs -lsvn_fs_util \
+	-lsvn_delta -lsvn_diff -lsvn_subr -lserf -lapr-util -lbsdxml \
+	-lapr -lsqlite3 -lz -lcrypt -lmagic -lcrypto -lssl -lpthread
 
 DPADD=	${LIBSVN_CLIENT} ${LIBSVN_WC} ${LIBSVN_RA} ${LIBSVN_RA_LOCAL} \
 	${LIBSVN_RA_SVN} ${LIBSVN_RA_SERF} ${LIBSVN_REPOS} \

Modified: user/ngie/checkdpadd-fixes/usr.bin/svn/svnserve/Makefile
==============================================================================
--- user/ngie/checkdpadd-fixes/usr.bin/svn/svnserve/Makefile	Mon Sep 15 18:46:02 2014	(r271641)
+++ user/ngie/checkdpadd-fixes/usr.bin/svn/svnserve/Makefile	Mon Sep 15 19:07:24 2014	(r271642)
@@ -18,22 +18,16 @@ CFLAGS+=-I${SVNDIR}/include -I${SVNDIR} 
 	-I${APRU}/include/private \
 	-I${APRU}/include
 
-LDADD=	-L${LIBSVN_RADIR} -lsvn_ra \
-	-L${LIBSVN_RA_LOCALDIR} -lsvn_ra_local \
-	-L${LIBSVN_RA_SVNDIR} -lsvn_ra_svn \
-	-L${LIBSVN_RA_SERFDIR} -lsvn_ra_serf \
-	-L${LIBSVN_REPOSDIR} -lsvn_repos \
-	-L${LIBSVN_FSDIR} -lsvn_fs \
-	-L${LIBSVN_FS_FSDIR} -lsvn_fs_fs \
-	-L${LIBSVN_FS_UTILDIR} -lsvn_fs_util \
-	-L${LIBSVN_DELTADIR} -lsvn_delta \
-	-L${LIBSVN_SUBRDIR} -lsvn_subr \
-	-L${LIBSERFDIR} -lserf \
-	-L${LIBAPR_UTILDIR} -lapr-util \
-	-lbsdxml \
-	-L${LIBAPRDIR} -lapr \
-	-L${LIBSQLITEDIR} -lsqlite3 \
-	-lz -lcrypt -lmagic -lcrypto -lssl -lpthread
+LDFLAGS=-L${LIBSVN_RADIR} -L${LIBSVN_RA_LOCALDIR} -L${LIBSVN_RA_SVNDIR} \
+	-L${LIBSVN_RA_SERFDIR} -L${LIBSVN_REPOSDIR} -L${LIBSVN_FSDIR} \
+	-L${LIBSVN_FS_FSDIR} -L${LIBSVN_FS_UTILDIR} -L${LIBSVN_DELTADIR} \
+	-L${LIBSVN_SUBRDIR} -L${LIBSERFDIR} -L${LIBAPR_UTILDIR} \
+	-L${LIBAPRDIR} -L${LIBSQLITEDIR}
+
+LDADD=	-lsvn_ra -lsvn_ra_local -lsvn_ra_svn -lsvn_ra_serf -lsvn_repos \
+	-lsvn_fs -lsvn_fs_fs -lsvn_fs_util -lsvn_delta -lsvn_subr -lserf \
+	-lapr-util -lbsdxml -lapr -lsqlite3 -lz -lcrypt -lmagic -lcrypto \
+	-lssl -lpthread
 
 DPADD=	${LIBSVN_RA} ${LIBSVN_RA_LOCAL} ${LIBSVN_RA_SVN} ${LIBSVN_RA_SERF} \
 	${LIBSVN_REPOS} ${LIBSVN_FS} ${LIBSVN_FS_FS} ${LIBSVN_FS_UTIL} \

Modified: user/ngie/checkdpadd-fixes/usr.bin/svn/svnsync/Makefile
==============================================================================
--- user/ngie/checkdpadd-fixes/usr.bin/svn/svnsync/Makefile	Mon Sep 15 18:46:02 2014	(r271641)
+++ user/ngie/checkdpadd-fixes/usr.bin/svn/svnsync/Makefile	Mon Sep 15 19:07:24 2014	(r271642)
@@ -18,22 +18,16 @@ CFLAGS+=-I${SVNDIR}/include -I${SVNDIR} 
 	-I${APRU}/include/private \
 	-I${APRU}/include
 
-LDADD=	-L${LIBSVN_RADIR} -lsvn_ra \
-	-L${LIBSVN_RA_LOCALDIR} -lsvn_ra_local \
-	-L${LIBSVN_RA_SVNDIR} -lsvn_ra_svn \
-	-L${LIBSVN_RA_SERFDIR} -lsvn_ra_serf \
-	-L${LIBSVN_REPOSDIR} -lsvn_repos \
-	-L${LIBSVN_FSDIR} -lsvn_fs \
-	-L${LIBSVN_FS_FSDIR} -lsvn_fs_fs \
-	-L${LIBSVN_FS_UTILDIR} -lsvn_fs_util \
-	-L${LIBSVN_DELTADIR} -lsvn_delta \
-	-L${LIBSVN_SUBRDIR} -lsvn_subr \
-	-L${LIBSERFDIR} -lserf \
-	-L${LIBAPR_UTILDIR} -lapr-util \
-	-lbsdxml \
-	-L${LIBAPRDIR} -lapr \
-	-L${LIBSQLITEDIR} -lsqlite3 \
-	-lz -lcrypt -lmagic -lcrypto -lssl -lpthread
+LDFLAGS=-L${LIBSVN_RADIR} -L${LIBSVN_RA_LOCALDIR} -L${LIBSVN_RA_SVNDIR} \
+	-L${LIBSVN_RA_SERFDIR} -L${LIBSVN_REPOSDIR} -L${LIBSVN_FSDIR} \
+	-L${LIBSVN_FS_FSDIR} -L${LIBSVN_FS_UTILDIR} -L${LIBSVN_DELTADIR} \
+	-L${LIBSVN_SUBRDIR} -L${LIBSERFDIR} -L${LIBAPR_UTILDIR} \
+	-L${LIBAPRDIR} -L${LIBSQLITEDIR}
+
+LDADD=	-lsvn_ra -lsvn_ra_local -lsvn_ra_svn -lsvn_ra_serf -lsvn_repos \
+	-lsvn_fs -lsvn_fs_fs -lsvn_fs_util -lsvn_delta -lsvn_subr -lserf \
+	-lapr-util -lbsdxml -lapr -lsqlite3 -lz -lcrypt -lmagic -lcrypto \
+	-lssl -lpthread
 
 DPADD=	${LIBSVN_RA} ${LIBSVN_RA_LOCAL} ${LIBSVN_RA_SVN} ${LIBSVN_RA_SERF} \
 	${LIBSVN_REPOS} ${LIBSVN_FS} ${LIBSVN_FS_FS} ${LIBSVN_FS_UTIL} \

Modified: user/ngie/checkdpadd-fixes/usr.bin/svn/svnversion/Makefile
==============================================================================
--- user/ngie/checkdpadd-fixes/usr.bin/svn/svnversion/Makefile	Mon Sep 15 18:46:02 2014	(r271641)
+++ user/ngie/checkdpadd-fixes/usr.bin/svn/svnversion/Makefile	Mon Sep 15 19:07:24 2014	(r271642)
@@ -18,15 +18,12 @@ CFLAGS+=-I${SVNDIR}/include -I${SVNDIR} 
 	-I${APRU}/include/private \
 	-I${APRU}/include
 
-LDADD=	-L${LIBSVN_WCDIR} -lsvn_wc \
-	-L${LIBSVN_DELTADIR} -lsvn_delta \
-	-L${LIBSVN_DIFFDIR} -lsvn_diff \
-	-L${LIBSVN_SUBRDIR} -lsvn_subr \
-	-L${LIBAPR_UTILDIR} -lapr-util \
-	-lbsdxml \
-	-L${LIBAPRDIR} -lapr \
-	-L${LIBSQLITEDIR} -lsqlite3 \
-	-lz -lcrypt
+LDFLAGS=-L${LIBSVN_WCDIR} -L${LIBSVN_DELTADIR} -L${LIBSVN_DIFFDIR} \
+	-L${LIBSVN_SUBRDIR} -L${LIBAPR_UTILDIR} -L${LIBAPRDIR} \
+	-L${LIBSQLITEDIR}
+
+LDADD=	-lsvn_wc -lsvn_delta -lsvn_diff -lsvn_subr -lserf -lapr-util -lbsdxml \
+	-lapr -lsqlite3 -lz -lcrypt
 
 DPADD=	${LIBSVN_WC} ${LIBSVN_DELTA} ${LIBSVN_DIFF} ${LIBSVN_SUBR} \
 	${LIBSERF} ${LIBAPR_UTIL} ${LIBBSDXML} ${LIBAPR} ${LIBSQLITE} \



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