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

Collapse All | Expand All

(-)configure.in (-4 / +7 lines)
Lines 12-21 Link Here
12
AC_PROG_RANLIB
12
AC_PROG_RANLIB
13
13
14
# Checks for libraries.
14
# Checks for libraries.
15
PKG_CHECK_MODULES([GSSGLUE], [libgssglue >= 0.1], [],
15
PKG_CHECK_MODULES([GSSGLUE], [libgssglue >= 0.1],
16
  [AC_MSG_ERROR([Unable to locate information required to use libgssglue.
16
  [echo GSSGLUE found; cp librpcsecgss.pc.in.gssglue librpcsecgss.pc.in],
17
  If you have pkgconfig installed, you might try setting environment
17
  [PKG_CHECK_MODULES([GSSGLUE], [heimdal-gssapi],
18
  variable PKG_CONFIG_PATH to /usr/local/lib/pkgconfig])])
18
    [echo HEIMDAL found; cp librpcsecgss.pc.in.heimdal librpcsecgss.pc.in],
19
    [AC_MSG_ERROR([Unable to locate information required to use libgssglue.
20
    If you have pkgconfig installed, you might try setting environment
21
    variable PKG_CONFIG_PATH to /usr/local/lib/pkgconfig])])])
19
22
20
# Checks for header files.
23
# Checks for header files.
21
AC_HEADER_STDC
24
AC_HEADER_STDC
(-)librpcsecgss.pc.in.gssglue (+12 lines)
Line 0 Link Here
1
prefix=@prefix@
2
exec_prefix=@exec_prefix@
3
libdir=@libdir@
4
includedir=@includedir@
5
6
Name: librpcsecgss
7
Description: Library that implements rpcsec_gss interface.
8
Requires: libgssglue
9
Version: @PACKAGE_VERSION@
10
Libs: -L@libdir@ -lrpcsecgss
11
Cflags: -I@includedir@/rpcsecgss
12
(-)librpcsecgss.pc.in.heimdal (+12 lines)
Line 0 Link Here
1
prefix=@prefix@
2
exec_prefix=@exec_prefix@
3
libdir=@libdir@
4
includedir=@includedir@
5
6
Name: librpcsecgss
7
Description: Library that implements rpcsec_gss interface.
8
Requires: heimdal-gssapi
9
Version: @PACKAGE_VERSION@
10
Libs: -L@libdir@ -lrpcsecgss
11
Cflags: -I@includedir@/rpcsecgss
12

Return to bug 185899