This commit replaces most atoi() calls (which don't report errors) with a strtol() wrapper function for stronger string -> integer conversion validation.
10 lines
303 B
Makefile
10 lines
303 B
Makefile
noinst_LIBRARIES = libfko_util.a
|
|
|
|
libfko_util_source_files = ../lib/strlcpy.c ../lib/strlcat.c ../lib/fko_util.c ../lib/fko_util.h
|
|
|
|
libfko_util_a_SOURCES = $(libfko_util_source_files)
|
|
|
|
AM_CPPFLAGS = $(GPGME_CFLAGS) -I $(top_srcdir)/common
|
|
|
|
EXTRA_DIST = common.h netinet_common.h
|