# HG changeset patch # User Christopher O'Brien # Date 1197750596 0 # Node ID 8d5989d932c913088c658617074f4cc537cb227c # Parent f2cf1d61a67657887e24ef693b1ed77eb9104118 avoid some version blocking servers by updating the major version specified when 'Hide client ID' is specified for an account diff -r f2cf1d61a676 -r 8d5989d932c9 autogen.sh --- a/autogen.sh Sat Dec 15 18:23:04 2007 +0000 +++ b/autogen.sh Sat Dec 15 20:29:56 2007 +0000 @@ -19,7 +19,7 @@ exit; } -(libtoolize --version) < /dev/null > /dev/null 2>&1 || { +(glibtoolize --version) < /dev/null > /dev/null 2>&1 || { echo; echo "You must have libtool installed to compile Pidgin."; echo; @@ -44,7 +44,7 @@ echo; echo "Running libtoolize, please ignore non-fatal messages...." -echo n | libtoolize --copy --force || exit; +echo n | glibtoolize --copy --force || exit; # Add other directories to this list if people continue to experience # brokennesses ... Obviously the real answer is for them to fix it @@ -57,7 +57,7 @@ fi done -libtoolize -c -f --automake +glibtoolize -c -f --automake glib-gettextize --force --copy intltoolize --force --copy aclocal $ACLOCAL_FLAGS || exit; diff -r f2cf1d61a676 -r 8d5989d932c9 libpurple/protocols/sametime/sametime.c --- a/libpurple/protocols/sametime/sametime.c Sat Dec 15 18:23:04 2007 +0000 +++ b/libpurple/protocols/sametime/sametime.c Sat Dec 15 20:29:56 2007 +0000 @@ -3749,7 +3749,7 @@ client = purple_account_get_int(account, MW_KEY_CLIENT, mwLogin_BINARY); major = purple_account_get_int(account, MW_KEY_MAJOR, 0x001e); - minor = purple_account_get_int(account, MW_KEY_MINOR, 0x001d); + minor = purple_account_get_int(account, MW_KEY_MINOR, 0x196f); DEBUG_INFO("client id: 0x%04x\n", client); DEBUG_INFO("client major: 0x%04x\n", major);