view src/protocols/trepia/Makefile.am @ 10170:3c88c2f1b732

[gaim-migrate @ 11262] This patch changes proxy.c to set the FD_CLOEXEC flag on any sockets it opens. This should (hopefully) fix problems with daemons propping open oscar (and maybe other) accounts when the socket doesn't close because a child owns it. Only time will tell... (This just hit oldstatus as well) committer: Tailor Script <tailor@pidgin.im>
author Ethan Blanton <elb@pidgin.im>
date Thu, 11 Nov 2004 18:00:32 +0000
parents 6b1ecf40f3ba
children
line wrap: on
line source

EXTRA_DIST = \
		Makefile.mingw

pkgdir = $(libdir)/gaim

TREPIASOURCES = \
	profile.c \
	profile.h \
	trepia.c

AM_CFLAGS = $(st)

libtrepia_la_LDFLAGS = -module -avoid-version

if STATIC_TREPIA

st = -DGAIM_STATIC_PRPL
noinst_LIBRARIES = libtrepia.a
libtrepia_a_SOURCES = $(TREPIASOURCES)
libtrepia_a_CFLAGS  = $(AM_CFLAGS)

else

st =
pkg_LTLIBRARIES   = libtrepia.la
libtrepia_la_SOURCES = $(TREPIASOURCES)

endif

AM_CPPFLAGS = \
	-I$(top_srcdir)/src \
	$(GLIB_CFLAGS) \
	$(DEBUG_CFLAGS)