Mercurial > pidgin
annotate src/protocols/rendezvous/Makefile.am @ 8536:008e4576dbfc
[gaim-migrate @ 9275]
(10:51:01) datallah: LSchiere: I've got a fix for bug #925013
from bug #925013:
" Since I set a contact's nick to a string that contained
an ampersand I stopped receiving "new message" or "user
is typing" type of notifications for that contact. Then
I replaced the ampersand and now it works as expected." --Javier Kohen
committer: Tailor Script <tailor@pidgin.im>
| author | Luke Schierer <lschiere@pidgin.im> |
|---|---|
| date | Wed, 31 Mar 2004 15:51:31 +0000 |
| parents | b06dcc915c45 |
| children | dbbf5470ba05 |
| rev | line source |
|---|---|
| 8489 | 1 EXTRA_DIST = \ |
| 2 Makefile.mingw | |
| 3 | |
| 4 pkgdir = $(libdir)/gaim | |
| 5 | |
| 6 RENDEZVOUSSOURCES = \ | |
| 7 mdns.c \ | |
| 8 rendezvous.c | |
| 9 | |
| 10 AM_CFLAGS = $(st) | |
| 11 | |
| 12 librendezvous_la_LDFLAGS = -module -avoid-version | |
| 13 | |
| 14 if STATIC_RENDEZVOUS | |
| 15 | |
| 16 st = -DGAIM_STATIC_PRPL | |
| 17 noinst_LIBRARIES = librendezvous.a | |
| 18 librendezvous_a_SOURCES = $(RENDEZVOUSSOURCES) | |
| 19 librendezvous_a_CFLAGS = $(AM_CFLAGS) | |
| 20 | |
| 21 else | |
| 22 | |
| 23 st = | |
| 24 pkg_LTLIBRARIES = librendezvous.la | |
| 25 librendezvous_la_SOURCES = $(RENDEZVOUSSOURCES) | |
| 26 | |
| 27 endif | |
| 28 | |
| 29 | |
| 30 AM_CPPFLAGS = \ | |
| 31 -I$(top_srcdir)/src \ | |
| 32 $(GLIB_CFLAGS) \ | |
| 33 $(DEBUG_CFLAGS) |
