Mercurial > pidgin
annotate src/protocols/simple/Makefile.am @ 11247:e5aa4398003e
[gaim-migrate @ 13416]
Fix the bug where our screen name would not be shown when sending an
IM to someone over protocols where you do not have a server-side alias,
and you have not set a self-alias for yourself.
This was caused by Sean's commit of a patch which brough conversastion.c
to revision 1.644. Anyone know the reason for this change? The
commit message was
"Todd Troxell removed IM aliases from chat rooms. Unfortunate, but necessary"
committer: Tailor Script <tailor@pidgin.im>
| author | Mark Doliner <mark@kingant.net> |
|---|---|
| date | Sat, 13 Aug 2005 02:26:57 +0000 |
| parents | e5bbe5070e04 |
| children | 0f03b5492130 |
| 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 \ | |
| 9 digcalc.h \ | |
| 10 srvresolve.h \ | |
| 11 srvresolve.c | |
| 12 | |
| 13 AM_CFLAGS = $(st) -lresolv | |
| 14 | |
| 15 libsimple_la_LDFLAGS = -module -avoid-version $(GLIB_LIBS) | |
| 16 | |
| 17 if STATIC_MSN | |
| 18 | |
| 19 st = -DGAIM_STATIC_PRPL | |
| 20 noinst_LIBRARIES = libsimple.a | |
| 21 libsimple_a_SOURCES = $(SIMPLESOURCES) | |
| 22 libsimple_a_CFLAGS = $(AM_CFLAGS) | |
| 23 | |
| 24 else | |
| 25 | |
| 26 st = | |
| 27 pkg_LTLIBRARIES = libsimple.la | |
| 28 libsimple_la_SOURCES = $(SIMPLESOURCES) | |
| 29 | |
| 30 endif | |
| 31 | |
| 32 AM_CPPFLAGS = \ | |
| 33 -I$(top_srcdir)/src \ | |
| 34 $(GLIB_CFLAGS) \ | |
| 35 $(DEBUG_CFLAGS) |
