summaryrefslogtreecommitdiffstats
path: root/src/lib
diff options
context:
space:
mode:
authorJiri Moskovcak <jmoskovc@redhat.com>2011-03-03 12:47:28 +0100
committerJiri Moskovcak <jmoskovc@redhat.com>2011-03-03 12:47:28 +0100
commitef96cd431369b2cf0dd640a0bb66be4fb029b9c0 (patch)
tree028f6a2e377bd8135e4617bf631b5dd44037e0c0 /src/lib
parentdeac7d7ee408de17a97fbfb50e54ef22b74283fa (diff)
downloadabrt-ef96cd431369b2cf0dd640a0bb66be4fb029b9c0.tar.gz
abrt-ef96cd431369b2cf0dd640a0bb66be4fb029b9c0.tar.xz
abrt-ef96cd431369b2cf0dd640a0bb66be4fb029b9c0.zip
renamed libreport.so to libreport2.so
- we have a conflict with old report library which contains file with the same name
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/Makefile.am12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/lib/Makefile.am b/src/lib/Makefile.am
index bad3e63a..e30f38bc 100644
--- a/src/lib/Makefile.am
+++ b/src/lib/Makefile.am
@@ -1,8 +1,8 @@
-# libreport - the stuff shared among most of abrt (like xmalloc, logging)
+# libreport2 - the stuff shared among most of abrt (like xmalloc, logging)
# libabrt_dbus - daemon, cli and applet use this
# libabrt_web - for abrt-action-foo where foo deals with network/web/ftp/...
lib_LTLIBRARIES = \
- libreport.la \
+ libreport2.la \
libabrt_dbus.la \
libabrt_web.la
@@ -10,7 +10,7 @@ lib_LTLIBRARIES = \
# time.cpp
# xconnect.cpp
-libreport_la_SOURCES = \
+libreport2_la_SOURCES = \
xfuncs.c \
encbase64.c \
binhex.c \
@@ -44,7 +44,7 @@ libreport_la_SOURCES = \
parse_release.c \
parse_options.c parse_options.h \
steal_directory.c
-libreport_la_CPPFLAGS = \
+libreport2_la_CPPFLAGS = \
-Wall -Werror \
-I$(srcdir)/../include/report -I$(srcdir)/../include \
-DDEBUG_DUMPS_DIR=\"$(DEBUG_DUMPS_DIR)\" \
@@ -55,9 +55,9 @@ libreport_la_CPPFLAGS = \
-DVAR_RUN=\"$(VAR_RUN)\" \
$(GLIB_CFLAGS) \
-D_GNU_SOURCE
-libreport_la_LDFLAGS = \
+libreport2_la_LDFLAGS = \
-version-info 0:1:0
-libreport_la_LIBADD = \
+libreport2_la_LIBADD = \
$(GLIB_LIBS)
libabrt_dbus_la_SOURCES = \