Mercurial > pidgin
annotate src/protocols/simple/Makefile.am @ 12143:cbebda5f019c
[gaim-migrate @ 14444]
SF Patch #1360399 from Evan Schoenberg (evands)
"I discussed this previously with Mark and he said it'd be fine.
This factors out the part of the send_file function which creates a new
GaimXfer into a separate prpl function, new_xfer. It's called in each of the
existing send_file functions.
This is needed so that another client (okay, Adium) can get a new
outgoing GaimXfer from a prpl without depending upon the specific ft.c
logic of send_file; previously I was adding a duplicate method to each prpl
and then calling it directly."
I fixed a couple small bugs in this. Otherwise, it looks good, and seems like a reasonable libgaim request.
committer: Tailor Script <tailor@pidgin.im>
| author | Richard Laager <rlaager@wiktel.com> |
|---|---|
| date | Sat, 19 Nov 2005 00:26:12 +0000 |
| parents | b4cf724b64f8 |
| children | cfc808463763 |
| rev | line source |
|---|---|
| 11181 | 1 pkgdir = $(libdir)/gaim |
| 2 | |
| 3 SIMPLESOURCES = \ | |
| 4 simple.c \ | |
| 5 simple.h \ | |
| 6 sipmsg.c \ | |
| 7 sipmsg.h \ | |
| 8 digcalc.c \ | |
| 11383 | 9 digcalc.h |
| 11181 | 10 |
| 11376 | 11 AM_CFLAGS = $(st) |
| 11181 | 12 |
| 13 libsimple_la_LDFLAGS = -module -avoid-version $(GLIB_LIBS) | |
| 14 | |
| 15 if STATIC_MSN | |
| 16 | |
| 17 st = -DGAIM_STATIC_PRPL | |
| 18 noinst_LIBRARIES = libsimple.a | |
| 19 libsimple_a_SOURCES = $(SIMPLESOURCES) | |
| 20 libsimple_a_CFLAGS = $(AM_CFLAGS) | |
| 21 | |
| 22 else | |
| 23 | |
| 24 st = | |
| 25 pkg_LTLIBRARIES = libsimple.la | |
| 26 libsimple_la_SOURCES = $(SIMPLESOURCES) | |
| 27 | |
| 28 endif | |
| 29 | |
| 30 AM_CPPFLAGS = \ | |
| 31 -I$(top_srcdir)/src \ | |
| 32 $(GLIB_CFLAGS) \ | |
| 33 $(DEBUG_CFLAGS) |
