annotate plugins/tcl/Makefile.am @ 9328:33e6b2b92cfe

[gaim-migrate @ 10136] "Initial Comment: This fixes a few more bugs, patches up some memory leaks, and adds things to the todo list: Uncomment and fix handle_unknown to print debug info for unhandled zephyrs. Fix triple_subset for some odd cases class "*" and recipient "*" only match themselves. Notifies when a message to chat fails. Zephyrs to <message,personal,recipient> (where recipient!=username), now get treated as chat messages, instead of IM's. Incoming IM's from user@thisrealm appear from user instead of user@thisrealm. Sets the default sending instance for chats to "PERSONAL" if not specified or set to * (wildcard) for compatibility with zwrite. Add miscellaneous code comments. Joining chats from a buddy list does the right thing when the instance or recipient aren't specified. When joining chats from a dialog box (or buddy list), new messages sent from that chat window caused a second nonfunctional window for the same chat to popup. This is fixed here." --Arun A Tharuvai committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Sun, 20 Jun 2004 14:46:24 +0000
parents d470c16dd17a
children e5451763f5b9
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
6694
2d2f04c5c7d2 [gaim-migrate @ 7220]
Ethan Blanton <elb@pidgin.im>
parents:
diff changeset
1 plugindir = $(libdir)/gaim
2d2f04c5c7d2 [gaim-migrate @ 7220]
Ethan Blanton <elb@pidgin.im>
parents:
diff changeset
2
2d2f04c5c7d2 [gaim-migrate @ 7220]
Ethan Blanton <elb@pidgin.im>
parents:
diff changeset
3 tcl_la_LDFLAGS = -module -avoid-version $(TCL_LIBS) $(TK_LIBS)
2d2f04c5c7d2 [gaim-migrate @ 7220]
Ethan Blanton <elb@pidgin.im>
parents:
diff changeset
4
2d2f04c5c7d2 [gaim-migrate @ 7220]
Ethan Blanton <elb@pidgin.im>
parents:
diff changeset
5 plugin_LTLIBRARIES = tcl.la
2d2f04c5c7d2 [gaim-migrate @ 7220]
Ethan Blanton <elb@pidgin.im>
parents:
diff changeset
6
6881
b1c21872cf0f [gaim-migrate @ 7427]
Nathan Walp <nwalp@pidgin.im>
parents: 6694
diff changeset
7 tcl_la_SOURCES = tcl.c tcl_glib.c tcl_glib.h tcl_cmds.c tcl_signals.c tcl_gaim.h
6694
2d2f04c5c7d2 [gaim-migrate @ 7220]
Ethan Blanton <elb@pidgin.im>
parents:
diff changeset
8
8098
d470c16dd17a [gaim-migrate @ 8798]
Ethan Blanton <elb@pidgin.im>
parents: 8069
diff changeset
9 EXTRA_DIST = signal-test.tcl Makefile.mingw tcl_win32.c
7408
fd464e819dbe [gaim-migrate @ 8008]
Ethan Blanton <elb@pidgin.im>
parents: 6881
diff changeset
10
6694
2d2f04c5c7d2 [gaim-migrate @ 7220]
Ethan Blanton <elb@pidgin.im>
parents:
diff changeset
11 AM_CPPFLAGS = \
2d2f04c5c7d2 [gaim-migrate @ 7220]
Ethan Blanton <elb@pidgin.im>
parents:
diff changeset
12 -DVERSION=\"$(VERSION)\" \
2d2f04c5c7d2 [gaim-migrate @ 7220]
Ethan Blanton <elb@pidgin.im>
parents:
diff changeset
13 -I$(top_srcdir) \
2d2f04c5c7d2 [gaim-migrate @ 7220]
Ethan Blanton <elb@pidgin.im>
parents:
diff changeset
14 -I$(top_srcdir)/src \
2d2f04c5c7d2 [gaim-migrate @ 7220]
Ethan Blanton <elb@pidgin.im>
parents:
diff changeset
15 $(DEBUG_CFLAGS) \
2d2f04c5c7d2 [gaim-migrate @ 7220]
Ethan Blanton <elb@pidgin.im>
parents:
diff changeset
16 $(GLIB_CFLAGS) \
2d2f04c5c7d2 [gaim-migrate @ 7220]
Ethan Blanton <elb@pidgin.im>
parents:
diff changeset
17 $(PLUGIN_CFLAGS) \
2d2f04c5c7d2 [gaim-migrate @ 7220]
Ethan Blanton <elb@pidgin.im>
parents:
diff changeset
18 $(TK_CFLAGS) \
2d2f04c5c7d2 [gaim-migrate @ 7220]
Ethan Blanton <elb@pidgin.im>
parents:
diff changeset
19 $(TCL_CFLAGS)