svn commit: r206841 - stable/8/sbin/hastd

Pawel Jakub Dawidek pjd at FreeBSD.org
Mon Apr 19 14:23:15 UTC 2010


Author: pjd
Date: Mon Apr 19 14:23:15 2010
New Revision: 206841
URL: http://svn.freebsd.org/changeset/base/206841

Log:
  MFC r204352:
  
  Fixed static linkage.

Modified:
  stable/8/sbin/hastd/Makefile
Directory Properties:
  stable/8/sbin/hastd/   (props changed)

Modified: stable/8/sbin/hastd/Makefile
==============================================================================
--- stable/8/sbin/hastd/Makefile	Mon Apr 19 14:15:58 2010	(r206840)
+++ stable/8/sbin/hastd/Makefile	Mon Apr 19 14:23:15 2010	(r206841)
@@ -27,8 +27,9 @@ CFLAGS+=-DINET6
 # This is needed to have WARNS > 1.
 CFLAGS+=-DYY_NO_UNPUT
 
-DPADD=	${LIBCRYPTO} ${LIBGEOM} ${LIBL} ${LIBPTHREAD} ${LIBUTIL}
-LDADD=	-lcrypto -lgeom -ll -lpthread -lutil
+DPADD=	${LIBCRYPTO} ${LIBGEOM} ${LIBBSDXML} ${LIBSBUF} ${LIBL} \
+	${LIBPTHREAD} ${LIBUTIL}
+LDADD=	-lcrypto -lgeom -lbsdxml -lsbuf -ll -lpthread -lutil
 
 YFLAGS+=-v
 


More information about the svn-src-stable-8 mailing list