comparison configure.ac @ 32805:064eb5d78946

propagate from branch 'im.pidgin.pidgin.2.x.y' (head 0ba3afb8adb303a77581a7872d674c600979a5a6) to branch 'im.pidgin.pidgin' (head 7711a4d267e1fe776387496c764fb63227d70aec)
author Mark Doliner <mark@kingant.net>
date Mon, 31 Oct 2011 01:25:36 +0000
parents ea2b621fd3ba
children 4a34689eeb33
comparison
equal deleted inserted replaced
32803:15e80ced77a2 32805:064eb5d78946
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], [10]) 46 m4_define([purple_lt_current], [20])
47 m4_define([purple_major_version], [2]) 47 m4_define([purple_major_version], [3])
48 m4_define([purple_minor_version], [10]) 48 m4_define([purple_minor_version], [0])
49 m4_define([purple_micro_version], [0]) 49 m4_define([purple_micro_version], [0])
50 m4_define([purple_version_suffix], []) 50 m4_define([purple_version_suffix], [devel])
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], [8]) 55 m4_define([gnt_lt_current], [8])
56 m4_define([gnt_major_version], [2]) 56 m4_define([gnt_major_version], [2])
57 m4_define([gnt_minor_version], [8]) 57 m4_define([gnt_minor_version], [8])
58 m4_define([gnt_micro_version], [9]) 58 m4_define([gnt_micro_version], [9])
59 m4_define([gnt_version_suffix], []) 59 m4_define([gnt_version_suffix], [devel])
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
64 64
326 AM_CONDITIONAL(INSTALL_I18N, test "x$enable_i18n" = "xyes") 326 AM_CONDITIONAL(INSTALL_I18N, test "x$enable_i18n" = "xyes")
327 327
328 dnl ####################################################################### 328 dnl #######################################################################
329 dnl # Check for GLib 2.16 (required) 329 dnl # Check for GLib 2.16 (required)
330 dnl ####################################################################### 330 dnl #######################################################################
331 # TODO: gmodule-2.0 is only needed if enable_plugins is 'yes'. It
332 # might be nice to change this check so that it's not required
333 # if enable_plugins is 'no'.
331 PKG_CHECK_MODULES(GLIB, [glib-2.0 >= 2.16.0 gobject-2.0 gmodule-2.0 gthread-2.0], , [ 334 PKG_CHECK_MODULES(GLIB, [glib-2.0 >= 2.16.0 gobject-2.0 gmodule-2.0 gthread-2.0], , [
332 AC_MSG_RESULT(no) 335 AC_MSG_RESULT(no)
333 AC_MSG_ERROR([ 336 AC_MSG_ERROR([
334 337
335 You must have GLib 2.16.0 or newer development headers installed to build. 338 You must have GLib 2.16.0 or newer development headers installed to build.
429 432
430 dnl We only really need Pango >= 1.4 for decent RTL support 433 dnl We only really need Pango >= 1.4 for decent RTL support
431 PKG_CHECK_MODULES(PANGO, [pango >= 1.4.0], 434 PKG_CHECK_MODULES(PANGO, [pango >= 1.4.0],
432 AC_DEFINE(HAVE_PANGO14, 1, [Define if we have Pango 1.4 or newer.]),:) 435 AC_DEFINE(HAVE_PANGO14, 1, [Define if we have Pango 1.4 or newer.]),:)
433 436
437 PKG_CHECK_MODULES(WEBKIT, [webkit-1.0 >= 1.1.1], , [
438 AC_MSG_RESULT(no)
439 AC_MSG_ERROR([
440 You must have WebKit 1.1.1 or newer development headers installed to compile
441 Pidgin. If you want to build only Finch then specify --disable-gtkui when
442 running configure.
443 ])])
444 AC_SUBST(WEBKIT_CFLAGS)
445 AC_SUBST(WEBKIT_LIBS)
446
434 dnl ####################################################################### 447 dnl #######################################################################
435 dnl # Check if we should compile with X support 448 dnl # Check if we should compile with X support
436 dnl ####################################################################### 449 dnl #######################################################################
437 if test "x$with_x" = "xyes" ; then 450 if test "x$with_x" = "xyes" ; then
438 PKG_CHECK_MODULES(X11, x11, 451 PKG_CHECK_MODULES(X11, x11,
936 silcincludes="yes" 949 silcincludes="yes"
937 silcclient="yes" 950 silcclient="yes"
938 ], [ 951 ], [
939 have_silc="no" 952 have_silc="no"
940 ]) 953 ])
941 if test "x$have_silc" = "xno"; then
942 PKG_CHECK_MODULES(SILC, silcclient, [
943 have_silc="yes"
944 silc10includes="yes"
945 silc10client="yes"
946 ], [
947 have_silc="no"
948 ])
949 dnl If silcclient.pc wasn't found, check for just silc.pc
950 if test "x$have_silc" = "xno"; then
951 PKG_CHECK_MODULES(SILC, silc, [
952 have_silc="yes"
953 silc10includes="yes"
954 silc10client="yes"
955 ], [
956 have_silc="no"
957 ])
958 fi
959 fi
960 else 954 else
961 if test "$ac_silc_includes" != "no"; then 955 if test "$ac_silc_includes" != "no"; then
962 SILC_CFLAGS="-I$ac_silc_includes" 956 SILC_CFLAGS="-I$ac_silc_includes"
963 fi 957 fi
964 CPPFLAGS_save="$CPPFLAGS" 958 CPPFLAGS_save="$CPPFLAGS"
972 SILC_LIBS="$SILC_LIBS -lsilc -lsilcclient -lpthread $LIBDL" 966 SILC_LIBS="$SILC_LIBS -lsilc -lsilcclient -lpthread $LIBDL"
973 AC_CHECK_LIB(silcclient, silc_client_init, [silcclient=yes], , $SILC_LIBS) 967 AC_CHECK_LIB(silcclient, silc_client_init, [silcclient=yes], , $SILC_LIBS)
974 968
975 if test "x$silcincludes" = "xyes" -a "x$silcclient" = "xyes"; then 969 if test "x$silcincludes" = "xyes" -a "x$silcclient" = "xyes"; then
976 have_silc="yes" 970 have_silc="yes"
977 else
978 CPPFLAGS_save="$CPPFLAGS"
979 CPPFLAGS="$CPPFLAGS $SILC_CFLAGS"
980 AC_CHECK_HEADER(silcincludes.h, [silc10includes=yes])
981 CPPFLAGS="$CPPFLAGS_save"
982
983 SILC_LIBS="$SILC_LIBS -lsilc -lsilcclient -lpthread $LIBDL"
984 AC_CHECK_LIB(silcclient, silc_client_init, [silc10client=yes], , $SILC_LIBS)
985 if test "x$silc10includes" = "xyes" -a "x$silc10client" = "xyes"; then
986 have_silc="yes"
987 fi
988 fi 971 fi
989 fi 972 fi
990 AC_SUBST(SILC_LIBS) 973 AC_SUBST(SILC_LIBS)
991 AC_SUBST(SILC_CFLAGS) 974 AC_SUBST(SILC_CFLAGS)
992 dnl SILC Toolkit >= 1.0.1 has a new MIME API 975 dnl SILC Toolkit >= 1.0.1 has a new MIME API
993 if test "x$silcclient" = "xyes"; then 976 if test "x$silcclient" = "xyes"; then
994 AC_DEFINE(HAVE_SILCMIME_H, 1, [Define if we have silcmime.h]) 977 AC_DEFINE(HAVE_SILCMIME_H, 1, [Define if we have silcmime.h])
995 elif test "x$silc10client" = "xyes"; then
996 CPPFLAGS_save="$CPPFLAGS"
997 CPPFLAGS="$CPPFLAGS $SILC_CFLAGS"
998 AC_MSG_CHECKING(for silcmime.h)
999 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
1000 #include <silcincludes.h>
1001 #include <silcmime.h>
1002 ]], [[]])], [
1003 AC_MSG_RESULT(yes)
1004 AC_DEFINE(HAVE_SILCMIME_H, 1, [Define if we have silcmime.h])
1005 ], [
1006 AC_MSG_RESULT(no)
1007 ])
1008 CPPFLAGS="$CPPFLAGS_save"
1009 fi 978 fi
1010 979
1011 dnl ####################################################################### 980 dnl #######################################################################
1012 dnl # Check for Gadu-Gadu client includes and libraries 981 dnl # Check for Gadu-Gadu client includes and libraries
1013 dnl ####################################################################### 982 dnl #######################################################################
1109 if test "x$STATIC_PRPLS" != "x" -a "x$DYNAMIC_PRPLS" = "xall"; then 1078 if test "x$STATIC_PRPLS" != "x" -a "x$DYNAMIC_PRPLS" = "xall"; then
1110 DYNAMIC_PRPLS="" 1079 DYNAMIC_PRPLS=""
1111 fi 1080 fi
1112 1081
1113 if test "x$STATIC_PRPLS" = "xall" ; then 1082 if test "x$STATIC_PRPLS" = "xall" ; then
1114 STATIC_PRPLS="bonjour gg irc jabber msn myspace mxit novell oscar sametime silc simple yahoo zephyr" 1083 STATIC_PRPLS="bonjour gg irc jabber msn mxit myspace novell oscar sametime silc simple yahoo zephyr"
1115 fi 1084 fi
1116 if test "x$have_meanwhile" != "xyes" ; then 1085 if test "x$have_meanwhile" != "xyes" ; then
1117 STATIC_PRPLS=`echo $STATIC_PRPLS | $sedpath 's/sametime//'` 1086 STATIC_PRPLS=`echo $STATIC_PRPLS | $sedpath 's/sametime//'`
1118 fi 1087 fi
1119 if test "x$avahiincludes" != "xyes" -o "x$avahilibs" != "xyes"; then 1088 if test "x$avahiincludes" != "xyes" -o "x$avahilibs" != "xyes"; then
1120 STATIC_PRPLS=`echo $STATIC_PRPLS | $sedpath 's/bonjour//'` 1089 STATIC_PRPLS=`echo $STATIC_PRPLS | $sedpath 's/bonjour//'`
1121 fi 1090 fi
1122 if test "x$silcincludes" != "xyes" -o "x$silcclient" != "xyes"; then 1091 if test "x$silcincludes" != "xyes" -o "x$silcclient" != "xyes"; then
1123 STATIC_PRPLS=`echo $STATIC_PRPLS | $sedpath 's/silc/silc10/'` 1092 STATIC_PRPLS=`echo $STATIC_PRPLS | $sedpath 's/silc//'`
1124 fi
1125 if test "x$silc10includes" != "xyes" -o "x$silc10client" != "xyes"; then
1126 STATIC_PRPLS=`echo $STATIC_PRPLS | $sedpath 's/silc10//'`
1127 fi 1093 fi
1128 AC_SUBST(STATIC_PRPLS) 1094 AC_SUBST(STATIC_PRPLS)
1129 STATIC_LINK_LIBS= 1095 STATIC_LINK_LIBS=
1130 extern_init= 1096 extern_init=
1131 load_proto= 1097 load_proto=
1145 load_proto="$load_proto purple_init_yahoo_plugin();" 1111 load_proto="$load_proto purple_init_yahoo_plugin();"
1146 load_proto="$load_proto purple_init_yahoojp_plugin();" 1112 load_proto="$load_proto purple_init_yahoojp_plugin();"
1147 else 1113 else
1148 if test "x$i" = "xsilc"; then 1114 if test "x$i" = "xsilc"; then
1149 STATIC_LINK_LIBS="$STATIC_LINK_LIBS \$(top_builddir)/libpurple/protocols/$i/lib${i}purple.la" 1115 STATIC_LINK_LIBS="$STATIC_LINK_LIBS \$(top_builddir)/libpurple/protocols/$i/lib${i}purple.la"
1150 elif test "x$i" = "xsilc10"; then
1151 STATIC_LINK_LIBS="$STATIC_LINK_LIBS \$(top_builddir)/libpurple/protocols/$i/libsilcpurple.la"
1152 else 1116 else
1153 STATIC_LINK_LIBS="$STATIC_LINK_LIBS \$(top_builddir)/libpurple/protocols/$i/lib$i.la" 1117 STATIC_LINK_LIBS="$STATIC_LINK_LIBS \$(top_builddir)/libpurple/protocols/$i/lib$i.la"
1154 fi 1118 fi
1155 extern_init="$extern_init extern gboolean purple_init_${i}_plugin();" 1119 extern_init="$extern_init extern gboolean purple_init_${i}_plugin();"
1156 load_proto="$load_proto purple_init_${i}_plugin();" 1120 load_proto="$load_proto purple_init_${i}_plugin();"
1159 bonjour) static_bonjour=yes ;; 1123 bonjour) static_bonjour=yes ;;
1160 gg) static_gg=yes ;; 1124 gg) static_gg=yes ;;
1161 irc) static_irc=yes ;; 1125 irc) static_irc=yes ;;
1162 jabber) static_jabber=yes ;; 1126 jabber) static_jabber=yes ;;
1163 msn) static_msn=yes ;; 1127 msn) static_msn=yes ;;
1128 mxit) static_mxit=yes ;;
1164 myspace) static_myspace=yes ;; 1129 myspace) static_myspace=yes ;;
1165 mxit) static_mxit=yes ;;
1166 novell) static_novell=yes ;; 1130 novell) static_novell=yes ;;
1167 oscar) static_oscar=yes ;; 1131 oscar) static_oscar=yes ;;
1168 aim) static_oscar=yes ;; 1132 aim) static_oscar=yes ;;
1169 icq) static_oscar=yes ;; 1133 icq) static_oscar=yes ;;
1170 sametime) static_sametime=yes ;; 1134 sametime) static_sametime=yes ;;
1171 silc) static_silc=yes ;; 1135 silc) static_silc=yes ;;
1172 silc10) static_silc=yes ;;
1173 simple) static_simple=yes ;; 1136 simple) static_simple=yes ;;
1174 yahoo) static_yahoo=yes ;; 1137 yahoo) static_yahoo=yes ;;
1175 zephyr) static_zephyr=yes ;; 1138 zephyr) static_zephyr=yes ;;
1176 *) echo "Invalid static protocol $i!!" ; exit ;; 1139 *) echo "Invalid static protocol $i!!" ; exit ;;
1177 esac 1140 esac
1179 AM_CONDITIONAL(STATIC_BONJOUR, test "x$static_bonjour" = "xyes") 1142 AM_CONDITIONAL(STATIC_BONJOUR, test "x$static_bonjour" = "xyes")
1180 AM_CONDITIONAL(STATIC_GG, test "x$static_gg" = "xyes") 1143 AM_CONDITIONAL(STATIC_GG, test "x$static_gg" = "xyes")
1181 AM_CONDITIONAL(STATIC_IRC, test "x$static_irc" = "xyes") 1144 AM_CONDITIONAL(STATIC_IRC, test "x$static_irc" = "xyes")
1182 AM_CONDITIONAL(STATIC_JABBER, test "x$static_jabber" = "xyes") 1145 AM_CONDITIONAL(STATIC_JABBER, test "x$static_jabber" = "xyes")
1183 AM_CONDITIONAL(STATIC_MSN, test "x$static_msn" = "xyes") 1146 AM_CONDITIONAL(STATIC_MSN, test "x$static_msn" = "xyes")
1147 AM_CONDITIONAL(STATIC_MXIT, test "x$static_mxit" = "xyes")
1184 AM_CONDITIONAL(STATIC_MYSPACE, test "x$static_myspace" = "xyes") 1148 AM_CONDITIONAL(STATIC_MYSPACE, test "x$static_myspace" = "xyes")
1185 AM_CONDITIONAL(STATIC_MXIT, test "x$static_mxit" = "xyes")
1186 AM_CONDITIONAL(STATIC_NOVELL, test "x$static_novell" = "xyes") 1149 AM_CONDITIONAL(STATIC_NOVELL, test "x$static_novell" = "xyes")
1187 AM_CONDITIONAL(STATIC_OSCAR, test "x$static_oscar" = "xyes") 1150 AM_CONDITIONAL(STATIC_OSCAR, test "x$static_oscar" = "xyes")
1188 AM_CONDITIONAL(STATIC_SAMETIME, test "x$static_sametime" = "xyes" -a "x$have_meanwhile" = "xyes") 1151 AM_CONDITIONAL(STATIC_SAMETIME, test "x$static_sametime" = "xyes" -a "x$have_meanwhile" = "xyes")
1189 AM_CONDITIONAL(STATIC_SILC, test "x$static_silc" = "xyes" -a "x$have_silc" = "xyes") 1152 AM_CONDITIONAL(STATIC_SILC, test "x$static_silc" = "xyes" -a "x$have_silc" = "xyes")
1190 AM_CONDITIONAL(STATIC_SIMPLE, test "x$static_simple" = "xyes") 1153 AM_CONDITIONAL(STATIC_SIMPLE, test "x$static_simple" = "xyes")
1194 AC_DEFINE_UNQUOTED(STATIC_PROTO_INIT, $extern_init static void static_proto_init(void) { $load_proto }, 1157 AC_DEFINE_UNQUOTED(STATIC_PROTO_INIT, $extern_init static void static_proto_init(void) { $load_proto },
1195 [Loads static protocol plugin module initialization functions.]) 1158 [Loads static protocol plugin module initialization functions.])
1196 1159
1197 AC_ARG_WITH(dynamic_prpls, [AC_HELP_STRING([--with-dynamic-prpls], [specify which protocols to build dynamically])], [DYNAMIC_PRPLS=`echo $withval | $sedpath 's/,/ /g'`]) 1160 AC_ARG_WITH(dynamic_prpls, [AC_HELP_STRING([--with-dynamic-prpls], [specify which protocols to build dynamically])], [DYNAMIC_PRPLS=`echo $withval | $sedpath 's/,/ /g'`])
1198 if test "x$DYNAMIC_PRPLS" = "xall" ; then 1161 if test "x$DYNAMIC_PRPLS" = "xall" ; then
1199 DYNAMIC_PRPLS="bonjour gg irc jabber msn myspace mxit novell oscar sametime silc simple yahoo zephyr" 1162 DYNAMIC_PRPLS="bonjour gg irc jabber msn mxit myspace novell oscar sametime silc simple yahoo zephyr"
1200 fi 1163 fi
1201 if test "x$have_meanwhile" != "xyes"; then 1164 if test "x$have_meanwhile" != "xyes"; then
1202 DYNAMIC_PRPLS=`echo $DYNAMIC_PRPLS | $sedpath 's/sametime//'` 1165 DYNAMIC_PRPLS=`echo $DYNAMIC_PRPLS | $sedpath 's/sametime//'`
1203 fi 1166 fi
1204 if test "x$avahiincludes" != "xyes" -o "x$avahilibs" != "xyes"; then 1167 if test "x$avahiincludes" != "xyes" -o "x$avahilibs" != "xyes"; then
1205 DYNAMIC_PRPLS=`echo $DYNAMIC_PRPLS | $sedpath 's/bonjour//'` 1168 DYNAMIC_PRPLS=`echo $DYNAMIC_PRPLS | $sedpath 's/bonjour//'`
1206 fi 1169 fi
1207 if test "x$silcincludes" != "xyes" -o "x$silcclient" != "xyes"; then 1170 if test "x$silcincludes" != "xyes" -o "x$silcclient" != "xyes"; then
1208 DYNAMIC_PRPLS=`echo $DYNAMIC_PRPLS | $sedpath 's/silc/silc10/'` 1171 DYNAMIC_PRPLS=`echo $DYNAMIC_PRPLS | $sedpath 's/silc//'`
1209 fi
1210 if test "x$silc10includes" != "xyes" -o "x$silc10client" != "xyes"; then
1211 DYNAMIC_PRPLS=`echo $DYNAMIC_PRPLS | $sedpath 's/silc10//'`
1212 fi 1172 fi
1213 AC_SUBST(DYNAMIC_PRPLS) 1173 AC_SUBST(DYNAMIC_PRPLS)
1214 for i in $DYNAMIC_PRPLS ; do 1174 for i in $DYNAMIC_PRPLS ; do
1215 case $i in 1175 case $i in
1216 bonjour) dynamic_bonjour=yes ;; 1176 bonjour) dynamic_bonjour=yes ;;
1217 gg) dynamic_gg=yes ;; 1177 gg) dynamic_gg=yes ;;
1218 irc) dynamic_irc=yes ;; 1178 irc) dynamic_irc=yes ;;
1219 jabber) dynamic_jabber=yes ;; 1179 jabber) dynamic_jabber=yes ;;
1220 msn) dynamic_msn=yes ;; 1180 msn) dynamic_msn=yes ;;
1181 mxit) dynamic_mxit=yes ;;
1221 myspace) dynamic_myspace=yes ;; 1182 myspace) dynamic_myspace=yes ;;
1222 mxit) dynamic_mxit=yes ;;
1223 novell) dynamic_novell=yes ;; 1183 novell) dynamic_novell=yes ;;
1224 null) dynamic_null=yes ;; 1184 null) dynamic_null=yes ;;
1225 oscar) dynamic_oscar=yes ;; 1185 oscar) dynamic_oscar=yes ;;
1226 aim) dynamic_oscar=yes ;; 1186 aim) dynamic_oscar=yes ;;
1227 icq) dynamic_oscar=yes ;; 1187 icq) dynamic_oscar=yes ;;
1228 sametime) dynamic_sametime=yes ;; 1188 sametime) dynamic_sametime=yes ;;
1229 silc) dynamic_silc=yes ;; 1189 silc) dynamic_silc=yes ;;
1230 silc10) dynamic_silc=yes ;;
1231 simple) dynamic_simple=yes ;; 1190 simple) dynamic_simple=yes ;;
1232 yahoo) dynamic_yahoo=yes ;; 1191 yahoo) dynamic_yahoo=yes ;;
1233 zephyr) dynamic_zephyr=yes ;; 1192 zephyr) dynamic_zephyr=yes ;;
1234 *) echo "Invalid dynamic protocol $i!!" ; exit ;; 1193 *) echo "Invalid dynamic protocol $i!!" ; exit ;;
1235 esac 1194 esac
2528 doc/pidgin.1 2487 doc/pidgin.1
2529 doc/finch.1 2488 doc/finch.1
2530 m4macros/Makefile 2489 m4macros/Makefile
2531 pidgin.apspec 2490 pidgin.apspec
2532 pidgin/Makefile 2491 pidgin/Makefile
2533 pidgin/pidgin.pc 2492 pidgin/pidgin-3.pc
2534 pidgin/pidgin-uninstalled.pc 2493 pidgin/pidgin-3-uninstalled.pc
2535 pidgin/pidgin-2.pc
2536 pidgin/pidgin-2-uninstalled.pc
2537 pidgin/pixmaps/Makefile 2494 pidgin/pixmaps/Makefile
2538 pidgin/pixmaps/emotes/default/24/Makefile 2495 pidgin/pixmaps/emotes/default/24/Makefile
2539 pidgin/pixmaps/emotes/none/Makefile 2496 pidgin/pixmaps/emotes/none/Makefile
2540 pidgin/pixmaps/emotes/small/16/Makefile 2497 pidgin/pixmaps/emotes/small/16/Makefile
2541 pidgin/plugins/Makefile 2498 pidgin/plugins/Makefile
2545 pidgin/plugins/gevolution/Makefile 2502 pidgin/plugins/gevolution/Makefile
2546 pidgin/plugins/musicmessaging/Makefile 2503 pidgin/plugins/musicmessaging/Makefile
2547 pidgin/plugins/perl/Makefile 2504 pidgin/plugins/perl/Makefile
2548 pidgin/plugins/perl/common/Makefile.PL 2505 pidgin/plugins/perl/common/Makefile.PL
2549 pidgin/plugins/ticker/Makefile 2506 pidgin/plugins/ticker/Makefile
2507 pidgin/themes/Makefile
2550 libpurple/ciphers/Makefile 2508 libpurple/ciphers/Makefile
2551 libpurple/example/Makefile 2509 libpurple/example/Makefile
2552 libpurple/gconf/Makefile 2510 libpurple/gconf/Makefile
2553 libpurple/purple.pc 2511 libpurple/purple-3.pc
2554 libpurple/purple-uninstalled.pc 2512 libpurple/purple-3-uninstalled.pc
2555 libpurple/purple-2.pc
2556 libpurple/purple-2-uninstalled.pc
2557 libpurple/plugins/Makefile 2513 libpurple/plugins/Makefile
2558 libpurple/plugins/mono/Makefile 2514 libpurple/plugins/mono/Makefile
2559 libpurple/plugins/mono/api/Makefile 2515 libpurple/plugins/mono/api/Makefile
2560 libpurple/plugins/mono/loader/Makefile 2516 libpurple/plugins/mono/loader/Makefile
2561 libpurple/plugins/perl/Makefile 2517 libpurple/plugins/perl/Makefile
2574 libpurple/protocols/novell/Makefile 2530 libpurple/protocols/novell/Makefile
2575 libpurple/protocols/null/Makefile 2531 libpurple/protocols/null/Makefile
2576 libpurple/protocols/oscar/Makefile 2532 libpurple/protocols/oscar/Makefile
2577 libpurple/protocols/sametime/Makefile 2533 libpurple/protocols/sametime/Makefile
2578 libpurple/protocols/silc/Makefile 2534 libpurple/protocols/silc/Makefile
2579 libpurple/protocols/silc10/Makefile
2580 libpurple/protocols/simple/Makefile 2535 libpurple/protocols/simple/Makefile
2581 libpurple/protocols/yahoo/Makefile 2536 libpurple/protocols/yahoo/Makefile
2582 libpurple/protocols/zephyr/Makefile 2537 libpurple/protocols/zephyr/Makefile
2583 libpurple/tests/Makefile 2538 libpurple/tests/Makefile
2584 libpurple/purple.h 2539 libpurple/purple.h