annotate libpurple/ciphers/Makefile.am @ 32776:8c71a7e95f16

The PurpleConnection->inpa handle is now stored (if needed) within each protocol prpl's protocol_data.
author andrew.victor@mxit.com
date Tue, 18 Oct 2011 21:44:25 +0000
parents 2b041e31b825
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
31661
64587c6084e3 Created a new branch to break the ciphers out to their own files. Also I've now exposed purple_g_checksum_* if we're on glib >= 2.16.0
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
1 noinst_LTLIBRARIES=libpurple-ciphers.la
64587c6084e3 Created a new branch to break the ciphers out to their own files. Also I've now exposed purple_g_checksum_* if we're on glib >= 2.16.0
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
2
64587c6084e3 Created a new branch to break the ciphers out to their own files. Also I've now exposed purple_g_checksum_* if we're on glib >= 2.16.0
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
3 libpurple_ciphers_la_SOURCES=\
31667
076d62344ede broke des and des3 out to ciphers/des.c
Gary Kramlich <grim@reaperworld.com>
parents: 31666
diff changeset
4 des.c \
31670
2b041e31b825 Removed the "new" api I added by moving it to ciphers/gchecksum.c. Moved the gchecksum implements into gchecksum.c as a preproc macro, removed them from their individual files
Gary Kramlich <grim@reaperworld.com>
parents: 31667
diff changeset
5 gchecksum.c \
31663
04ead332691f Broke out the hmac cipher to it's own file. Removed already transitioned info in the fileheader of cipher.c
Gary Kramlich <grim@reaperworld.com>
parents: 31661
diff changeset
6 hmac.c \
31661
64587c6084e3 Created a new branch to break the ciphers out to their own files. Also I've now exposed purple_g_checksum_* if we're on glib >= 2.16.0
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
7 md4.c \
31664
521febcb717a Broke sha1 out
Gary Kramlich <grim@reaperworld.com>
parents: 31663
diff changeset
8 md5.c \
31665
1bdc5f464802 Moved rc4 to the ciphers sublibrary
Gary Kramlich <grim@reaperworld.com>
parents: 31664
diff changeset
9 rc4.c \
31666
3af51303d45c Moved sha256 to the sub library
Gary Kramlich <grim@reaperworld.com>
parents: 31665
diff changeset
10 sha1.c \
3af51303d45c Moved sha256 to the sub library
Gary Kramlich <grim@reaperworld.com>
parents: 31665
diff changeset
11 sha256.c
31661
64587c6084e3 Created a new branch to break the ciphers out to their own files. Also I've now exposed purple_g_checksum_* if we're on glib >= 2.16.0
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
12
64587c6084e3 Created a new branch to break the ciphers out to their own files. Also I've now exposed purple_g_checksum_* if we're on glib >= 2.16.0
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
13 INCLUDES = -I$(top_srcdir)/libpurple
64587c6084e3 Created a new branch to break the ciphers out to their own files. Also I've now exposed purple_g_checksum_* if we're on glib >= 2.16.0
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
14
64587c6084e3 Created a new branch to break the ciphers out to their own files. Also I've now exposed purple_g_checksum_* if we're on glib >= 2.16.0
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
15 AM_CPPFLAGS = \
64587c6084e3 Created a new branch to break the ciphers out to their own files. Also I've now exposed purple_g_checksum_* if we're on glib >= 2.16.0
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
16 $(GLIB_CFLAGS)
64587c6084e3 Created a new branch to break the ciphers out to their own files. Also I've now exposed purple_g_checksum_* if we're on glib >= 2.16.0
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
17