# HG changeset patch # User Daniel Atallah # Date 1189730231 0 # Node ID 6583988a57aeffa7734d5929a945550555c5e613 # Parent 94718bbf29d2bca500e98d76bb38f68e8675fab7 Sneakiness to make it easy to compile xmpp on win32 with Cyrus SASL support. This isn't ready for popular consumption yet, but if anyone wants the sasl binary that I compiled against MIT Kerberos, let me know. diff -r 94718bbf29d2 -r 6583988a57ae libpurple/protocols/jabber/Makefile.mingw --- a/libpurple/protocols/jabber/Makefile.mingw Fri Sep 14 00:28:55 2007 +0000 +++ b/libpurple/protocols/jabber/Makefile.mingw Fri Sep 14 00:37:11 2007 +0000 @@ -82,6 +82,14 @@ -lintl \ -lpurple +ifeq ($(CYRUS_SASL), 1) +CYRUS_SASL_TOP := $(WIN32_DEV_TOP)/cyrus-sasl-2.1.22 +CFLAGS += -DHAVE_CYRUS_SASL +INCLUDE_PATHS += -I$(CYRUS_SASL_TOP)/include +LIB_PATHS += -L$(CYRUS_SASL_TOP)/lib +LIBS += -llibsasl +endif + include $(PIDGIN_COMMON_RULES) ##