Mercurial > pidgin
view autogen.sh @ 20633:4c910fcb5b0a
Consider offline contacts when calculating the priority buddy. I
was seeing assertion failures when aliasing a guy in my blist
because gtk_blist_renderer_edited_cb() called
gtk_blist_auto_personize() which iterates through everyone in
that group (whether online or not) and calls purple_contact_get_alias()
to determine whether it should prompt to merge the buddies.
purple_contact_get_alias() calls purple_contact_get_priority_buddy()
which returns NULL if all buddies in that contact are offline. Might
as well just return the first PurpleBuddy if they're all offline, right?
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Mon, 24 Sep 2007 01:47:27 +0000 |
parents | 53545dbfd38f |
children | 8d5989d932c9 |
line wrap: on
line source
#!/bin/sh CONFIGURE_ARGS="" if [ -f configure.args ] ; then . configure.args fi (glib-gettextize --version) < /dev/null > /dev/null 2>&1 || { echo; echo "You must have glib-gettextize installed to compile Pidgin."; echo; exit; } (intltoolize --version) < /dev/null > /dev/null 2>&1 || { echo; echo "You must have intltool installed to compile Pidgin."; echo; exit; } (libtoolize --version) < /dev/null > /dev/null 2>&1 || { echo; echo "You must have libtool installed to compile Pidgin."; echo; exit; } (automake --version) < /dev/null > /dev/null 2>&1 || { echo; echo "You must have automake installed to compile Pidgin."; echo; exit; } (autoconf --version) < /dev/null > /dev/null 2>&1 || { echo; echo "You must have autoconf installed to compile Pidgin."; echo; exit; } echo "Generating configuration files for Pidgin, please wait...." echo; echo "Running libtoolize, please ignore non-fatal messages...." echo n | libtoolize --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 # themselves, but for Luke's sake we have this. for dir in "/usr/local/share/aclocal" \ "/opt/gnome-1.4/share/aclocal" do if test -d $dir ; then ACLOCAL_FLAGS="$ACLOCAL_FLAGS -I $dir" fi done libtoolize -c -f --automake glib-gettextize --force --copy intltoolize --force --copy aclocal $ACLOCAL_FLAGS || exit; autoheader || exit; automake --add-missing --copy; autoconf || exit; automake || exit; echo; echo "Running ./configure ${CONFIGURE_ARGS} $@" echo; ./configure ${CONFIGURE_ARGS} $@