Mercurial > pidgin
annotate libpurple/ciphers/Makefile.am @ 31734:f71b6a715cc7
Fix some closes on invalid fds, which can crash on Windows.
committer: Ethan Blanton <elb@pidgin.im>
author | Florian Quèze <florian@instantbird.org> |
---|---|
date | Sun, 10 Jul 2011 13:11:36 +0000 |
parents | 2b041e31b825 |
children |
rev | line source |
---|---|
31212
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=\ |
31218
076d62344ede
broke des and des3 out to ciphers/des.c
Gary Kramlich <grim@reaperworld.com>
parents:
31217
diff
changeset
|
4 des.c \ |
31221
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:
31218
diff
changeset
|
5 gchecksum.c \ |
31214
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:
31212
diff
changeset
|
6 hmac.c \ |
31212
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 \ |
31215 | 8 md5.c \ |
31216
1bdc5f464802
Moved rc4 to the ciphers sublibrary
Gary Kramlich <grim@reaperworld.com>
parents:
31215
diff
changeset
|
9 rc4.c \ |
31217
3af51303d45c
Moved sha256 to the sub library
Gary Kramlich <grim@reaperworld.com>
parents:
31216
diff
changeset
|
10 sha1.c \ |
3af51303d45c
Moved sha256 to the sub library
Gary Kramlich <grim@reaperworld.com>
parents:
31216
diff
changeset
|
11 sha256.c |
31212
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 |