diff options
author | Dan Nicholson <dbn.lists@gmail.com> | 2012-03-06 06:03:00 -0800 |
---|---|---|
committer | Dan Nicholson <dbn.lists@gmail.com> | 2012-03-06 06:03:00 -0800 |
commit | 85e91b5b9cad1622d5b6c3becbe8175daca76e39 (patch) | |
tree | 86a17d796b3fdb6f7da918ed548ba128c6514324 /src | |
parent | 4c2a5182c99fa285743b66a2e8cd8857c978cf78 (diff) |
config: Rework Mozilla dependencies so we don't link in libraries
We really only need the headers for xulrunner and nspr and don't want
to link anything since the symbols will all resolve at runtime when
the plugin is loaded.
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 65eb663..ff75495 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,7 +1,7 @@ -AM_CFLAGS = $(PLUGIN_CFLAGS) $(E_CFLAGS) +AM_CFLAGS = $(MOZILLA_CFLAGS) $(EVINCE_CFLAGS) $(E_CFLAGS) plugindir = $(libdir)/mozilla/plugins plugin_LTLIBRARIES = libevbp.la libevbp_la_LDFLAGS = -avoid-version -module -libevbp_la_LIBADD = $(PLUGIN_LIBS) +libevbp_la_LIBADD = $(EVINCE_LIBS) libevbp_la_SOURCES = evbp.c evbp-mime.h evbp-mime.c |