1
0
Fork 0
mirror of git://git.kernel.org/pub/scm/libs/libcap/libcap.git synced 2025-12-06 07:09:37 +00:00
No description
Find a file
Andrew G. Morgan 542d7d86ec Revert "libcap: Add build ldflags to _makenames rule"
This reverts commit c3ddf45d9a.

The details of what this broke are here:

  https://bugzilla.kernel.org/show_bug.cgi?id=220691#c2

Signed-off-by: Andrew G. Morgan <morgan@kernel.org>
2025-11-10 18:26:34 -08:00
cap Up the release version to 2.77 2025-10-26 11:29:03 -07:00
contrib Up the release version to 2.77 2025-10-26 11:29:03 -07:00
doc More useful cross linking for man pages. 2025-03-19 20:17:01 -07:00
go Do not cross compile mknames.go 2025-11-10 18:21:52 -08:00
goapps Up the release version to 2.77 2025-10-26 11:29:03 -07:00
kdebug Make the kdebug test use the terminal output. 2025-05-06 23:17:09 -07:00
libcap Revert "libcap: Add build ldflags to _makenames rule" 2025-11-10 18:26:34 -08:00
pam_cap Drop linux/ headers for standard ones. 2025-03-02 10:25:00 -08:00
progs Fix bugs in setcap.c error strings. 2025-06-18 06:18:32 -07:00
psx Up the release version to 2.77 2025-10-26 11:29:03 -07:00
tests Improve weaver test to count zeros vs '-1' values. 2025-03-02 14:24:25 -08:00
.gitignore Rewrite libpsx to work with native linux threads. 2024-10-25 22:58:46 -07:00
CHANGELOG Update the CHANGELOG file to point to current locations. 2020-06-02 19:45:10 -07:00
distcheck.sh Linux 5.7 supports CAP_PERFMON 2020-06-02 20:56:01 -07:00
gomods.sh Add a handy update script for the various go.mod files. 2021-05-24 11:50:15 -07:00
License Reviewed license information and adde SPDX ids. 2022-10-19 19:05:11 -07:00
Make.Rules Up the release version to 2.77 2025-10-26 11:29:03 -07:00
Makefile Tighten up the comments for the various signed tags moving forward. 2024-10-26 20:53:42 -07:00
pgp.keys.asc Add a more modern signing key. 2024-10-25 21:50:53 -07:00
README Fix typos. 2021-08-14 11:03:27 -07:00
template.c Prepare for 1.95 release. 2007-07-10 22:38:22 -07:00

This is a library for getting and setting POSIX.1e (formerly POSIX 6)
draft 15 capabilities.

Natively supported languages are C/C++ and Go.

This library would not have been possible without the help of 

    Aleph1, Roland Buresund and Andrew Main, Alexander Kjeldaas.

More information on capabilities in the Linux kernel, links to the
official git repository for libcap, release notes and how to report
bugs can be found at:

    http://sites.google.com/site/fullycapable/

The primary upstream git repository is this one:

    https://git.kernel.org/pub/scm/libs/libcap/libcap.git/

# BUILDING AND INSTALLATION

    $ make

       builds the library and the programs that are expected to work
       on your system. For example, if you have Linux-PAM installed,
       pam_cap is built. A golang installation is required to build
       the Go packages.

    $ make test

       runs all of the tests not requiring privilege

    $ make sudotest

       runs all of the tests including those that require privilege.

    $ sudo make install

       default installs the library libcap.XX.Y in /lib[64]/
       the binaries in /sbin/
       the header files in /usr/include
       the {libcap,libpsx}.pc files in /usr/lib[64]/pkgconfig
       the Go packages (if built) under /usr/share/gocode/src

For some example C programs look in the progs/ directory.
Specifically, capsh, getpcaps, setcap and getcap. There are some C
tests in the tests/ directory.

Go example programs are to be found in the goapps/ directory. There
are also some more complicated integration tests in the go/ directory.

There are also some oddball experimental things in the contrib/
directory, but they are mostly curiosities.

Cheers

Andrew G. Morgan <morgan@kernel.org>