Simplify library dependency flags.

We have a confusing array of nearly-identical CFLAGS/LIBS definitions in
configure.ac.  Time to simplify.  Instead let's just have one definition
that includes all the libraries provided by Evolution-Data-Server (incl.
Camel).  That, in combination with GNOME_PLATFORM, gives us most of what
we need for compliation and linking, and we can sprinkle definitions for
additional library dependencies in Makefile.am's as needed.
This commit is contained in:
Matthew Barnes
2011-10-04 21:32:41 -04:00
parent 273b10a5ba
commit 1f38f4d92c
79 changed files with 364 additions and 450 deletions

View File

@ -4,7 +4,7 @@ libevolution_module_plugin_python_la_CPPFLAGS = \
$(AM_CPPFLAGS) \
-DG_LOG_DOMAIN=\"evolution-plugin-python\" \
-I$(top_srcdir) \
$(E_UTIL_CFLAGS) \
$(EVOLUTION_DATA_SERVER_CFLAGS) \
$(PY_INCLUDES)
libevolution_module_plugin_python_la_SOURCES = \
@ -15,7 +15,7 @@ libevolution_module_plugin_python_la_SOURCES = \
libevolution_module_plugin_python_la_LIBADD = \
-ldl -lutil -lm \
$(top_builddir)/e-util/libeutil.la \
$(E_UTIL_LIBS) \
$(EVOLUTION_DATA_SERVER_LIBS) \
$(PY_LIBS)
libevolution_module_plugin_python_la_LDFLAGS = \