Sha256: d6d8528e5138c84fb7851a600a3abcbe4608364d27ee1df37cbc6912aaad9e4f

Contents?: true

Size: 1.08 KB

Versions: 6

Compression:

Stored size: 1.08 KB

Contents

# Copyright 2020- Hiroshi Hatake

# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at

#     http://www.apache.org/licenses/LICENSE-2.0

# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

require "mkmf"
require "rbconfig"

libdir = RbConfig::CONFIG["libdir"]
includedir = RbConfig::CONFIG["includedir"]

dir_config("capng", includedir, libdir)

pkg_config("libcap-ng")
$CFLAGS << " -Wall -std=c99 -fPIC "
# $CFLAGS << " -g -O0"

have_const("CAPNG_SELECT_AMBIENT", "cap-ng.h")
have_const("CAPNG_SELECT_ALL", "cap-ng.h")
have_const("CAPNG_AMBIENT", "cap-ng.h")
have_const("CAPNG_INIT_SUPP_GRP", "cap-ng.h")
have_func("rb_sym2str", "ruby.h")
have_func("capng_get_caps_fd", "cap-ng.h")
create_makefile("capng/capng")

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
capng_c-0.2.2 ext/capng/extconf.rb
capng_c-0.2.1 ext/capng/extconf.rb
capng_c-0.2.0 ext/capng/extconf.rb
capng_c-0.1.8 ext/capng/extconf.rb
capng_c-0.1.7 ext/capng/extconf.rb
capng_c-0.1.6 ext/capng/extconf.rb