annotate libpurple/protocols/myspace/Makefile.am @ 23787:92e71f6e10d4

Patch from Marcus Lundblad ('mlundblad') to improve audio support in xmpp. It's now possible to initiate an audio session, sometimes. It's somewhat buggy. Some other issues also need to be resolved: * Properly get rid of the compile warnings * Rename the serv_ functions with proper namespacing. * Possibly rename the purple_media_ functions that don't deal with a PurpleMedia (e.g. purple_media_audio_init_src) to something different, e.g. purple_media_util_, or even purple_gst_util etc.
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Sat, 22 Mar 2008 04:45:46 +0000
parents 60f5abc6cf0c
children adf153852bcf
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
16722
ba7d6317da76 Update for Pidgin 2.0.0beta7.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 16402
diff changeset
1 EXTRA_DIST = Makefile.mingw
16394
05e2df434077 Import msimprpl 0.4.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
diff changeset
2
16722
ba7d6317da76 Update for Pidgin 2.0.0beta7.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 16402
diff changeset
3 pkgdir = $(libdir)/purple-$(PURPLE_MAJOR_VERSION)
16394
05e2df434077 Import msimprpl 0.4.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
diff changeset
4
20037
ba649e93098b it seems that "SOURCES" is a reserved variable in some versions of automake,
Stu Tomlinson <stu@nosnilmot.com>
parents: 20008
diff changeset
5 MSIMSOURCES = markup.c \
20008
65e12a6f00ca Ship zap.h for MySpaceIM to pass distcheck (and allow dist tarball to work)
Kevin Stange <kevin@simguy.net>
parents: 19435
diff changeset
6 markup.h \
19432
210f792efd7c In msimprpl, move zap-related code to a separate module.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 16735
diff changeset
7 message.c \
210f792efd7c In msimprpl, move zap-related code to a separate module.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 16735
diff changeset
8 message.h \
20008
65e12a6f00ca Ship zap.h for MySpaceIM to pass distcheck (and allow dist tarball to work)
Kevin Stange <kevin@simguy.net>
parents: 19435
diff changeset
9 myspace.c \
65e12a6f00ca Ship zap.h for MySpaceIM to pass distcheck (and allow dist tarball to work)
Kevin Stange <kevin@simguy.net>
parents: 19435
diff changeset
10 myspace.h \
65e12a6f00ca Ship zap.h for MySpaceIM to pass distcheck (and allow dist tarball to work)
Kevin Stange <kevin@simguy.net>
parents: 19435
diff changeset
11 persist.h \
19433
9a1b28a10c95 In msimprpl, move session-related functions to a new session module.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 19432
diff changeset
12 session.c \
9a1b28a10c95 In msimprpl, move session-related functions to a new session module.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 19432
diff changeset
13 session.h \
19435
bddc6a6fddf0 In msimprpl, move user-related code to a new user module, and move other
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 19434
diff changeset
14 user.c \
20008
65e12a6f00ca Ship zap.h for MySpaceIM to pass distcheck (and allow dist tarball to work)
Kevin Stange <kevin@simguy.net>
parents: 19435
diff changeset
15 user.h \
65e12a6f00ca Ship zap.h for MySpaceIM to pass distcheck (and allow dist tarball to work)
Kevin Stange <kevin@simguy.net>
parents: 19435
diff changeset
16 zap.c \
65e12a6f00ca Ship zap.h for MySpaceIM to pass distcheck (and allow dist tarball to work)
Kevin Stange <kevin@simguy.net>
parents: 19435
diff changeset
17 zap.h
16394
05e2df434077 Import msimprpl 0.4.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
diff changeset
18
05e2df434077 Import msimprpl 0.4.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
diff changeset
19 AM_CFLAGS = $(st)
05e2df434077 Import msimprpl 0.4.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
diff changeset
20
16722
ba7d6317da76 Update for Pidgin 2.0.0beta7.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 16402
diff changeset
21 libmyspace_la_LDFLAGS = -module -avoid-version
16394
05e2df434077 Import msimprpl 0.4.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
diff changeset
22
05e2df434077 Import msimprpl 0.4.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
diff changeset
23 if STATIC_MYSPACE
05e2df434077 Import msimprpl 0.4.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
diff changeset
24
16396
70c069168459 Gaim -> Purple
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 16394
diff changeset
25 st = -DPURPLE_STATIC_PRPL
16722
ba7d6317da76 Update for Pidgin 2.0.0beta7.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 16402
diff changeset
26 noinst_LIBRARIES = libmyspace.a
20037
ba649e93098b it seems that "SOURCES" is a reserved variable in some versions of automake,
Stu Tomlinson <stu@nosnilmot.com>
parents: 20008
diff changeset
27 libmyspace_a_SOURCES = $(MSIMSOURCES)
16722
ba7d6317da76 Update for Pidgin 2.0.0beta7.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 16402
diff changeset
28 libmyspace_a_CFLAGS = $(AM_CFLAGS)
16394
05e2df434077 Import msimprpl 0.4.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
diff changeset
29
05e2df434077 Import msimprpl 0.4.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
diff changeset
30 else
05e2df434077 Import msimprpl 0.4.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
diff changeset
31
05e2df434077 Import msimprpl 0.4.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
diff changeset
32 st =
16722
ba7d6317da76 Update for Pidgin 2.0.0beta7.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 16402
diff changeset
33 pkg_LTLIBRARIES = libmyspace.la
20037
ba649e93098b it seems that "SOURCES" is a reserved variable in some versions of automake,
Stu Tomlinson <stu@nosnilmot.com>
parents: 20008
diff changeset
34 libmyspace_la_SOURCES = $(MSIMSOURCES)
16722
ba7d6317da76 Update for Pidgin 2.0.0beta7.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 16402
diff changeset
35 libmyspace_la_LIBADD = $(GLIB_LIBS)
16394
05e2df434077 Import msimprpl 0.4.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
diff changeset
36
05e2df434077 Import msimprpl 0.4.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
diff changeset
37 endif
05e2df434077 Import msimprpl 0.4.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
diff changeset
38
05e2df434077 Import msimprpl 0.4.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
diff changeset
39 AM_CPPFLAGS = \
16396
70c069168459 Gaim -> Purple
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 16394
diff changeset
40 -I$(top_srcdir)/libpurple \
21294
8f3f166e0a39 Allow myspace to build outside of the source tree
Stu Tomlinson <stu@nosnilmot.com>
parents: 20037
diff changeset
41 -I$(top_builddir)/libpurple \
16394
05e2df434077 Import msimprpl 0.4.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
diff changeset
42 $(GLIB_CFLAGS) \
23759
315151da0dc6 Basic Google Talk voice call support. No UI; receiving a call auto-accepts it.
Sean Egan <seanegan@gmail.com>
parents: 19435
diff changeset
43 $(FARSIGHT_CFLAGS) \
23787
92e71f6e10d4 Patch from Marcus Lundblad ('mlundblad') to improve audio support in xmpp.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents: 23769
diff changeset
44 $(DEBUG_CFLAGS) \
92e71f6e10d4 Patch from Marcus Lundblad ('mlundblad') to improve audio support in xmpp.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents: 23769
diff changeset
45 $(GSTREAMER_CFLAGS) \
92e71f6e10d4 Patch from Marcus Lundblad ('mlundblad') to improve audio support in xmpp.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents: 23769
diff changeset
46 $(LIBXML_CFLAGS)