Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions userspace/libpman/libpman.pc.in
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ includedir=${prefix}/@CMAKE_INSTALL_INCLUDEDIR@
Name: libpman
Description: Utility library for BPF probes
Version: @FALCOSECURITY_LIBS_VERSION@
License: Apache-2.0

Requires: libbpf zlib
Libs: -L${libdir} -lpman -lscap_event_schema -lscap_platform
Expand Down
3 changes: 2 additions & 1 deletion userspace/libscap/libscap.pc.in
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@ includedir=${prefix}/@CMAKE_INSTALL_INCLUDEDIR@/@LIBS_PACKAGE_NAME@
Name: libscap
Description: lib for System CAPture
Version: @FALCOSECURITY_LIBS_VERSION@
License: Apache-2.0

Requires: @LIBSCAP_PKGCONFIG_REQUIRES@
Requires.private: @LIBSCAP_PKGCONFIG_REQUIRES_PRIVATE@
Libs: -L${libdir} @LIBSCAP_LINK_LIBDIRS_FLAGS@ @LIBSCAP_LINK_LIBRARIES_FLAGS@
Cflags: -I${includedir} -I${includedir}/libscap -I${includedir}/driver
Cflags: -I${includedir}
2 changes: 1 addition & 1 deletion userspace/libsinsp/fdinfo.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ limitations under the License.

#include <unordered_map>
#include <memory>
#include <packed_data.h>
#include <libsinsp/packed_data.h>

// fd type characters
#define CHAR_FD_FILE 'f'
Expand Down
3 changes: 2 additions & 1 deletion userspace/libsinsp/libsinsp.pc.in
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@ includedir=${prefix}/@CMAKE_INSTALL_INCLUDEDIR@/@LIBS_PACKAGE_NAME@
Name: libsinsp
Description: lib for System INSPection
Version: @FALCOSECURITY_LIBS_VERSION@
License: Apache-2.0

Requires: libscap @LIBSINSP_REQUIRES@
Requires.private: @LIBSINSP_REQUIRES_PRIVATE@
Libs: -L${libdir} @SINSP_PKG_CONFIG_LIBDIRS@ @SINSP_PKG_CONFIG_LIBS@
Cflags: -I${includedir} -I${includedir}/libsinsp -I${includedir}/driver @SINSP_PKG_CONFIG_INCLUDES@
Cflags: -I${includedir} @SINSP_PKG_CONFIG_INCLUDES@
2 changes: 1 addition & 1 deletion userspace/libsinsp/threadinfo.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ struct iovec {

#include <functional>
#include <memory>
#include <sinsp_fdtable_factory.h>
#include <libsinsp/sinsp_fdtable_factory.h>
#include <libsinsp/fdtable.h>
#include <libsinsp/thread_group_info.h>
#include <libsinsp/state/table.h>
Expand Down
Loading