Hidetaka Iwai
tyuyu****@sings*****
2005年 9月 30日 (金) 02:33:44 JST
岩井@札幌です Hidetaka Iwai <tyuyu****@sings*****> wrote: Message-ID: <20050****@sings*****> > すいません、SSL 回りは gnutls-1.2.0 以降に決め打ちにしてあります。 > configure の段階で warning が出ていると思います。 (snip) > 多分 [Kazehakase-devel 2396] に添付したパッチでビルドできるようになる > と思います。 すいません、[Kazehakase-devel 2396] のパッチは間違ってます。というわけ で正しい方を添付します。 # 西山さんもこちらのパッチを使って頂けるようお願いします。 Best regards, -- Hidetaka Iwai tyuyu****@sings***** -------------- next part -------------- Index: configure.in =================================================================== RCS file: /cvsroot/kazehakase/kazehakase/configure.in,v retrieving revision 1.133 diff -u -r1.133 configure.in --- configure.in 29 Sep 2005 07:35:33 -0000 1.133 +++ configure.in 29 Sep 2005 17:32:09 -0000 @@ -327,8 +327,9 @@ Disable GNU TLS suport],, disable_ssl=no) if test x"$disable_ssl" = "xno"; then - AM_PATH_LIBGNUTLS(1.2.0,,AC_MSG_WARN([[libgnutls was not found.]])) - AC_DEFINE(USE_SSL, 1, [Define using GNU TLS]) + AM_PATH_LIBGNUTLS(1.0.0, + AC_DEFINE(USE_SSL, 1, [Define using GNU TLS]), + AC_MSG_WARN([[libgnutls was not found.]])) fi AM_CONDITIONAL(ENABLE_SSL, test x"$disable_ssl" = "xno") Index: src/net/kz-http.c =================================================================== RCS file: /cvsroot/kazehakase/kazehakase/src/net/kz-http.c,v retrieving revision 1.79 diff -u -r1.79 kz-http.c --- src/net/kz-http.c 27 Sep 2005 16:47:52 -0000 1.79 +++ src/net/kz-http.c 29 Sep 2005 17:32:10 -0000 @@ -71,8 +71,8 @@ #ifdef USE_SSL typedef struct _KzSSL { - gnutls_session_t session; - gnutls_certificate_credentials_t xcred; + gnutls_session session; + gnutls_certificate_credentials xcred; } KzSSL; #endif