Fix: sessiond: event name length check is too strict
[lttng-tools.git] / src / common / Makefile.am
index 675885a6754c1f45f8916f3fba938dca47ef3881..372934e0dba0728fc9cc225a118f875d1db6e2f5 100644 (file)
@@ -36,7 +36,7 @@ DIST_SUBDIRS = \
        argpar-utils
 
 # Common library
-noinst_LTLIBRARIES = libcommon-lgpl.la libcommon-gpl.la
+noinst_LTLIBRARIES = libpath.la libcommon-lgpl.la libcommon-gpl.la
 EXTRA_DIST = mi-lttng-4.1.xsd
 
 # The libcommon-lgpl static archive contains only LGPLv2.1 code. It is
@@ -54,6 +54,7 @@ libcommon_lgpl_la_SOURCES = \
        actions/stop-session.c \
        actions/rate-policy.c \
        buffer-view.h buffer-view.c \
+       channel.c \
        conditions/buffer-usage.c \
        conditions/condition.c \
        conditions/event-rule-matches.c \
@@ -68,6 +69,7 @@ libcommon_lgpl_la_SOURCES = \
        error.c error.h \
        error-query.c \
        evaluation.c \
+       event.c \
        event-expr/event-expr.c \
        event-field-value.c \
        event-rule/event-rule.c \
@@ -114,6 +116,12 @@ libcommon_lgpl_la_LIBADD = \
        $(top_builddir)/src/common/hashtable/libhashtable-lgpl.la \
        $(top_builddir)/src/vendor/msgpack/libmsgpack.la
 
+# The libpath static archive contains GPLv2 compatible code. It is
+# meant to be used by GPL executables.
+
+libpath_la_SOURCES = \
+       path.c path.h
+
 # The libcommon-gpl static archive contains GPLv2 compatible code. It is
 # meant to be used by GPL executables.
 
@@ -121,7 +129,6 @@ libcommon_gpl_la_SOURCES = \
        common.h \
        context.c context.h \
        daemonize.c daemonize.h \
-       event.c \
        filter.c filter.h \
        fs-handle.c fs-handle.h fs-handle-internal.h \
        futex.c futex.h \
@@ -136,6 +143,7 @@ libcommon_gpl_la_SOURCES = \
 
 libcommon_gpl_la_LIBADD = \
        libcommon-lgpl.la \
+       libpath.la \
        $(top_builddir)/src/common/hashtable/libhashtable-gpl.la \
        $(top_builddir)/src/common/fd-tracker/libfd-tracker.la
 
This page took 0.027054 seconds and 4 git commands to generate.