source: trunk/debathena/third/alpine/alpine-1.00-krb5-configure.patch @ 23068

Revision 23068, 795 bytes checked in by ghudson, 16 years ago (diff)
Add a debathenify script for alpine. Currently only works for hardy and lenny.
  • alpine/configure.ac

     
    940940 
    941941dnl provide KRB5 support? 
    942942if test "x$alpine_GSSTYPE" != "xnone" ; then 
    943   AC_CHECK_FUNC(gss_init_sec_context,, 
     943  AC_SEARCH_LIBS(gss_init_sec_context,gss gssapi gssapi_krb5, 
    944944    [ 
     945      dnl MIT-based? 
     946      AC_CHECK_HEADER([gssapi/gssapi_generic.h],, 
     947        [ 
     948          if test ! -d /usr/kerberos/include ; then 
     949            alpine_GSSTYPE="none" 
     950            alpine_gss_none_reason="header files not found" 
     951          fi 
     952        ]) 
     953    ], 
     954    [ 
    945955      alpine_GSSTYPE="none" 
     956      alpine_gss_none_reason="libraries not found" 
    946957    ]) 
     958  if test -n "$alpine_gss_none_reason" ; then 
     959    AC_MSG_NOTICE([NOT including Kerberos Support: $alpine_gss_none_reason]) 
     960  fi 
    947961fi 
    948962 
    949963dnl check for tcl libraries for Web Alpine (HACKY) 
Note: See TracBrowser for help on using the repository browser.