Move adler32 from epan/ to wsutil/

The same like done for crc*

svn path=/trunk/; revision=53190
This commit is contained in:
Jakub Zawadzki 2013-11-09 14:03:53 +00:00
parent 1899903f69
commit ca42cb3e40
7 changed files with 4 additions and 4 deletions

View File

@ -1453,7 +1453,6 @@ set(LIBWIRESHARK_FILES
addr_and_mask.c
addr_resolv.c
address_to_str.c
adler32.c
afn.c
app_mem_usage.c
asn1.c

View File

@ -27,7 +27,6 @@ LIBWIRESHARK_SRC = \
addr_and_mask.c \
addr_resolv.c \
address_to_str.c \
adler32.c \
afn.c \
app_mem_usage.c \
asn1.c \
@ -150,7 +149,6 @@ LIBWIRESHARK_INCLUDES = \
addr_and_mask.h \
addr_resolv.h \
address.h \
adler32.h \
afn.h \
aftypes.h \
app_mem_usage.h \

View File

@ -64,7 +64,7 @@
#include <epan/expert.h>
#include <epan/show_exception.h>
#include <wsutil/crc32.h>
#include <epan/adler32.h>
#include <wsutil/adler32.h>
#include "packet-sctp.h"

View File

@ -36,6 +36,7 @@ IF(WIN32)
ENDIF(WIN32)
set(WSUTIL_FILES
adler32.c
aes.c
airpdcap_wep.c
crash_info.c

View File

@ -29,6 +29,7 @@
# generated from YACC or Lex files (as Automake doesn't want them in
# _SOURCES variables).
LIBWSUTIL_SRC = \
adler32.c \
aes.c \
airpdcap_wep.c \
crash_info.c \
@ -60,6 +61,7 @@ LIBWSUTIL_SRC = \
# Header files that are not generated from other files
LIBWSUTIL_INCLUDES = \
adler32.h \
aes.h \
bits_ctz.h \
bits_count_ones.h \