mirror of
https://git.proxmox.com/git/mirror_lxc
synced 2025-04-29 19:15:18 +00:00
add compile flags for dlog
Signed-off-by: 2xsec <dh48.jeong@samsung.com>
This commit is contained in:
parent
fd73418875
commit
a8eed52c17
@ -91,6 +91,13 @@ BuildRequires: libseccomp-devel
|
|||||||
%endif
|
%endif
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
|
#
|
||||||
|
# Additional package for Tizen
|
||||||
|
#
|
||||||
|
%if %{defined tizen_version}
|
||||||
|
BuildRequires: pkgconfig(dlog)
|
||||||
|
%endif
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Containers are insulated areas inside a system, which have their own namespace
|
Containers are insulated areas inside a system, which have their own namespace
|
||||||
for filesystem, network, PID, IPC, CPU and memory allocation and which can be
|
for filesystem, network, PID, IPC, CPU and memory allocation and which can be
|
||||||
|
@ -212,7 +212,8 @@ AM_CFLAGS += -DHAVE_SELINUX
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
if ENABLE_DLOG
|
if ENABLE_DLOG
|
||||||
AM_CFLAGS += -DHAVE_DLOG
|
AM_CFLAGS += -DHAVE_DLOG \
|
||||||
|
$(DLOG_CFLAGS)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if USE_CONFIGPATH_LOGS
|
if USE_CONFIGPATH_LOGS
|
||||||
@ -233,7 +234,8 @@ liblxc_la_LDFLAGS = -pthread \
|
|||||||
liblxc_la_LIBADD = $(CAP_LIBS) \
|
liblxc_la_LIBADD = $(CAP_LIBS) \
|
||||||
$(GNUTLS_LIBS) \
|
$(GNUTLS_LIBS) \
|
||||||
$(SELINUX_LIBS) \
|
$(SELINUX_LIBS) \
|
||||||
$(SECCOMP_LIBS)
|
$(SECCOMP_LIBS) \
|
||||||
|
$(DLOG_LIBS)
|
||||||
|
|
||||||
bin_SCRIPTS=
|
bin_SCRIPTS=
|
||||||
|
|
||||||
@ -285,7 +287,8 @@ LDADD = liblxc.la \
|
|||||||
@CAP_LIBS@ \
|
@CAP_LIBS@ \
|
||||||
@GNUTLS_LIBS@ \
|
@GNUTLS_LIBS@ \
|
||||||
@SECCOMP_LIBS@ \
|
@SECCOMP_LIBS@ \
|
||||||
@SELINUX_LIBS@
|
@SELINUX_LIBS@ \
|
||||||
|
@DLOG_LIBS@
|
||||||
|
|
||||||
if ENABLE_TOOLS
|
if ENABLE_TOOLS
|
||||||
lxc_attach_SOURCES = tools/lxc_attach.c \
|
lxc_attach_SOURCES = tools/lxc_attach.c \
|
||||||
@ -421,6 +424,7 @@ pam_cgfs_la_CFLAGS = $(AM_CFLAGS) -DNO_LXC_CONF
|
|||||||
|
|
||||||
pam_cgfs_la_LIBADD = $(AM_LIBS) \
|
pam_cgfs_la_LIBADD = $(AM_LIBS) \
|
||||||
$(PAM_LIBS) \
|
$(PAM_LIBS) \
|
||||||
|
$(DLOG_LIBS) \
|
||||||
-L$(top_srcdir)
|
-L$(top_srcdir)
|
||||||
|
|
||||||
pam_cgfs_la_LDFLAGS = $(AM_LDFLAGS) \
|
pam_cgfs_la_LDFLAGS = $(AM_LDFLAGS) \
|
||||||
|
Loading…
Reference in New Issue
Block a user