summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wendler <polynomial-c@gentoo.org>2010-11-03 05:42:11 +0000
committerLars Wendler <polynomial-c@gentoo.org>2010-11-03 05:42:11 +0000
commit4b68d6cc41b649660317822863a34b981275f42a (patch)
tree8d32d799cd754ff0d833e2ae65822530b28ca782 /net-irc/xchat/files
parentFix pkgconfig file (bug #343573). (diff)
downloadgentoo-2-4b68d6cc41b649660317822863a34b981275f42a.tar.gz
gentoo-2-4b68d6cc41b649660317822863a34b981275f42a.tar.bz2
gentoo-2-4b68d6cc41b649660317822863a34b981275f42a.zip
Removed old.
(Portage version: 2.2.0_alpha3/cvs/Linux x86_64)
Diffstat (limited to 'net-irc/xchat/files')
-rw-r--r--net-irc/xchat/files/xchat-2.8.6-automagic-ntlm-configure-fix.patch34
-rw-r--r--net-irc/xchat/files/xchat-2.8.6-fix-button-underlines.patch12
2 files changed, 0 insertions, 46 deletions
diff --git a/net-irc/xchat/files/xchat-2.8.6-automagic-ntlm-configure-fix.patch b/net-irc/xchat/files/xchat-2.8.6-automagic-ntlm-configure-fix.patch
deleted file mode 100644
index eee0a24d5c4f..000000000000
--- a/net-irc/xchat/files/xchat-2.8.6-automagic-ntlm-configure-fix.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-# https://sourceforge.net/tracker/?func=detail&aid=2982884&group_id=239&atid=100239
-
---- xchat-2.8.6/configure.in
-+++ xchat-2.8.6/configure.in
-@@ -143,6 +143,10 @@
- [ --enable-spell=type enable spelling type: none static libsexy gtkspell],
- spell=$enableval, spell=libsexy)
-
-+AC_ARG_ENABLE(ntlm,
-+[ --enable-ntlm enable Microsoft's NTLM auth (libntlm) library support],
-+ ntlm=$enableval, ntlm=yes)
-+
- dnl *********************************************************************
- dnl ** GLIB *************************************************************
- dnl *********************************************************************
-@@ -548,11 +552,13 @@
- dnl ** MS PROXY *********************************************************
- dnl *********************************************************************
-
--have_ntlm="no"
--AC_CHECK_LIB(ntlm, ntlm_smb_encrypt, have_ntlm=yes)
--if test "$have_ntlm" = yes; then
-- LIBS="$LIBS -lntlm"
-- AC_DEFINE(USE_MSPROXY)
-+if test "x$ntlm" = "xyes" ; then
-+ have_ntlm="no"
-+ AC_CHECK_LIB(ntlm, ntlm_smb_encrypt, have_ntlm=yes)
-+ if test "$have_ntlm" = yes; then
-+ LIBS="$LIBS -lntlm"
-+ AC_DEFINE(USE_MSPROXY)
-+ fi
- fi
-
- dnl *********************************************************************
diff --git a/net-irc/xchat/files/xchat-2.8.6-fix-button-underlines.patch b/net-irc/xchat/files/xchat-2.8.6-fix-button-underlines.patch
deleted file mode 100644
index 29f509324455..000000000000
--- a/net-irc/xchat/files/xchat-2.8.6-fix-button-underlines.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-# http://xchat.svn.sourceforge.net/viewvc/xchat/src/fe-gtk/gtkutil.c?r1=1138&r2=1362
-
---- xchat-2.8.6/src/fe-gtk/gtkutil.c
-+++ xchat-2.8.6/src/fe-gtk/gtkutil.c
-@@ -376,6 +376,7 @@ gtkutil_button (GtkWidget *box, char *st
- {
- gtk_button_set_label (GTK_BUTTON (wid), labeltext);
- gtk_button_set_image (GTK_BUTTON (wid), gtk_image_new_from_stock (stock, GTK_ICON_SIZE_MENU));
-+ gtk_button_set_use_underline (GTK_BUTTON (wid), TRUE);
- if (box)
- gtk_container_add (GTK_CONTAINER (box), wid);
- }