annotate src/protocols/silc/Makefile.am @ 10867:5727afad0fb8

[gaim-migrate @ 12553] sf patch #991208, from Arun A Tharuvai "Here's a patch, against current CVS, to build and compile zephyr on Windows, with, or without Kerberos 4 Authentication. In order to be built (and run) with Kerberos 4 authentication, the Kerberos for Windows SDK (version 2.6.3 is the current version) (licensed under the MIT license) and runtimes, both available from http://web.mit.edu/kerberos/www/dist/index.html#KFW2.6.3 Also, USE_KRB4 should be set to true in the attached Makefile.mingw As on the UNIX side, an external 'zhm' binary needs to run for zephyr to work. Source and a win32 executable (using code from gaim's libzephyr, and also MIT's zephyr distribution), can be found at http://web.mit.edu/aatharuv/www/zhm-windows.html" I decided not to make zephyr compiled by default in Windows. If you want to compile it, I think you you can modify the root Makefile.mingw or cd to the src/protocols/zephyr/ directory and run "make -f Makefile.mingw" using make from mingw committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Mon, 25 Apr 2005 01:53:01 +0000
parents 3547fd2af609
children 2cc05a9e944d
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
9353
b8138f3959dc [gaim-migrate @ 10161]
Ethan Blanton <elb@pidgin.im>
parents: 9061
diff changeset
1 EXTRA_DIST = README TODO Makefile.mingw
8849
50d0f76639e7 [gaim-migrate @ 9616]
Ethan Blanton <elb@pidgin.im>
parents:
diff changeset
2
50d0f76639e7 [gaim-migrate @ 9616]
Ethan Blanton <elb@pidgin.im>
parents:
diff changeset
3 pkgdir = $(libdir)/gaim
50d0f76639e7 [gaim-migrate @ 9616]
Ethan Blanton <elb@pidgin.im>
parents:
diff changeset
4
50d0f76639e7 [gaim-migrate @ 9616]
Ethan Blanton <elb@pidgin.im>
parents:
diff changeset
5 SILCSOURCES = silc.c silcgaim.h buddy.c chat.c ft.c ops.c pk.c util.c
50d0f76639e7 [gaim-migrate @ 9616]
Ethan Blanton <elb@pidgin.im>
parents:
diff changeset
6
50d0f76639e7 [gaim-migrate @ 9616]
Ethan Blanton <elb@pidgin.im>
parents:
diff changeset
7 AM_CFLAGS = $(st)
50d0f76639e7 [gaim-migrate @ 9616]
Ethan Blanton <elb@pidgin.im>
parents:
diff changeset
8
9061
710302dae4e6 [gaim-migrate @ 9837]
Ethan Blanton <elb@pidgin.im>
parents: 8857
diff changeset
9 libsilcgaim_la_LDFLAGS = -module -avoid-version
8849
50d0f76639e7 [gaim-migrate @ 9616]
Ethan Blanton <elb@pidgin.im>
parents:
diff changeset
10
8857
15ddfb03f4c7 [gaim-migrate @ 9625]
Ethan Blanton <elb@pidgin.im>
parents: 8849
diff changeset
11 if STATIC_SILC
8849
50d0f76639e7 [gaim-migrate @ 9616]
Ethan Blanton <elb@pidgin.im>
parents:
diff changeset
12
9905
3547fd2af609 [gaim-migrate @ 10797]
Luke Schierer <lschiere@pidgin.im>
parents: 9353
diff changeset
13 st = -DGAIM_STATIC_PRPL $(SILC_CFLAGS)
9061
710302dae4e6 [gaim-migrate @ 9837]
Ethan Blanton <elb@pidgin.im>
parents: 8857
diff changeset
14 noinst_LIBRARIES = libsilcgaim.a
8849
50d0f76639e7 [gaim-migrate @ 9616]
Ethan Blanton <elb@pidgin.im>
parents:
diff changeset
15 pkg_LTLIBRARIES =
50d0f76639e7 [gaim-migrate @ 9616]
Ethan Blanton <elb@pidgin.im>
parents:
diff changeset
16
9061
710302dae4e6 [gaim-migrate @ 9837]
Ethan Blanton <elb@pidgin.im>
parents: 8857
diff changeset
17 libsilcgaim_a_SOURCES = $(SILCSOURCES)
710302dae4e6 [gaim-migrate @ 9837]
Ethan Blanton <elb@pidgin.im>
parents: 8857
diff changeset
18 libsilcgaim_a_CFLAGS = $(AM_CFLAGS)
710302dae4e6 [gaim-migrate @ 9837]
Ethan Blanton <elb@pidgin.im>
parents: 8857
diff changeset
19 libsilcgaim_a_LIBADD = $(SILC_LIBS)
8849
50d0f76639e7 [gaim-migrate @ 9616]
Ethan Blanton <elb@pidgin.im>
parents:
diff changeset
20
50d0f76639e7 [gaim-migrate @ 9616]
Ethan Blanton <elb@pidgin.im>
parents:
diff changeset
21 else
50d0f76639e7 [gaim-migrate @ 9616]
Ethan Blanton <elb@pidgin.im>
parents:
diff changeset
22
9905
3547fd2af609 [gaim-migrate @ 10797]
Luke Schierer <lschiere@pidgin.im>
parents: 9353
diff changeset
23 st = $(SILC_CFLAGS)
9061
710302dae4e6 [gaim-migrate @ 9837]
Ethan Blanton <elb@pidgin.im>
parents: 8857
diff changeset
24 pkg_LTLIBRARIES = libsilcgaim.la
8849
50d0f76639e7 [gaim-migrate @ 9616]
Ethan Blanton <elb@pidgin.im>
parents:
diff changeset
25 noinst_LIBRARIES =
50d0f76639e7 [gaim-migrate @ 9616]
Ethan Blanton <elb@pidgin.im>
parents:
diff changeset
26
9061
710302dae4e6 [gaim-migrate @ 9837]
Ethan Blanton <elb@pidgin.im>
parents: 8857
diff changeset
27 libsilcgaim_la_SOURCES = $(SILCSOURCES)
710302dae4e6 [gaim-migrate @ 9837]
Ethan Blanton <elb@pidgin.im>
parents: 8857
diff changeset
28 libsilcgaim_la_LIBADD = $(SILC_LIBS)
8849
50d0f76639e7 [gaim-migrate @ 9616]
Ethan Blanton <elb@pidgin.im>
parents:
diff changeset
29
50d0f76639e7 [gaim-migrate @ 9616]
Ethan Blanton <elb@pidgin.im>
parents:
diff changeset
30 endif
50d0f76639e7 [gaim-migrate @ 9616]
Ethan Blanton <elb@pidgin.im>
parents:
diff changeset
31
50d0f76639e7 [gaim-migrate @ 9616]
Ethan Blanton <elb@pidgin.im>
parents:
diff changeset
32 AM_CPPFLAGS = \
50d0f76639e7 [gaim-migrate @ 9616]
Ethan Blanton <elb@pidgin.im>
parents:
diff changeset
33 -I$(top_srcdir)/src \
50d0f76639e7 [gaim-migrate @ 9616]
Ethan Blanton <elb@pidgin.im>
parents:
diff changeset
34 $(GLIB_CFLAGS) \
50d0f76639e7 [gaim-migrate @ 9616]
Ethan Blanton <elb@pidgin.im>
parents:
diff changeset
35 $(DEBUG_CFLAGS)