Wed, 30 Jul 2008 03:58:21 +0000
Cleanup unnecessary casts and etc.
|
9353
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9061
diff
changeset
|
1 | EXTRA_DIST = README TODO Makefile.mingw |
| 8849 | 2 | |
|
16651
218fe51ae7b7
soname versioning of libpurple. Should help resolve debian bug 421282
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
16364
diff
changeset
|
3 | pkgdir = $(libdir)/purple-$(PURPLE_MAJOR_VERSION) |
| 8849 | 4 | |
| 15884 | 5 | SILCSOURCES = silc.c silcpurple.h buddy.c chat.c ft.c ops.c pk.c util.c wb.c wb.h |
| 8849 | 6 | |
| 7 | AM_CFLAGS = $(st) | |
| 8 | ||
|
15946
d40e8847e825
More s/gaim/pidgin/ and s/gaim/purple/ and make the RPM spec file work a bit
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
15884
diff
changeset
|
9 | libsilcpurple_la_LDFLAGS = -module -avoid-version |
| 8849 | 10 | |
| 8857 | 11 | if STATIC_SILC |
| 8849 | 12 | |
|
15947
15efedafba00
s/GAIM_STATIC_PRPL/PURPLE_STATIC_PRPL/ in prpl Makefiles
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
15946
diff
changeset
|
13 | st = -DPURPLE_STATIC_PRPL $(SILC_CFLAGS) |
|
15946
d40e8847e825
More s/gaim/pidgin/ and s/gaim/purple/ and make the RPM spec file work a bit
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
15884
diff
changeset
|
14 | noinst_LIBRARIES = libsilcpurple.a |
| 8849 | 15 | pkg_LTLIBRARIES = |
| 16 | ||
|
15946
d40e8847e825
More s/gaim/pidgin/ and s/gaim/purple/ and make the RPM spec file work a bit
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
15884
diff
changeset
|
17 | libsilcpurple_a_SOURCES = $(SILCSOURCES) |
|
d40e8847e825
More s/gaim/pidgin/ and s/gaim/purple/ and make the RPM spec file work a bit
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
15884
diff
changeset
|
18 | libsilcpurple_a_CFLAGS = $(AM_CFLAGS) |
|
d40e8847e825
More s/gaim/pidgin/ and s/gaim/purple/ and make the RPM spec file work a bit
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
15884
diff
changeset
|
19 | libsilcpurple_a_LIBADD = $(SILC_LIBS) |
| 8849 | 20 | |
| 21 | else | |
| 22 | ||
| 9905 | 23 | st = $(SILC_CFLAGS) |
|
15946
d40e8847e825
More s/gaim/pidgin/ and s/gaim/purple/ and make the RPM spec file work a bit
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
15884
diff
changeset
|
24 | pkg_LTLIBRARIES = libsilcpurple.la |
| 8849 | 25 | noinst_LIBRARIES = |
| 26 | ||
|
15946
d40e8847e825
More s/gaim/pidgin/ and s/gaim/purple/ and make the RPM spec file work a bit
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
15884
diff
changeset
|
27 | libsilcpurple_la_SOURCES = $(SILCSOURCES) |
|
d40e8847e825
More s/gaim/pidgin/ and s/gaim/purple/ and make the RPM spec file work a bit
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
15884
diff
changeset
|
28 | libsilcpurple_la_LIBADD = $(GLIB_LIBS) $(SILC_LIBS) |
| 8849 | 29 | |
| 30 | endif | |
| 31 | ||
| 32 | AM_CPPFLAGS = \ | |
| 15472 | 33 | -I$(top_srcdir)/libpurple \ |
|
16810
7f257f18af06
Now that version.h is a generated source file, we need to add
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
16651
diff
changeset
|
34 | -I$(top_builddir)/libpurple \ |
| 8849 | 35 | $(GLIB_CFLAGS) \ |
| 36 | $(DEBUG_CFLAGS) |