diff options
| author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-11-25 18:16:21 +0100 |
|---|---|---|
| committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-11-25 18:16:21 +0100 |
| commit | 257b6d0bfdaef3f143dc8249677a56586031e604 (patch) | |
| tree | adb6c1401764d26fdf9718b7f497827e9b49bcbe /src | |
| parent | c885d01dd06b0119ab0f784e64e72ce3f94d6882 (diff) | |
| download | abrt-257b6d0bfdaef3f143dc8249677a56586031e604.tar.gz abrt-257b6d0bfdaef3f143dc8249677a56586031e604.tar.xz abrt-257b6d0bfdaef3f143dc8249677a56586031e604.zip | |
split libABRTdUtils from libABRTUtils. This makes hooks _much_ smaller.
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'src')
| -rw-r--r-- | src/Applet/Makefile.am | 1 | ||||
| -rw-r--r-- | src/CLI/Makefile.am | 3 | ||||
| -rw-r--r-- | src/Daemon/Makefile.am | 1 | ||||
| -rw-r--r-- | src/Hooks/Makefile.am | 4 |
4 files changed, 7 insertions, 2 deletions
diff --git a/src/Applet/Makefile.am b/src/Applet/Makefile.am index 6fca43a..900ec01 100644 --- a/src/Applet/Makefile.am +++ b/src/Applet/Makefile.am @@ -23,6 +23,7 @@ abrt_applet_CPPFLAGS = \ # $(DBUS_GLIB_CFLAGS) abrt_applet_LDADD = \ ../../lib/Utils/libABRTUtils.la \ + ../../lib/Utils/libABRTdUtils.la \ -lglib-2.0 \ -lgthread-2.0 \ $(DBUS_LIBS) \ diff --git a/src/CLI/Makefile.am b/src/CLI/Makefile.am index e84d426..d12b69b 100644 --- a/src/CLI/Makefile.am +++ b/src/CLI/Makefile.am @@ -17,7 +17,8 @@ abrt_cli_CPPFLAGS = \ # $(GTK_CFLAGS) abrt_cli_LDADD = \ - ../../lib/Utils/libABRTUtils.la + ../../lib/Utils/libABRTUtils.la \ + ../../lib/Utils/libABRTdUtils.la man_MANS = abrt-cli.1 EXTRA_DIST = $(man_MANS) diff --git a/src/Daemon/Makefile.am b/src/Daemon/Makefile.am index a5bb64f..fc4f5e2 100644 --- a/src/Daemon/Makefile.am +++ b/src/Daemon/Makefile.am @@ -29,6 +29,7 @@ abrtd_CPPFLAGS = \ -D_GNU_SOURCE abrtd_LDADD = \ ../../lib/Utils/libABRTUtils.la \ + ../../lib/Utils/libABRTdUtils.la \ $(DL_LIBS) \ $(DBUS_LIBS) \ $(RPM_LIBS) \ diff --git a/src/Hooks/Makefile.am b/src/Hooks/Makefile.am index e581c25..026d4cf 100644 --- a/src/Hooks/Makefile.am +++ b/src/Hooks/Makefile.am @@ -26,8 +26,10 @@ dumpoops_CPPFLAGS = \ -DCONF_DIR=\"$(CONF_DIR)\" \ -DVAR_RUN=\"$(VAR_RUN)\" \ -D_GNU_SOURCE +# build will succeed, but at runtime plugins do need ABRT*d*Utils dumpoops_LDADD = \ - ../../lib/Utils/libABRTUtils.la + ../../lib/Utils/libABRTUtils.la \ + ../../lib/Utils/libABRTdUtils.la # abrt-pyhook-helper abrt_pyhook_helper_SOURCES = \ |
