summaryrefslogtreecommitdiffstats
path: root/aclocal
diff options
context:
space:
mode:
authorChuck Lever <chuck.lever@oracle.com>2009-03-16 13:32:49 -0400
committerSteve Dickson <steved@redhat.com>2009-03-16 13:32:49 -0400
commitfd6a34c83051f82c9064963e24976bf3c47a5422 (patch)
tree0fde1d08bc7d62d751caff6dc33d80766e7d4b70 /aclocal
parent617d0ac4e51889506f3afc39f5ef686d5c0e0d15 (diff)
downloadnfs-utils-fd6a34c83051f82c9064963e24976bf3c47a5422.tar.gz
nfs-utils-fd6a34c83051f82c9064963e24976bf3c47a5422.tar.xz
nfs-utils-fd6a34c83051f82c9064963e24976bf3c47a5422.zip
nfs-utils: don't need extra libs to do AC_CHECK_LIBS for librpcsecgss
From: Jeff Layton <jlayton@redhat.com> The conftest should work without these extra libs being included. Signed-off-by: Jeff Layton <jlayton@redhat.com> Signed-off-by: Chuck Lever <chuck.lever@oracle.com> Signed-off-by: Steve Dickson <steved@redhat.com>
Diffstat (limited to 'aclocal')
-rw-r--r--aclocal/librpcsecgss.m48
1 files changed, 3 insertions, 5 deletions
diff --git a/aclocal/librpcsecgss.m4 b/aclocal/librpcsecgss.m4
index a81819e..5791260 100644
--- a/aclocal/librpcsecgss.m4
+++ b/aclocal/librpcsecgss.m4
@@ -5,12 +5,10 @@ AC_DEFUN([AC_LIBRPCSECGSS], [
dnl Check for library, but do not add -lrpcsecgss to LIBS
AC_CHECK_LIB([rpcsecgss], [authgss_create_default], [librpcsecgss=1],
- [AC_MSG_ERROR([librpcsecgss not found.])],
- [-lgssglue -ldl])
+ [AC_MSG_ERROR([librpcsecgss not found.])])
AC_CHECK_LIB([rpcsecgss], [authgss_set_debug_level],
- [AC_DEFINE([HAVE_AUTHGSS_SET_DEBUG_LEVEL], 1,
- [Define to 1 if you have the `authgss_set_debug_level' function.])],,
- [-lgssglue -ldl])
+ [AC_DEFINE([HAVE_AUTHGSS_SET_DEBUG_LEVEL], 1,
+ [Define to 1 if you have the `authgss_set_debug_level' function.])])
])dnl