Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 231396 | Differences between
and this patch

Collapse All | Expand All

(-)configure.ac (-3 / +3 lines)
Lines 185-191 Link Here
185
      [AC_MSG_ERROR([Unable to locate information required to use librpcsecgss.  If you have pkgconfig installed, you might try setting environment variable PKG_CONFIG_PATH to /usr/local/lib/pkgconfig])
185
      [AC_MSG_ERROR([Unable to locate information required to use librpcsecgss.  If you have pkgconfig installed, you might try setting environment variable PKG_CONFIG_PATH to /usr/local/lib/pkgconfig])
186
      ]
186
      ]
187
     )
187
     )
188
    PKG_CHECK_MODULES(GSSGLUE, libgssglue >= 0.1)
188
    PKG_CHECK_MODULES(GSSGLUE, libgssglue >= 0.1, , [PKG_CHECK_MODULES(GSSGLUE, heimdal-gssapi)])
189
    fi
189
    fi
190
190
191
fi
191
fi
Lines 228-236 Link Here
228
228
229
  dnl This is not done until here because we need to have KRBLIBS set
229
  dnl This is not done until here because we need to have KRBLIBS set
230
  dnl ("librpcsecgss=1" is so that it doesn't get added to LIBS)
230
  dnl ("librpcsecgss=1" is so that it doesn't get added to LIBS)
231
  AC_CHECK_LIB(rpcsecgss, authgss_create_default, [librpcsecgss=1], AC_MSG_ERROR([librpcsecgss needed for nfsv4 support]), -lgssglue -ldl)
231
  AC_CHECK_LIB(rpcsecgss, authgss_create_default, [librpcsecgss=1], AC_MSG_ERROR([librpcsecgss needed for nfsv4 support]), $GSSGLUE_CFLAGS)
232
  AC_CHECK_LIB(rpcsecgss, authgss_set_debug_level,
232
  AC_CHECK_LIB(rpcsecgss, authgss_set_debug_level,
233
  	       AC_DEFINE(HAVE_AUTHGSS_SET_DEBUG_LEVEL, 1, [Define this if the rpcsec_gss library has the function authgss_set_debug_level]),, -lgssglue -ldl)
233
  	       AC_DEFINE(HAVE_AUTHGSS_SET_DEBUG_LEVEL, 1, [Define this if the rpcsec_gss library has the function authgss_set_debug_level]),, $GSSGLUE_CFLAGS)
234
234
235
fi
235
fi
236
236

Return to bug 231396