Mercurial > pidgin
comparison configure.ac @ 18295:464004cc58e4
propagate from branch 'im.pidgin.pidgin' (head 704b8c18f7c29f1fc8bfcf640275d2a9928ed03c)
to branch 'org.maemo.garage.pidgin.smiley-install' (head 6a34c0d525ca3bb40837ac0334d8a353af0b0e34)
author | Gabriel Schulhof <nix@go-nix.ca> |
---|---|
date | Wed, 27 Jun 2007 21:43:18 +0000 |
parents | 2b8460b599ea |
children | dc98087bd97c 4c26b23e7859 |
comparison
equal
deleted
inserted
replaced
17919:6c9c16275868 | 18295:464004cc58e4 |
---|---|
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], [0]) | 46 m4_define([purple_lt_current], [1]) |
47 m4_define([purple_major_version], [2]) | 47 m4_define([purple_major_version], [2]) |
48 m4_define([purple_minor_version], [0]) | 48 m4_define([purple_minor_version], [1]) |
49 m4_define([purple_micro_version], [2]) | 49 m4_define([purple_micro_version], [0]) |
50 m4_define([purple_version_suffix], [devel]) | 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], [0]) | 55 m4_define([gnt_lt_current], [1]) |
56 m4_define([gnt_major_version], [1]) | 56 m4_define([gnt_major_version], [2]) |
57 m4_define([gnt_minor_version], [0]) | 57 m4_define([gnt_minor_version], [0]) |
58 m4_define([gnt_micro_version], [2]) | 58 m4_define([gnt_micro_version], [0]) |
59 m4_define([gnt_version_suffix], [devel]) | 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 |
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 -o x$GMSGFMT = x | 145 if test x$MSGFMT = xno |
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 |
567 dnl # Check for GStreamer | 567 dnl # Check for GStreamer |
568 dnl ####################################################################### | 568 dnl ####################################################################### |
569 AC_ARG_ENABLE(gstreamer, | 569 AC_ARG_ENABLE(gstreamer, |
570 [AC_HELP_STRING([--disable-gstreamer], [compile without GStreamer audio support])], | 570 [AC_HELP_STRING([--disable-gstreamer], [compile without GStreamer audio support])], |
571 enable_gst="$enableval", enable_gst="yes") | 571 enable_gst="$enableval", enable_gst="yes") |
572 PKG_CHECK_MODULES(GSTREAMER, [gstreamer-0.10], , [ | |
573 AC_MSG_RESULT(no) | |
574 enable_gst="no" | |
575 ]) | |
576 if test "x$enable_gst" != "xno"; then | 572 if test "x$enable_gst" != "xno"; then |
577 AC_DEFINE(USE_GSTREAMER, 1, [Use GStreamer for playing sounds]) | 573 PKG_CHECK_MODULES(GSTREAMER, [gstreamer-0.10], [ |
578 AC_SUBST(GSTREAMER_CFLAGS) | 574 AC_DEFINE(USE_GSTREAMER, 1, [Use GStreamer for playing sounds]) |
579 AC_SUBST(GSTREAMER_LIBS) | 575 AC_SUBST(GSTREAMER_CFLAGS) |
576 AC_SUBST(GSTREAMER_LIBS) | |
577 ], [ | |
578 AC_MSG_RESULT(no) | |
579 enable_gst="no" | |
580 ]) | |
580 fi | 581 fi |
581 | 582 |
582 dnl ####################################################################### | 583 dnl ####################################################################### |
583 dnl # Check for Meanwhile headers (for Sametime) | 584 dnl # Check for Meanwhile headers (for Sametime) |
584 dnl ####################################################################### | 585 dnl ####################################################################### |
644 dnl ####################################################################### | 645 dnl ####################################################################### |
645 AC_ARG_WITH(silc-includes, [AC_HELP_STRING([--with-silc-includes=DIR], [compile the SILC plugin against includes in DIR])], [ac_silc_includes="$withval"], [ac_silc_includes="no"]) | 646 AC_ARG_WITH(silc-includes, [AC_HELP_STRING([--with-silc-includes=DIR], [compile the SILC plugin against includes in DIR])], [ac_silc_includes="$withval"], [ac_silc_includes="no"]) |
646 AC_ARG_WITH(silc-libs, [AC_HELP_STRING([--with-silc-libs=DIR], [compile the SILC plugin against the SILC libs in DIR])], [ac_silc_libs="$withval"], [ac_silc_libs="no"]) | 647 AC_ARG_WITH(silc-libs, [AC_HELP_STRING([--with-silc-libs=DIR], [compile the SILC plugin against the SILC libs in DIR])], [ac_silc_libs="$withval"], [ac_silc_libs="no"]) |
647 SILC_CFLAGS="" | 648 SILC_CFLAGS="" |
648 SILC_LIBS="" | 649 SILC_LIBS="" |
650 have_silc="no" | |
649 if test -n "$with_silc_includes" || test -n "$with_silc_libs"; then | 651 if test -n "$with_silc_includes" || test -n "$with_silc_libs"; then |
650 silc_manual_check="yes" | 652 silc_manual_check="yes" |
651 else | 653 else |
652 silc_manual_check="no" | 654 silc_manual_check="no" |
653 fi | 655 fi |
654 if test "x$silc_manual_check" = "xno"; then | 656 if test "x$silc_manual_check" = "xno"; then |
655 PKG_CHECK_MODULES(SILC, silcclient, [ | 657 PKG_CHECK_MODULES(SILC, [silcclient >= 1.1], [ |
656 have_silc="yes" | 658 have_silc="yes" |
657 silcincludes="yes" | 659 silcincludes="yes" |
658 silcclient="yes" | 660 silcclient="yes" |
659 ], [ | 661 ], [ |
660 AC_MSG_RESULT(no) | 662 AC_MSG_RESULT(no) |
661 have_silc="no" | 663 have_silc="no" |
662 ]) | 664 ]) |
663 dnl If silcclient.pc wasn't found, check for just silc.pc | |
664 if test "x$have_silc" = "xno"; then | 665 if test "x$have_silc" = "xno"; then |
665 PKG_CHECK_MODULES(SILC, silc, [ | 666 PKG_CHECK_MODULES(SILC, silcclient, [ |
666 have_silc="yes" | 667 have_silc="yes" |
667 silcincludes="yes" | 668 silc10includes="yes" |
668 silcclient="yes" | 669 silc10client="yes" |
669 ], [ | 670 ], [ |
670 AC_MSG_RESULT(no) | 671 AC_MSG_RESULT(no) |
671 have_silc="no" | 672 have_silc="no" |
672 ]) | 673 ]) |
674 dnl If silcclient.pc wasn't found, check for just silc.pc | |
675 if test "x$have_silc" = "xno"; then | |
676 PKG_CHECK_MODULES(SILC, silc, [ | |
677 have_silc="yes" | |
678 silc10includes="yes" | |
679 silc10client="yes" | |
680 ], [ | |
681 AC_MSG_RESULT(no) | |
682 have_silc="no" | |
683 ]) | |
684 fi | |
673 fi | 685 fi |
674 else | 686 else |
675 if test "$ac_silc_includes" != "no"; then | 687 if test "$ac_silc_includes" != "no"; then |
676 SILC_CFLAGS="-I$ac_silc_includes" | 688 SILC_CFLAGS="-I$ac_silc_includes" |
677 fi | 689 fi |
678 CPPFLAGS_save="$CPPFLAGS" | 690 CPPFLAGS_save="$CPPFLAGS" |
679 CPPFLAGS="$CPPFLAGS $SILC_CFLAGS" | 691 CPPFLAGS="$CPPFLAGS $SILC_CFLAGS" |
680 AC_CHECK_HEADER(silcincludes.h, [silcincludes=yes]) | 692 AC_CHECK_HEADER(silc.h, [silcincludes=yes]) |
681 CPPFLAGS="$CPPFLAGS_save" | 693 CPPFLAGS="$CPPFLAGS_save" |
682 | 694 |
683 if test "$ac_silc_libs" != "no"; then | 695 if test "$ac_silc_libs" != "no"; then |
684 SILC_LIBS="-L$ac_silc_libs" | 696 SILC_LIBS="-L$ac_silc_libs" |
685 fi | 697 fi |
686 SILC_LIBS="$SILC_LIBS -lsilc -lsilcclient -lpthread $LIBDL" | 698 SILC_LIBS="$SILC_LIBS -lsilc -lsilcclient -lpthread $LIBDL" |
687 AC_CHECK_LIB(silcclient, silc_client_init, [silcclient=yes], , $SILC_LIBS) | 699 AC_CHECK_LIB(silcclient, silc_client_init, [silcclient=yes], , $SILC_LIBS) |
700 | |
701 if test "x$silcincludes" = "xyes" -a "x$silcclient" = "xyes"; then | |
702 have_silc="yes" | |
703 else | |
704 CPPFLAGS_save="$CPPFLAGS" | |
705 CPPFLAGS="$CPPFLAGS $SILC_CFLAGS" | |
706 AC_CHECK_HEADER(silcincludes.h, [silc10includes=yes]) | |
707 CPPFLAGS="$CPPFLAGS_save" | |
708 | |
709 SILC_LIBS="$SILC_LIBS -lsilc -lsilcclient -lpthread $LIBDL" | |
710 AC_CHECK_LIB(silcclient, silc_client_init, [silc10client=yes], , $SILC_LIBS) | |
711 if test "x$silc10includes" = "xyes" -a "x$silc10client" = "xyes"; then | |
712 have_silc="yes" | |
713 fi | |
714 fi | |
688 fi | 715 fi |
689 AC_SUBST(SILC_LIBS) | 716 AC_SUBST(SILC_LIBS) |
690 AC_SUBST(SILC_CFLAGS) | 717 AC_SUBST(SILC_CFLAGS) |
691 dnl SILC Toolkit >= 1.0.1 has a new MIME API | 718 dnl SILC Toolkit >= 1.0.1 has a new MIME API |
692 if test "x$silcclient" = "xyes"; then | 719 if test "x$silcclient" = "xyes"; then |
720 AC_DEFINE(HAVE_SILCMIME_H, 1, [Define if we have silcmime.h]) | |
721 elif test "x$silc10client" = "xyes"; then | |
693 CPPFLAGS_save="$CPPFLAGS" | 722 CPPFLAGS_save="$CPPFLAGS" |
694 CPPFLAGS="$CPPFLAGS $SILC_CFLAGS" | 723 CPPFLAGS="$CPPFLAGS $SILC_CFLAGS" |
695 AC_MSG_CHECKING(for silcmime.h) | 724 AC_MSG_CHECKING(for silcmime.h) |
696 AC_TRY_COMPILE([ | 725 AC_TRY_COMPILE([ |
697 #include <silcincludes.h> | 726 #include <silcincludes.h> |
792 fi | 821 fi |
793 if test "x$howlincludes" != "xyes" -o "x$howllibs" != "xyes"; then | 822 if test "x$howlincludes" != "xyes" -o "x$howllibs" != "xyes"; then |
794 STATIC_PRPLS=`echo $STATIC_PRPLS | $sedpath 's/bonjour//'` | 823 STATIC_PRPLS=`echo $STATIC_PRPLS | $sedpath 's/bonjour//'` |
795 fi | 824 fi |
796 if test "x$silcincludes" != "xyes" -o "x$silcclient" != "xyes"; then | 825 if test "x$silcincludes" != "xyes" -o "x$silcclient" != "xyes"; then |
797 STATIC_PRPLS=`echo $STATIC_PRPLS | $sedpath 's/silc//'` | 826 STATIC_PRPLS=`echo $STATIC_PRPLS | $sedpath 's/silc/silc10/'` |
827 fi | |
828 if test "x$silc10includes" != "xyes" -o "x$silc10client" != "xyes"; then | |
829 STATIC_PRPLS=`echo $STATIC_PRPLS | $sedpath 's/silc10//'` | |
798 fi | 830 fi |
799 AC_SUBST(STATIC_PRPLS) | 831 AC_SUBST(STATIC_PRPLS) |
800 STATIC_LINK_LIBS= | 832 STATIC_LINK_LIBS= |
801 extern_init= | 833 extern_init= |
802 load_proto= | 834 load_proto= |
803 for i in $STATIC_PRPLS ; do | 835 for i in $STATIC_PRPLS ; do |
804 dnl Ugly special case for "libsilcpurple.a": | 836 dnl Ugly special case for "libsilcpurple.a": |
805 if test "x$i" = "xsilc"; then | 837 dnl ... and Ugly special case for multi-protocol oscar |
806 STATIC_LINK_LIBS="$STATIC_LINK_LIBS protocols/$i/lib${i}purple.a" | 838 if test \( "x$i" = "xoscar" -o "x$i" = "xaim" -o "x$i" = "xicq" \) -a "x$static_oscar" != "xyes"; then |
839 STATIC_LINK_LIBS="$STATIC_LINK_LIBS \$(top_builddir)/libpurple/protocols/oscar/liboscar.a" | |
840 extern_init="$extern_init extern gboolean purple_init_aim_plugin();" | |
841 extern_init="$extern_init extern gboolean purple_init_icq_plugin();" | |
842 load_proto="$load_proto purple_init_aim_plugin();" | |
843 load_proto="$load_proto purple_init_icq_plugin();" | |
807 else | 844 else |
808 STATIC_LINK_LIBS="$STATIC_LINK_LIBS protocols/$i/lib$i.a" | 845 if test "x$i" = "xsilc"; then |
809 fi | 846 STATIC_LINK_LIBS="$STATIC_LINK_LIBS \$(top_builddir)/libpurple/protocols/$i/lib${i}purple.a" |
810 extern_init="$extern_init extern gboolean purple_init_${i}_plugin();" | 847 elif test "x$i" = "xsilc10"; then |
811 load_proto="$load_proto purple_init_${i}_plugin();" | 848 STATIC_LINK_LIBS="$STATIC_LINK_LIBS \$(top_builddir)/libpurple/protocols/$i/libsilcpurple.a" |
849 else | |
850 STATIC_LINK_LIBS="$STATIC_LINK_LIBS \$(top_builddir)/libpurple/protocols/$i/lib$i.a" | |
851 fi | |
852 extern_init="$extern_init extern gboolean purple_init_${i}_plugin();" | |
853 load_proto="$load_proto purple_init_${i}_plugin();" | |
854 fi | |
812 case $i in | 855 case $i in |
813 bonjour) static_bonjour=yes ;; | 856 bonjour) static_bonjour=yes ;; |
814 gg) static_gg=yes ;; | 857 gg) static_gg=yes ;; |
815 irc) static_irc=yes ;; | 858 irc) static_irc=yes ;; |
816 jabber) static_jabber=yes ;; | 859 jabber) static_jabber=yes ;; |
820 aim) static_oscar=yes ;; | 863 aim) static_oscar=yes ;; |
821 icq) static_oscar=yes ;; | 864 icq) static_oscar=yes ;; |
822 qq) static_qq=yes ;; | 865 qq) static_qq=yes ;; |
823 sametime) static_sametime=yes ;; | 866 sametime) static_sametime=yes ;; |
824 silc) static_silc=yes ;; | 867 silc) static_silc=yes ;; |
868 silc10) static_silc=yes ;; | |
825 simple) static_simple=yes ;; | 869 simple) static_simple=yes ;; |
826 toc) static_toc=yes ;; | 870 toc) static_toc=yes ;; |
827 yahoo) static_yahoo=yes ;; | 871 yahoo) static_yahoo=yes ;; |
828 zephyr) static_zephyr=yes ;; | 872 zephyr) static_zephyr=yes ;; |
829 *) echo "Invalid static protocol $i!!" ; exit ;; | 873 *) echo "Invalid static protocol $i!!" ; exit ;; |
836 AM_CONDITIONAL(STATIC_MSN, test "x$static_msn" = "xyes") | 880 AM_CONDITIONAL(STATIC_MSN, test "x$static_msn" = "xyes") |
837 AM_CONDITIONAL(STATIC_NOVELL, test "x$static_novell" = "xyes") | 881 AM_CONDITIONAL(STATIC_NOVELL, test "x$static_novell" = "xyes") |
838 AM_CONDITIONAL(STATIC_OSCAR, test "x$static_oscar" = "xyes") | 882 AM_CONDITIONAL(STATIC_OSCAR, test "x$static_oscar" = "xyes") |
839 AM_CONDITIONAL(STATIC_QQ, test "x$static_qq" = "xyes") | 883 AM_CONDITIONAL(STATIC_QQ, test "x$static_qq" = "xyes") |
840 AM_CONDITIONAL(STATIC_SAMETIME, test "x$static_sametime" = "xyes" -a "x$have_meanwhile" = "xyes") | 884 AM_CONDITIONAL(STATIC_SAMETIME, test "x$static_sametime" = "xyes" -a "x$have_meanwhile" = "xyes") |
841 AM_CONDITIONAL(STATIC_SILC, test "x$static_silc" = "xyes" -a "x$silcincludes" = "xyes" -a "x$silcclient" = "xyes") | 885 AM_CONDITIONAL(STATIC_SILC, test "x$static_silc" = "xyes" -a "x$have_silc" = "xyes") |
842 AM_CONDITIONAL(STATIC_SIMPLE, test "x$static_simple" = "xyes") | 886 AM_CONDITIONAL(STATIC_SIMPLE, test "x$static_simple" = "xyes") |
843 AM_CONDITIONAL(STATIC_TOC, test "x$static_toc" = "xyes") | 887 AM_CONDITIONAL(STATIC_TOC, test "x$static_toc" = "xyes") |
844 AM_CONDITIONAL(STATIC_YAHOO, test "x$static_yahoo" = "xyes") | 888 AM_CONDITIONAL(STATIC_YAHOO, test "x$static_yahoo" = "xyes") |
845 AM_CONDITIONAL(STATIC_ZEPHYR, test "x$static_zephyr" = "xyes") | 889 AM_CONDITIONAL(STATIC_ZEPHYR, test "x$static_zephyr" = "xyes") |
846 AC_SUBST(STATIC_LINK_LIBS) | 890 AC_SUBST(STATIC_LINK_LIBS) |
856 fi | 900 fi |
857 if test "x$howlincludes" != "xyes" -o "x$howllibs" != "xyes"; then | 901 if test "x$howlincludes" != "xyes" -o "x$howllibs" != "xyes"; then |
858 DYNAMIC_PRPLS=`echo $DYNAMIC_PRPLS | $sedpath 's/bonjour//'` | 902 DYNAMIC_PRPLS=`echo $DYNAMIC_PRPLS | $sedpath 's/bonjour//'` |
859 fi | 903 fi |
860 if test "x$silcincludes" != "xyes" -o "x$silcclient" != "xyes"; then | 904 if test "x$silcincludes" != "xyes" -o "x$silcclient" != "xyes"; then |
861 DYNAMIC_PRPLS=`echo $DYNAMIC_PRPLS | $sedpath 's/silc//'` | 905 DYNAMIC_PRPLS=`echo $DYNAMIC_PRPLS | $sedpath 's/silc/silc10/'` |
906 fi | |
907 if test "x$silc10includes" != "xyes" -o "x$silc10client" != "xyes"; then | |
908 DYNAMIC_PRPLS=`echo $DYNAMIC_PRPLS | $sedpath 's/silc10//'` | |
862 fi | 909 fi |
863 AC_SUBST(DYNAMIC_PRPLS) | 910 AC_SUBST(DYNAMIC_PRPLS) |
864 for i in $DYNAMIC_PRPLS ; do | 911 for i in $DYNAMIC_PRPLS ; do |
865 case $i in | 912 case $i in |
866 bonjour) dynamic_bonjour=yes ;; | 913 bonjour) dynamic_bonjour=yes ;; |
873 aim) dynamic_oscar=yes ;; | 920 aim) dynamic_oscar=yes ;; |
874 icq) dynamic_oscar=yes ;; | 921 icq) dynamic_oscar=yes ;; |
875 qq) dynamic_qq=yes ;; | 922 qq) dynamic_qq=yes ;; |
876 sametime) dynamic_sametime=yes ;; | 923 sametime) dynamic_sametime=yes ;; |
877 silc) dynamic_silc=yes ;; | 924 silc) dynamic_silc=yes ;; |
925 silc10) dynamic_silc=yes ;; | |
878 simple) dynamic_simple=yes ;; | 926 simple) dynamic_simple=yes ;; |
879 toc) dynamic_toc=yes ;; | 927 toc) dynamic_toc=yes ;; |
880 yahoo) dynamic_yahoo=yes ;; | 928 yahoo) dynamic_yahoo=yes ;; |
881 zephyr) dynamic_zephyr=yes ;; | 929 zephyr) dynamic_zephyr=yes ;; |
882 *) echo "Invalid dynamic protocol $i!!" ; exit ;; | 930 *) echo "Invalid dynamic protocol $i!!" ; exit ;; |
889 AM_CONDITIONAL(DYNAMIC_MSN, test "x$dynamic_msn" = "xyes") | 937 AM_CONDITIONAL(DYNAMIC_MSN, test "x$dynamic_msn" = "xyes") |
890 AM_CONDITIONAL(DYNAMIC_NOVELL, test "x$dynamic_novell" = "xyes") | 938 AM_CONDITIONAL(DYNAMIC_NOVELL, test "x$dynamic_novell" = "xyes") |
891 AM_CONDITIONAL(DYNAMIC_OSCAR, test "x$dynamic_oscar" = "xyes") | 939 AM_CONDITIONAL(DYNAMIC_OSCAR, test "x$dynamic_oscar" = "xyes") |
892 AM_CONDITIONAL(DYNAMIC_QQ, test "x$dynamic_qq" = "xyes") | 940 AM_CONDITIONAL(DYNAMIC_QQ, test "x$dynamic_qq" = "xyes") |
893 AM_CONDITIONAL(DYNAMIC_SAMETIME, test "x$dynamic_sametime" = "xyes" -a "x$have_meanwhile" = "xyes") | 941 AM_CONDITIONAL(DYNAMIC_SAMETIME, test "x$dynamic_sametime" = "xyes" -a "x$have_meanwhile" = "xyes") |
894 AM_CONDITIONAL(DYNAMIC_SILC, test "x$dynamic_silc" = "xyes" -a "x$silcincludes" = "xyes" -a "x$silcclient" = "xyes") | 942 AM_CONDITIONAL(DYNAMIC_SILC, test "x$dynamic_silc" = "xyes" -a "x$have_silc" = "xyes") |
895 AM_CONDITIONAL(DYNAMIC_SIMPLE, test "x$dynamic_simple" = "xyes") | 943 AM_CONDITIONAL(DYNAMIC_SIMPLE, test "x$dynamic_simple" = "xyes") |
896 AM_CONDITIONAL(DYNAMIC_TOC, test "x$dynamic_toc" = "xyes") | 944 AM_CONDITIONAL(DYNAMIC_TOC, test "x$dynamic_toc" = "xyes") |
897 AM_CONDITIONAL(DYNAMIC_YAHOO, test "x$dynamic_yahoo" = "xyes") | 945 AM_CONDITIONAL(DYNAMIC_YAHOO, test "x$dynamic_yahoo" = "xyes") |
898 AM_CONDITIONAL(DYNAMIC_ZEPHYR, test "x$dynamic_zephyr" = "xyes") | 946 AM_CONDITIONAL(DYNAMIC_ZEPHYR, test "x$dynamic_zephyr" = "xyes") |
899 | 947 |
2054 pidgin/pixmaps/tray/Makefile | 2102 pidgin/pixmaps/tray/Makefile |
2055 pidgin/pixmaps/tray/16/Makefile | 2103 pidgin/pixmaps/tray/16/Makefile |
2056 pidgin/pixmaps/tray/16/scalable/Makefile | 2104 pidgin/pixmaps/tray/16/scalable/Makefile |
2057 pidgin/pixmaps/tray/22/Makefile | 2105 pidgin/pixmaps/tray/22/Makefile |
2058 pidgin/pixmaps/tray/22/scalable/Makefile | 2106 pidgin/pixmaps/tray/22/scalable/Makefile |
2107 pidgin/pixmaps/tray/32/Makefile | |
2108 pidgin/pixmaps/tray/48/Makefile | |
2059 pidgin/plugins/Makefile | 2109 pidgin/plugins/Makefile |
2060 pidgin/plugins/cap/Makefile | 2110 pidgin/plugins/cap/Makefile |
2061 pidgin/plugins/gestures/Makefile | 2111 pidgin/plugins/gestures/Makefile |
2062 pidgin/plugins/gevolution/Makefile | 2112 pidgin/plugins/gevolution/Makefile |
2063 pidgin/plugins/musicmessaging/Makefile | 2113 pidgin/plugins/musicmessaging/Makefile |
2088 libpurple/protocols/null/Makefile | 2138 libpurple/protocols/null/Makefile |
2089 libpurple/protocols/oscar/Makefile | 2139 libpurple/protocols/oscar/Makefile |
2090 libpurple/protocols/qq/Makefile | 2140 libpurple/protocols/qq/Makefile |
2091 libpurple/protocols/sametime/Makefile | 2141 libpurple/protocols/sametime/Makefile |
2092 libpurple/protocols/silc/Makefile | 2142 libpurple/protocols/silc/Makefile |
2143 libpurple/protocols/silc10/Makefile | |
2093 libpurple/protocols/simple/Makefile | 2144 libpurple/protocols/simple/Makefile |
2094 libpurple/protocols/toc/Makefile | 2145 libpurple/protocols/toc/Makefile |
2095 libpurple/protocols/yahoo/Makefile | 2146 libpurple/protocols/yahoo/Makefile |
2096 libpurple/protocols/zephyr/Makefile | 2147 libpurple/protocols/zephyr/Makefile |
2097 libpurple/tests/Makefile | 2148 libpurple/tests/Makefile |