comparison configure.ac @ 21563:1b174854bb80

merge of '30fcf2f336afb635b62a5c3ed3adb3e1fa1dd2d1' and 'bb60447c0a8c79afca320f4dc689096f4788e7fa'
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Sat, 17 Nov 2007 01:55:21 +0000
parents 7a9b8bd09a05
children 17a2bcec7ae7
comparison
equal deleted inserted replaced
20755:774f4924e74e 21563:1b174854bb80
41 # For code under development: [devel] 41 # For code under development: [devel]
42 # For production releases: [] 42 # For production releases: []
43 # 43 #
44 # Make sure to update finch/libgnt/configure.ac with libgnt version changes. 44 # Make sure to update finch/libgnt/configure.ac with libgnt version changes.
45 # 45 #
46 m4_define([purple_lt_current], [2]) 46 m4_define([purple_lt_current], [3])
47 m4_define([purple_major_version], [2]) 47 m4_define([purple_major_version], [2])
48 m4_define([purple_minor_version], [2]) 48 m4_define([purple_minor_version], [3])
49 m4_define([purple_micro_version], [2]) 49 m4_define([purple_micro_version], [0])
50 m4_define([purple_version_suffix], []) 50 m4_define([purple_version_suffix], [])
51 m4_define([purple_version], 51 m4_define([purple_version],
52 [purple_major_version.purple_minor_version.purple_micro_version]) 52 [purple_major_version.purple_minor_version.purple_micro_version])
53 m4_define([purple_display_version], purple_version[]m4_ifdef([purple_version_suffix],[purple_version_suffix])) 53 m4_define([purple_display_version], purple_version[]m4_ifdef([purple_version_suffix],[purple_version_suffix]))
54 54
55 m4_define([gnt_lt_current], [2]) 55 m4_define([gnt_lt_current], [2])
56 m4_define([gnt_major_version], [2]) 56 m4_define([gnt_major_version], [2])
57 m4_define([gnt_minor_version], [2]) 57 m4_define([gnt_minor_version], [2])
58 m4_define([gnt_micro_version], [2]) 58 m4_define([gnt_micro_version], [3])
59 m4_define([gnt_version_suffix], []) 59 m4_define([gnt_version_suffix], [])
60 m4_define([gnt_version], 60 m4_define([gnt_version],
61 [gnt_major_version.gnt_minor_version.gnt_micro_version]) 61 [gnt_major_version.gnt_minor_version.gnt_micro_version])
62 m4_define([gnt_display_version], gnt_version[]m4_ifdef([gnt_version_suffix],[gnt_version_suffix])) 62 m4_define([gnt_display_version], gnt_version[]m4_ifdef([gnt_version_suffix],[gnt_version_suffix]))
63 63
134 ;; 134 ;;
135 *) 135 *)
136 ;; 136 ;;
137 esac 137 esac
138 138
139 ALL_LINGUAS="af am ar az be@latin bg bn bs ca ca@valencia cs da de dz el en_AU en_CA en_GB eo es et eu fa fi fr gl gu he hi hu id it ja ka kn ko ku lo lt mk my_MM nb ne nl nn pa pl pt_BR pt ps ro ru sk sl sq sr sr@latin sv ta te th tr uk vi xh zh_CN zh_HK zh_TW" 139 ALL_LINGUAS="af am ar az be@latin bg bn bs ca ca@valencia cs da de dz el en_AU en_CA en_GB eo es et eu fa fi fr gl gu he hi hu id it ja ka kn ko ku lo lt mk my_MM nb ne nl nn pa pl pt_BR pt ps ro ru sk sl sq sr sr@latin sv ta te th tr uk ur vi xh zh_CN zh_HK zh_TW"
140 AM_GLIB_GNU_GETTEXT 140 AM_GLIB_GNU_GETTEXT
141 141
142 dnl If we don't have msgfmt, then po/ is going to fail -- ensure that 142 dnl If we don't have msgfmt, then po/ is going to fail -- ensure that
143 dnl AM_GLIB_GNU_GETTEXT found it. 143 dnl AM_GLIB_GNU_GETTEXT found it.
144 144
145 if test x$MSGFMT = xno 145 if test x$MSGFMT = xno -o x$MSGFMT$GMSGFMT = x
146 then 146 then
147 AC_ERROR([ 147 AC_ERROR([
148 148
149 The msgfmt command is required to build libpurple. If it is installed 149 The msgfmt command is required to build libpurple. If it is installed
150 on your system, ensure that it is in your path. If it is not, install 150 on your system, ensure that it is in your path. If it is not, install
151 GNU gettext to continue. 151 GNU gettext to continue.
152
153 If you have msgfmt installed, but for some reason this error message
154 is still displayed, you have encountered what appears to be a bug in
155 third-party configure macros. Try setting the MSGFMT environment
156 variable to the absolute path to your msgfmt binary and trying
157 configure again, like this:
158
159 MSGFMT=/path/to/msgfmt ./configure ...
152 ]) 160 ])
153 fi 161 fi
154 162
155 dnl we don't use autobreak on cygwin!! 163 dnl we don't use autobreak on cygwin!!
156 dnl AC_CYGWIN 164 dnl AC_CYGWIN
223 AC_SYS_LARGEFILE 231 AC_SYS_LARGEFILE
224 232
225 dnl FreeBSD doesn't have libdl, dlopen is provided by libc 233 dnl FreeBSD doesn't have libdl, dlopen is provided by libc
226 AC_CHECK_FUNC(dlopen, LIBDL="", [AC_CHECK_LIB(dl, dlopen, LIBDL="-ldl")]) 234 AC_CHECK_FUNC(dlopen, LIBDL="", [AC_CHECK_LIB(dl, dlopen, LIBDL="-ldl")])
227 235
236 AC_MSG_CHECKING(for fileno())
237 AC_TRY_RUN([
238 #include <stdio.h>
239
240 int main(int argc, char *argv[])
241 {
242 int fd;
243
244 fd = fileno(stdout);
245
246 return !(fd > 0);
247 }
248 ], [
249 AC_MSG_RESULT(yes)
250 AC_DEFINE([HAVE_FILENO], [1],
251 [Define to 1 if your stdio has int fileno(FILE *).])
252 ], [
253 AC_MSG_RESULT(no)
254 ], [
255 # Fallback for Cross Compiling...
256 # This will enable the compatibility code.
257 AC_MSG_RESULT(no)
258 ])
259
228 AC_MSG_CHECKING(for the %z format string in strftime()) 260 AC_MSG_CHECKING(for the %z format string in strftime())
229 AC_TRY_RUN([ 261 AC_TRY_RUN([
230 #ifdef HAVE_SYS_TIME_H 262 #ifdef HAVE_SYS_TIME_H
231 #include <sys/time.h> 263 #include <sys/time.h>
232 #endif 264 #endif
272 304
273 You must have the GLib 2.0 development headers installed to build. 305 You must have the GLib 2.0 development headers installed to build.
274 ])]) 306 ])])
275 AC_SUBST(GLIB_CFLAGS) 307 AC_SUBST(GLIB_CFLAGS)
276 AC_SUBST(GLIB_LIBS) 308 AC_SUBST(GLIB_LIBS)
309
310 AC_ARG_WITH([extraversion],
311 AC_HELP_STRING([--with-extraversion=STRING],
312 [extra version number to be displayed in Help->About and --help (for packagers)]),
313 EXTRA_VERSION=$withval)
314
315 if test x"$EXTRA_VERSION" != "x" ; then
316 AC_DEFINE_UNQUOTED(DISPLAY_VERSION, "$VERSION-$EXTRA_VERSION", [display version info])
317 else
318 AC_DEFINE_UNQUOTED(DISPLAY_VERSION, "$VERSION", [display version info])
319 fi
277 320
278 AC_ARG_WITH(x, [], 321 AC_ARG_WITH(x, [],
279 with_x="$withval", with_x="yes") 322 with_x="$withval", with_x="yes")
280 AC_ARG_ENABLE(gtkui, [AC_HELP_STRING([--disable-gtkui], 323 AC_ARG_ENABLE(gtkui, [AC_HELP_STRING([--disable-gtkui],
281 [compile without GTK+ user interface])], 324 [compile without GTK+ user interface])],
855 if test "x$gadu_libs" = "xyes"; then 898 if test "x$gadu_libs" = "xyes"; then
856 AC_MSG_CHECKING(for libgadu GPL compatibility) 899 AC_MSG_CHECKING(for libgadu GPL compatibility)
857 CPPFLAGS_save="$CPPFLAGS" 900 CPPFLAGS_save="$CPPFLAGS"
858 CPPFLAGS="$CPPFLAGS $GADU_CFLAGS" 901 CPPFLAGS="$CPPFLAGS $GADU_CFLAGS"
859 AC_TRY_COMPILE([#include <libgadu.h>], [ 902 AC_TRY_COMPILE([#include <libgadu.h>], [
860 #ifdef __GG_LIBGADU_HAVE_OPENSSL 903 #if defined(__GG_LIBGADU_HAVE_OPENSSL) || defined(GG_CONFIG_HAVE_OPENSSL)
861 #error "libgadu is not compatible with the GPL when compiled with OpenSSL support." 904 #error "libgadu is not compatible with the GPL when compiled with OpenSSL support."
862 #endif 905 #endif
863 ], [ 906 ], [
864 AC_MSG_RESULT(yes) 907 AC_MSG_RESULT(yes)
865 AC_DEFINE([HAVE_LIBGADU], [1], 908 AC_DEFINE([HAVE_LIBGADU], [1],
867 ], [ 910 ], [
868 AC_MSG_RESULT(no) 911 AC_MSG_RESULT(no)
869 echo 912 echo
870 echo 913 echo
871 echo "libgadu is not compatible with the GPL when compiled with OpenSSL support." 914 echo "libgadu is not compatible with the GPL when compiled with OpenSSL support."
872 echo "Please recompile libgadu using:" 915 echo "To compile against system libgadu, please recompile libgadu using:"
873 echo "./autogen.sh --disable-libgadu-openssl --disable-static --enable-shared" 916 echo "./autogen.sh --disable-libgadu-openssl --disable-static --enable-shared"
874 echo "Then rerun this ./configure" 917 echo "Then rerun this ./configure"
875 echo 918 echo
919 echo "Falling back to using our own copy of libgadu"
876 echo 920 echo
877 GADU_LIBS="" 921 GADU_LIBS=""
878 GADU_CFLAGS="" 922 GADU_CFLAGS=""
879 gadu_libs=no 923 gadu_libs=no
880 ]) 924 ])
884 AM_CONDITIONAL(USE_INTERNAL_LIBGADU, test "x$gadu_libs" != "xyes") 928 AM_CONDITIONAL(USE_INTERNAL_LIBGADU, test "x$gadu_libs" != "xyes")
885 929
886 AC_SUBST(GADU_LIBS) 930 AC_SUBST(GADU_LIBS)
887 AC_SUBST(GADU_CFLAGS) 931 AC_SUBST(GADU_CFLAGS)
888 932
933 # uncomment the next line to make MSNP14 the available
934 # AC_ARG_ENABLE(msnp14,[AC_HELP_STRING([--enable-msnp14], [Disable the newer MSNP14 protocol])],,enable_msnp14=no)
935 enable_msnp14=no
889 936
890 AC_ARG_ENABLE(distrib,,,enable_distrib=no) 937 AC_ARG_ENABLE(distrib,,,enable_distrib=no)
891 AM_CONDITIONAL(DISTRIB, test "x$enable_distrib" = "xyes") 938 AM_CONDITIONAL(DISTRIB, test "x$enable_distrib" = "xyes")
892 DYNAMIC_PRPLS=all 939 DYNAMIC_PRPLS=all
893 AC_ARG_WITH(static-prpls, [AC_HELP_STRING([--with-static-prpls], [Link to certain protocols statically])], [STATIC_PRPLS=`echo $withval | $sedpath 's/,/ /g'`], [STATIC_PRPLS=""]) 940 AC_ARG_WITH(static-prpls, [AC_HELP_STRING([--with-static-prpls], [Link to certain protocols statically])], [STATIC_PRPLS=`echo $withval | $sedpath 's/,/ /g'`], [STATIC_PRPLS=""])
903 fi 950 fi
904 if test "x$avahiincludes" != "xyes" -o "x$avahilibs" != "xyes"; then 951 if test "x$avahiincludes" != "xyes" -o "x$avahilibs" != "xyes"; then
905 if test "x$howlincludes" != "xyes" -o "x$howllibs" != "xyes"; then 952 if test "x$howlincludes" != "xyes" -o "x$howllibs" != "xyes"; then
906 STATIC_PRPLS=`echo $STATIC_PRPLS | $sedpath 's/bonjour//'` 953 STATIC_PRPLS=`echo $STATIC_PRPLS | $sedpath 's/bonjour//'`
907 fi 954 fi
955 fi
956 if test "x$enable_msnp14" != "xyes" ; then
957 STATIC_PRPLS=`echo $STATIC_PRPLS | $sedpath 's/msn/msnp9/'`
908 fi 958 fi
909 if test "x$silcincludes" != "xyes" -o "x$silcclient" != "xyes"; then 959 if test "x$silcincludes" != "xyes" -o "x$silcclient" != "xyes"; then
910 STATIC_PRPLS=`echo $STATIC_PRPLS | $sedpath 's/silc/silc10/'` 960 STATIC_PRPLS=`echo $STATIC_PRPLS | $sedpath 's/silc/silc10/'`
911 fi 961 fi
912 if test "x$silc10includes" != "xyes" -o "x$silc10client" != "xyes"; then 962 if test "x$silc10includes" != "xyes" -o "x$silc10client" != "xyes"; then
928 else 978 else
929 if test "x$i" = "xsilc"; then 979 if test "x$i" = "xsilc"; then
930 STATIC_LINK_LIBS="$STATIC_LINK_LIBS \$(top_builddir)/libpurple/protocols/$i/lib${i}purple.a" 980 STATIC_LINK_LIBS="$STATIC_LINK_LIBS \$(top_builddir)/libpurple/protocols/$i/lib${i}purple.a"
931 elif test "x$i" = "xsilc10"; then 981 elif test "x$i" = "xsilc10"; then
932 STATIC_LINK_LIBS="$STATIC_LINK_LIBS \$(top_builddir)/libpurple/protocols/$i/libsilcpurple.a" 982 STATIC_LINK_LIBS="$STATIC_LINK_LIBS \$(top_builddir)/libpurple/protocols/$i/libsilcpurple.a"
983 elif test "x$i" = "xmsnp9"; then
984 STATIC_LINK_LIBS="$STATIC_LINK_LIBS \$(top_builddir)/libpurple/protocols/$i/libmsn.a"
933 else 985 else
934 STATIC_LINK_LIBS="$STATIC_LINK_LIBS \$(top_builddir)/libpurple/protocols/$i/lib$i.a" 986 STATIC_LINK_LIBS="$STATIC_LINK_LIBS \$(top_builddir)/libpurple/protocols/$i/lib$i.a"
935 fi 987 fi
936 extern_init="$extern_init extern gboolean purple_init_${i}_plugin();" 988 extern_init="$extern_init extern gboolean purple_init_${i}_plugin();"
937 load_proto="$load_proto purple_init_${i}_plugin();" 989 load_proto="$load_proto purple_init_${i}_plugin();"
940 bonjour) static_bonjour=yes ;; 992 bonjour) static_bonjour=yes ;;
941 gg) static_gg=yes ;; 993 gg) static_gg=yes ;;
942 irc) static_irc=yes ;; 994 irc) static_irc=yes ;;
943 jabber) static_jabber=yes ;; 995 jabber) static_jabber=yes ;;
944 msn) static_msn=yes ;; 996 msn) static_msn=yes ;;
997 msnp9) static_msn=yes ;;
945 myspace) static_myspace=yes ;; 998 myspace) static_myspace=yes ;;
946 novell) static_novell=yes ;; 999 novell) static_novell=yes ;;
947 oscar) static_oscar=yes ;; 1000 oscar) static_oscar=yes ;;
948 aim) static_oscar=yes ;; 1001 aim) static_oscar=yes ;;
949 icq) static_oscar=yes ;; 1002 icq) static_oscar=yes ;;
987 if test "x$avahiincludes" != "xyes" -o "x$avahilibs" != "xyes"; then 1040 if test "x$avahiincludes" != "xyes" -o "x$avahilibs" != "xyes"; then
988 if test "x$howlincludes" != "xyes" -o "x$howllibs" != "xyes"; then 1041 if test "x$howlincludes" != "xyes" -o "x$howllibs" != "xyes"; then
989 DYNAMIC_PRPLS=`echo $DYNAMIC_PRPLS | $sedpath 's/bonjour//'` 1042 DYNAMIC_PRPLS=`echo $DYNAMIC_PRPLS | $sedpath 's/bonjour//'`
990 fi 1043 fi
991 fi 1044 fi
1045 if test "x$enable_msnp14" != "xyes" ; then
1046 DYNAMIC_PRPLS=`echo $DYNAMIC_PRPLS | $sedpath 's/msn/msnp9/'`
1047 fi
992 if test "x$silcincludes" != "xyes" -o "x$silcclient" != "xyes"; then 1048 if test "x$silcincludes" != "xyes" -o "x$silcclient" != "xyes"; then
993 DYNAMIC_PRPLS=`echo $DYNAMIC_PRPLS | $sedpath 's/silc/silc10/'` 1049 DYNAMIC_PRPLS=`echo $DYNAMIC_PRPLS | $sedpath 's/silc/silc10/'`
994 fi 1050 fi
995 if test "x$silc10includes" != "xyes" -o "x$silc10client" != "xyes"; then 1051 if test "x$silc10includes" != "xyes" -o "x$silc10client" != "xyes"; then
996 DYNAMIC_PRPLS=`echo $DYNAMIC_PRPLS | $sedpath 's/silc10//'` 1052 DYNAMIC_PRPLS=`echo $DYNAMIC_PRPLS | $sedpath 's/silc10//'`
1001 bonjour) dynamic_bonjour=yes ;; 1057 bonjour) dynamic_bonjour=yes ;;
1002 gg) dynamic_gg=yes ;; 1058 gg) dynamic_gg=yes ;;
1003 irc) dynamic_irc=yes ;; 1059 irc) dynamic_irc=yes ;;
1004 jabber) dynamic_jabber=yes ;; 1060 jabber) dynamic_jabber=yes ;;
1005 msn) dynamic_msn=yes ;; 1061 msn) dynamic_msn=yes ;;
1062 msnp9) dynamic_msn=yes ;;
1006 myspace) dynamic_myspace=yes ;; 1063 myspace) dynamic_myspace=yes ;;
1007 novell) dynamic_novell=yes ;; 1064 novell) dynamic_novell=yes ;;
1008 oscar) dynamic_oscar=yes ;; 1065 oscar) dynamic_oscar=yes ;;
1009 aim) dynamic_oscar=yes ;; 1066 aim) dynamic_oscar=yes ;;
1010 icq) dynamic_oscar=yes ;; 1067 icq) dynamic_oscar=yes ;;
1958 AC_SUBST(LIBS) 2015 AC_SUBST(LIBS)
1959 2016
1960 if test "x$enable_plugins" = "xyes" ; then 2017 if test "x$enable_plugins" = "xyes" ; then
1961 AC_DEFINE(PURPLE_PLUGINS, 1, [Define if plugins are enabled.]) 2018 AC_DEFINE(PURPLE_PLUGINS, 1, [Define if plugins are enabled.])
1962 AM_CONDITIONAL(PLUGINS, true) 2019 AM_CONDITIONAL(PLUGINS, true)
2020 PLUGINS_DEFINE="#define PURPLE_PLUGINS 1"
1963 else 2021 else
1964 AM_CONDITIONAL(PLUGINS, false) 2022 AM_CONDITIONAL(PLUGINS, false)
1965 fi 2023 PLUGINS_DEFINE="#undef PURPLE_PLUGINS"
2024 fi
2025 AC_SUBST(PLUGINS_DEFINE)
1966 2026
1967 dnl ####################################################################### 2027 dnl #######################################################################
1968 dnl # Check for Cyrus-SASL (for Jabber) 2028 dnl # Check for Cyrus-SASL (for Jabber)
1969 dnl ####################################################################### 2029 dnl #######################################################################
1970 dnl AC_CHECK_SIZEOF(short) 2030 dnl AC_CHECK_SIZEOF(short)
2091 enable_doxygen="$enableval", enable_doxygen="yes") 2151 enable_doxygen="$enableval", enable_doxygen="yes")
2092 AC_ARG_ENABLE(dot, 2152 AC_ARG_ENABLE(dot,
2093 [AC_HELP_STRING([--enable-dot], 2153 [AC_HELP_STRING([--enable-dot],
2094 [enable graphs in doxygen via 'dot'])], 2154 [enable graphs in doxygen via 'dot'])],
2095 enable_dot="$enableval", enable_dot="yes") 2155 enable_dot="$enableval", enable_dot="yes")
2156 AC_ARG_ENABLE(devhelp,
2157 [AC_HELP_STRING([--enable-devhelp],
2158 [enable building index for devhelp documentation browser])],
2159 enable_devhelp="$enableval", enable_devhelp="yes")
2096 2160
2097 if test "x$enable_doxygen" = xyes; then 2161 if test "x$enable_doxygen" = xyes; then
2098 AC_CHECK_PROG(DOXYGEN, doxygen, true, false) 2162 AC_CHECK_PROG(DOXYGEN, doxygen, true, false)
2099 if test $DOXYGEN = false; then 2163 if test $DOXYGEN = false; then
2100 AC_MSG_WARN([*** Doxygen not found, docs will not be available]) 2164 AC_MSG_WARN([*** Doxygen not found, docs will not be available])
2110 AC_MSG_WARN([*** GraphViz dot not found, docs will not have graphs]) 2174 AC_MSG_WARN([*** GraphViz dot not found, docs will not have graphs])
2111 else 2175 else
2112 AC_DEFINE_UNQUOTED(HAVE_DOT, 1, [whether or not we have dot]) 2176 AC_DEFINE_UNQUOTED(HAVE_DOT, 1, [whether or not we have dot])
2113 fi 2177 fi
2114 fi 2178 fi
2179
2180 if test "x$enable_devhelp" = "xyes"; then
2181 AC_CHECK_PROG(XSLTPROC, xsltproc, true, false)
2182
2183 if test $XSLTPROC = false; then
2184 enable_devhelp="no";
2185 AC_MSG_WARN([*** xsltproc not found; devhelp index will not be created])
2186 else
2187 AC_DEFINE_UNQUOTED(HAVE_XSLTPROC, 1, [whether or not we have xsltproc for devhelp index])
2188 fi
2189 fi
2115 fi 2190 fi
2116 else 2191 else
2117 enable_dot="no" 2192 enable_dot="no"
2193 enable_devhelp="no"
2118 fi 2194 fi
2119 2195
2120 AC_SUBST(enable_doxygen) 2196 AC_SUBST(enable_doxygen)
2121 AC_SUBST(enable_dot) 2197 AC_SUBST(enable_dot)
2198 AC_SUBST(enable_devhelp)
2122 AM_CONDITIONAL(HAVE_DOXYGEN, test "x$enable_doxygen" = "xyes") 2199 AM_CONDITIONAL(HAVE_DOXYGEN, test "x$enable_doxygen" = "xyes")
2200 AM_CONDITIONAL(HAVE_XSLTPROC, test "x$enable_devhelp" = "xyes")
2123 2201
2124 AC_ARG_ENABLE(debug, [AC_HELP_STRING([--enable-debug], 2202 AC_ARG_ENABLE(debug, [AC_HELP_STRING([--enable-debug],
2125 [compile with debugging support])], , enable_debug=no) 2203 [compile with debugging support])], , enable_debug=no)
2126 2204
2127 if test "x$enable_debug" = "xyes" ; then 2205 if test "x$enable_debug" = "xyes" ; then
2139 pidgin.apspec 2217 pidgin.apspec
2140 pidgin/Makefile 2218 pidgin/Makefile
2141 pidgin/pidgin.pc 2219 pidgin/pidgin.pc
2142 pidgin/pidgin-uninstalled.pc 2220 pidgin/pidgin-uninstalled.pc
2143 pidgin/pixmaps/Makefile 2221 pidgin/pixmaps/Makefile
2144 pidgin/pixmaps/animations/Makefile
2145 pidgin/pixmaps/animations/16/Makefile
2146 pidgin/pixmaps/buddy_icons/Makefile
2147 pidgin/pixmaps/buddy_icons/qq/Makefile 2222 pidgin/pixmaps/buddy_icons/qq/Makefile
2148 pidgin/pixmaps/dialogs/Makefile
2149 pidgin/pixmaps/dialogs/16/Makefile
2150 pidgin/pixmaps/dialogs/16/scalable/Makefile
2151 pidgin/pixmaps/dialogs/64/Makefile
2152 pidgin/pixmaps/dialogs/64/scalable/Makefile
2153 pidgin/pixmaps/emblems/Makefile
2154 pidgin/pixmaps/emblems/16/Makefile
2155 pidgin/pixmaps/emblems/16/scalable/Makefile
2156 pidgin/pixmaps/emotes/Makefile
2157 pidgin/pixmaps/emotes/default/Makefile
2158 pidgin/pixmaps/emotes/default/24/Makefile 2223 pidgin/pixmaps/emotes/default/24/Makefile
2159 pidgin/pixmaps/emotes/default/24/scalable/Makefile
2160 pidgin/pixmaps/emotes/none/Makefile 2224 pidgin/pixmaps/emotes/none/Makefile
2161 pidgin/pixmaps/icons/Makefile
2162 pidgin/pixmaps/icons/16/Makefile
2163 pidgin/pixmaps/icons/16/scalable/Makefile
2164 pidgin/pixmaps/icons/22/Makefile
2165 pidgin/pixmaps/icons/22/scalable/Makefile
2166 pidgin/pixmaps/icons/24/Makefile
2167 pidgin/pixmaps/icons/24/scalable/Makefile
2168 pidgin/pixmaps/icons/32/Makefile
2169 pidgin/pixmaps/icons/32/scalable/Makefile
2170 pidgin/pixmaps/icons/48/Makefile
2171 pidgin/pixmaps/icons/48/scalable/Makefile
2172 pidgin/pixmaps/protocols/Makefile
2173 pidgin/pixmaps/protocols/16/Makefile
2174 pidgin/pixmaps/protocols/16/scalable/Makefile
2175 pidgin/pixmaps/protocols/22/Makefile
2176 pidgin/pixmaps/protocols/22/scalable/Makefile
2177 pidgin/pixmaps/protocols/48/Makefile
2178 pidgin/pixmaps/protocols/48/scalable/Makefile
2179 pidgin/pixmaps/status/Makefile
2180 pidgin/pixmaps/status/11/Makefile
2181 pidgin/pixmaps/status/11/scalable/Makefile
2182 pidgin/pixmaps/status/11/rtl/Makefile
2183 pidgin/pixmaps/status/16/Makefile
2184 pidgin/pixmaps/status/16/rtl/Makefile
2185 pidgin/pixmaps/status/16/scalable/Makefile
2186 pidgin/pixmaps/status/22/Makefile
2187 pidgin/pixmaps/status/22/rtl/Makefile
2188 pidgin/pixmaps/status/22/scalable/Makefile
2189 pidgin/pixmaps/status/32/Makefile
2190 pidgin/pixmaps/status/32/rtl/Makefile
2191 pidgin/pixmaps/status/32/scalable/Makefile
2192 pidgin/pixmaps/status/48/Makefile
2193 pidgin/pixmaps/status/48/rtl/Makefile
2194 pidgin/pixmaps/toolbar/Makefile
2195 pidgin/pixmaps/toolbar/16/Makefile
2196 pidgin/pixmaps/toolbar/16/scalable/Makefile
2197 pidgin/pixmaps/toolbar/22/Makefile
2198 pidgin/pixmaps/toolbar/22/scalable/Makefile
2199 pidgin/pixmaps/tray/Makefile
2200 pidgin/pixmaps/tray/16/Makefile
2201 pidgin/pixmaps/tray/16/scalable/Makefile
2202 pidgin/pixmaps/tray/22/Makefile
2203 pidgin/pixmaps/tray/22/scalable/Makefile
2204 pidgin/pixmaps/tray/32/Makefile
2205 pidgin/pixmaps/tray/48/Makefile
2206 pidgin/plugins/Makefile 2225 pidgin/plugins/Makefile
2207 pidgin/plugins/cap/Makefile 2226 pidgin/plugins/cap/Makefile
2208 pidgin/plugins/gestures/Makefile 2227 pidgin/plugins/gestures/Makefile
2209 pidgin/plugins/gevolution/Makefile 2228 pidgin/plugins/gevolution/Makefile
2210 pidgin/plugins/musicmessaging/Makefile 2229 pidgin/plugins/musicmessaging/Makefile
2228 libpurple/protocols/bonjour/Makefile 2247 libpurple/protocols/bonjour/Makefile
2229 libpurple/protocols/gg/Makefile 2248 libpurple/protocols/gg/Makefile
2230 libpurple/protocols/irc/Makefile 2249 libpurple/protocols/irc/Makefile
2231 libpurple/protocols/jabber/Makefile 2250 libpurple/protocols/jabber/Makefile
2232 libpurple/protocols/msn/Makefile 2251 libpurple/protocols/msn/Makefile
2252 libpurple/protocols/msnp9/Makefile
2233 libpurple/protocols/myspace/Makefile 2253 libpurple/protocols/myspace/Makefile
2234 libpurple/protocols/novell/Makefile 2254 libpurple/protocols/novell/Makefile
2235 libpurple/protocols/null/Makefile 2255 libpurple/protocols/null/Makefile
2236 libpurple/protocols/oscar/Makefile 2256 libpurple/protocols/oscar/Makefile
2237 libpurple/protocols/qq/Makefile 2257 libpurple/protocols/qq/Makefile
2241 libpurple/protocols/simple/Makefile 2261 libpurple/protocols/simple/Makefile
2242 libpurple/protocols/toc/Makefile 2262 libpurple/protocols/toc/Makefile
2243 libpurple/protocols/yahoo/Makefile 2263 libpurple/protocols/yahoo/Makefile
2244 libpurple/protocols/zephyr/Makefile 2264 libpurple/protocols/zephyr/Makefile
2245 libpurple/tests/Makefile 2265 libpurple/tests/Makefile
2266 libpurple/purple.h
2246 libpurple/version.h 2267 libpurple/version.h
2247 share/Makefile
2248 share/sounds/Makefile 2268 share/sounds/Makefile
2249 share/ca-certs/Makefile 2269 share/ca-certs/Makefile
2270 finch/finch.pc
2250 finch/Makefile 2271 finch/Makefile
2251 finch/libgnt/Makefile 2272 finch/libgnt/Makefile
2252 finch/libgnt/gnt.pc 2273 finch/libgnt/gnt.pc
2253 finch/libgnt/wms/Makefile 2274 finch/libgnt/wms/Makefile
2254 finch/plugins/Makefile 2275 finch/plugins/Makefile