diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | xtrans.m4 | 4 |
2 files changed, 10 insertions, 1 deletions
@@ -1,3 +1,10 @@ +2005-08-17 Charlie & <anholt@FreeBSD.org> + + * xtrans.m4: + On FreeBSD, some of the symbols necessary for secure RPC support are in + librpcsvc, so check for their presence in rpcsvc so that the library + will be added. + 2005-07-14 Alan Coopersmith <alan.coopersmith@sun.com> * xtrans.m4: @@ -1,4 +1,4 @@ -dnl $XdotOrg: $ +dnl $XdotOrg: lib/xtrans/xtrans.m4,v 1.6 2005/07/26 18:59:11 alanc Exp $ dnl dnl Copyright 2005 Sun Microsystems, Inc. All rights reserved. dnl @@ -100,6 +100,8 @@ AC_DEFUN([XTRANS_SECURE_RPC_FLAGS], fi SECURE_RPC="no" else + dnl FreeBSD keeps getsecretkey in librpcsvc + AC_SEARCH_LIBS(getsecretkey, [rpcsvc]) SECURE_RPC="yes" fi fi |