]> git.pld-linux.org Git - packages/cyrus-sasl.git/blob - cyrus-sasl-gcc4.patch
- db 4.6 supported
[packages/cyrus-sasl.git] / cyrus-sasl-gcc4.patch
1 --- cyrus-sasl-2.1.20/saslauthd/configure.in.orig       2005-04-24 16:39:30.088004312 +0000
2 +++ cyrus-sasl-2.1.20/saslauthd/configure.in    2005-04-24 16:40:31.172718024 +0000
3 @@ -44,9 +44,10 @@
4  SASL_GSSAPI_CHK
5  
6  if test "$gssapi" != no; then
7 -       if test "$gss_impl" = "heimdal"; then
8 -           AC_DEFINE(KRB5_HEIMDAL,[],[Using Heimdal])
9 -       fi
10 +dnl This is taken care of by -DKRB5_HEIMDAL in CPPFLAGS in ../Makefile
11 +dnl    if test "$gss_impl" = "heimdal"; then
12 +dnl        AC_DEFINE(KRB5_HEIMDAL,[],[Using Heimdal])
13 +dnl    fi
14         AC_DEFINE(HAVE_GSSAPI,[],[Include GSSAPI/Kerberos 5 Support])
15  fi
16  
17 --- cyrus-sasl-2.1.20/saslauthd/saslcache.c.orig        2005-04-24 16:47:45.989615808 +0000
18 +++ cyrus-sasl-2.1.20/saslauthd/saslcache.c     2005-04-24 16:50:27.482065224 +0000
19 @@ -137,7 +137,7 @@
20         }
21  
22         table_stats = shm_base + 64;
23 -       (char *)table = (char *)table_stats + 128;
24 +       table = (struct bucket*)((char *)table_stats + 128);
25  
26         if (dump_stat_info == 0 && dump_user_info == 0)
27                 dump_stat_info = 1;
This page took 0.037327 seconds and 3 git commands to generate.