mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

96 lines
3.1 KiB

  1. # --- ROCK-COPYRIGHT-NOTE-BEGIN ---
  2. #
  3. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  4. # Please add additional copyright information _after_ the line containing
  5. # the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
  6. # the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
  7. #
  8. # ROCK Linux: rock-src/package/kde/kdebase/sasl2-location.patch
  9. # ROCK Linux is Copyright (C) 1998 - 2006 Clifford Wolf
  10. #
  11. # This patch file is dual-licensed. It is available under the license the
  12. # patched project is licensed under, as long as it is an OpenSource license
  13. # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
  14. # of the GNU General Public License as published by the Free Software
  15. # Foundation; either version 2 of the License, or (at your option) any later
  16. # version.
  17. #
  18. # --- ROCK-COPYRIGHT-NOTE-END ---
  19. --- ./configure.orig 2005-03-21 12:35:09.000000000 +0100
  20. +++ ./configure 2005-03-21 12:36:27.000000000 +0100
  21. @@ -48988,7 +48988,7 @@
  22. -for ac_header in sasl/sasl.h
  23. +for ac_header in sasl2/sasl.h
  24. do
  25. as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
  26. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  27. --- ./configure.in.orig 2005-03-21 12:35:40.000000000 +0100
  28. +++ ./configure.in 2005-03-04 14:11:05.000000000 +0100
  29. @@ -1177,7 +1177,7 @@
  30. SASL2_LIBS=""
  31. KDE_CHECK_HEADERS(sasl.h)dnl SASL1 header is enough for kio_ldap
  32. -KDE_CHECK_HEADERS(sasl/sasl.h, sasl2_header="yes")
  33. +KDE_CHECK_HEADERS(sasl2/sasl.h, sasl2_header="yes")
  34. if test "$sasl2_header" = "yes" ; then
  35. KDE_CHECK_LIB(sasl2, sasl_client_init, SASL2_LIBS="-lsasl2")
  36. fi
  37. --- ./kioslave/configure.in.in.orig 2004-09-30 00:30:49.000000000 +0200
  38. +++ ./kioslave/configure.in.in 2005-03-22 14:33:43.000000000 +0100
  39. @@ -4,7 +4,7 @@
  40. SASL2_LIBS=""
  41. KDE_CHECK_HEADERS(sasl.h)dnl SASL1 header is enough for kio_ldap
  42. -KDE_CHECK_HEADERS(sasl/sasl.h, sasl2_header="yes")
  43. +KDE_CHECK_HEADERS(sasl2/sasl.h, sasl2_header="yes")
  44. if test "$sasl2_header" = "yes" ; then
  45. KDE_CHECK_LIB(sasl2, sasl_client_init, SASL2_LIBS="-lsasl2")
  46. fi
  47. --- ./kioslave/ldap/kio_ldap.cpp.orig 2005-03-22 14:35:20.000000000 +0100
  48. +++ ./kioslave/ldap/kio_ldap.cpp 2005-03-22 14:36:19.000000000 +0100
  49. @@ -22,7 +22,7 @@
  50. #include <klocale.h>
  51. #ifdef HAVE_SASL_SASL_H //prefer libsasl2
  52. -#include <sasl/sasl.h>
  53. +#include <sasl2/sasl.h>
  54. #else
  55. #ifdef HAVE_SASL_H
  56. #include <sasl.h>
  57. --- ./kioslave/pop3/pop3.cc.orig 2005-03-22 12:08:08.000000000 +0100
  58. +++ ./kioslave/pop3/pop3.cc 2005-03-22 12:08:23.000000000 +0100
  59. @@ -43,7 +43,7 @@
  60. #ifdef HAVE_LIBSASL2
  61. extern "C" {
  62. -#include <sasl/sasl.h>
  63. +#include <sasl2/sasl.h>
  64. }
  65. #endif
  66. --- ./kioslave/smtp/command.h.orig 2005-03-22 14:35:48.000000000 +0100
  67. +++ ./kioslave/smtp/command.h 2005-03-22 14:36:33.000000000 +0100
  68. @@ -38,7 +38,7 @@
  69. #ifdef HAVE_LIBSASL2
  70. extern "C" {
  71. -#include <sasl/sasl.h>
  72. +#include <sasl2/sasl.h>
  73. }
  74. #endif
  75. --- ./kioslave/smtp/smtp.cc.orig 2005-03-22 14:35:56.000000000 +0100
  76. +++ ./kioslave/smtp/smtp.cc 2005-03-22 14:36:50.000000000 +0100
  77. @@ -32,7 +32,7 @@
  78. #ifdef HAVE_LIBSASL2
  79. extern "C" {
  80. -#include <sasl/sasl.h>
  81. +#include <sasl2/sasl.h>
  82. }
  83. #endif