view src/lib/Makefile.am @ 492:efa46e28a0d7 HEAD

Fixes to timezone handling which were handling quite badly. added ioloop_timezone which gets updated with ioloop_time. Changed some GMT references to UTC. Timezone offsets are in minutes now everywhere instead of seconds. Fixes for unsigned time_t.
author Timo Sirainen <tss@iki.fi>
date Thu, 24 Oct 2002 03:15:38 +0300
parents 1f0e7229ee58
children 3b53dd1280c6
line wrap: on
line source

noinst_LIBRARIES = liblib.a

if IOLOOP_POLL
ioloop_source = ioloop-poll.c
else
ioloop_source = ioloop-select.c
endif

ioloop_sources = \
	ioloop-poll.c \
	ioloop-select.c

liblib_a_SOURCES = \
	base64.c \
	compat.c \
	data-stack.c \
	failures.c \
	fdpass.c \
	file-lock.c \
	file-set-size.c \
	hash.c \
	hex-binary.c \
	hostpid.c \
	imem.c \
	iobuffer.c \
	ibuffer.c \
	ibuffer-data.c \
	ibuffer-file.c \
	ibuffer-mmap.c \
	ioloop.c \
	$(ioloop_source) \
	lib.c \
	lib-signals.c \
	md5.c \
	mempool.c \
	mempool-alloconly.c \
	mempool-datastack.c \
	mempool-system.c \
	mmap-anon.c \
	mmap-util.c \
	network.c \
	obuffer.c \
	obuffer-file.c \
	primes.c \
	randgen.c \
	restrict-access.c \
	sendfile-util.c \
	strfuncs.c \
	temp-string.c \
	unlink-directory.c \
	unlink-lockfiles.c \
	utc-offset.c \
	utc-mktime.c \
	write-full.c

noinst_HEADERS = \
	base64.h \
	compat.h \
	data-stack.h \
	failures.h \
	fdpass.h \
	file-lock.h \
	file-set-size.h \
	hash.h \
	hex-binary.h \
	hostpid.h \
	imem.h \
	iobuffer-internal.h \
	ibuffer.h \
	ibuffer-internal.h \
	ioloop.h \
	ioloop-internal.h \
	lib.h \
	lib-signals.h \
	macros.h \
	md5.h \
	mempool.h \
	mmap-util.h \
	network.h \
	obuffer.h \
	obuffer-internal.h \
	primes.h \
	randgen.h \
	restrict-access.h \
	sendfile-util.h \
	strfuncs.h \
	temp-string.h \
	unlink-directory.h \
	unlink-lockfiles.h \
	utc-offset.h \
	utc-mktime.h \
	write-full.h

EXTRA_DIST = \
	$(ioloop_sources)