Home
last modified time | relevance | path

Searched +full:pkg +full:- +full:config (Results 1 – 25 of 842) sorted by relevance

12345678910>>...34

/third_party/boost/tools/build/src/tools/
Dpkg-config.jam24 = pkg-config
25 The *pkg-config* program is used to retrieve information about installed
28 extension. The package name specified to *pkg-config* is defined to be the name
36 == Feature: `pkg-config`
38 Selects one of the initialized `pkg-config` configurations. This feature is
40 section <<pkg-config-init>>.
44 feature.feature pkg-config : : propagated ;
49 == Feature: `pkg-config-define`
51 This `free` feature adds a variable assignment to pkg-config invocation. For
55 ----
[all …]
/third_party/googletest/docs/
Dpkgconfig.md3 GoogleTest comes with pkg-config files that can be used to determine all
5 Pkg-config is a standardised plain-text format containing
7 * the includedir (-I) path
8 * necessary macro (-D) definitions
9 * further required flags (-pthread)
10 * the library (-L) path
11 * the library (-l) to link to
13 All current build systems support pkg-config in one way or another. For all
19 Using `pkg-config` in CMake is fairly easy:
40 just -I flags (GoogleTest might require a macro indicating to internal headers
[all …]
/third_party/icu/icu4c/source/
Daclocal.m41 # generated automatically by aclocal 1.15.1 -*- Autoconf -*-
3 # Copyright (C) 1996-2017 Free Software Foundation, Inc.
15 dnl pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*-
16 dnl serial 11 (pkg-config-0.29)
19 dnl Copyright © 2012-2015 Dan Nicholson <dbn.lists@gmail.com>
33 dnl Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
34 dnl 02111-1307, USA.
42 dnl PKG_PREREQ(MIN-VERSION)
43 dnl -----------------------
46 dnl Verify that the version of the pkg-config macros are at least
[all …]
/third_party/skia/third_party/externals/icu/source/
Daclocal.m41 # generated automatically by aclocal 1.15.1 -*- Autoconf -*-
3 # Copyright (C) 1996-2017 Free Software Foundation, Inc.
15 dnl pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*-
16 dnl serial 11 (pkg-config-0.29)
19 dnl Copyright © 2012-2015 Dan Nicholson <dbn.lists@gmail.com>
33 dnl Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
34 dnl 02111-1307, USA.
42 dnl PKG_PREREQ(MIN-VERSION)
43 dnl -----------------------
46 dnl Verify that the version of the pkg-config macros are at least
[all …]
/third_party/boost/tools/build/example/pkg-config/
Djamroot.jam9 using pkg-config : : : <libdir>packages ;
10 using pkg-config : debug : : <libdir>packages <path>debug-packages ;
13 import pkg-config ;
14 import property-set ;
19 project : requirements <variant>debug:<pkg-config>debug ;
22 pkg-config.import debugged ;
23 pkg-config.import foobar : requirements <version>>=0.3 ;
24 pkg-config.import mangled : requirements <conditional>@mangle-name ;
27 [ pkg-config.import versioned
28 : usage-requirements <conditional>@versioned-api
[all …]
/third_party/node/deps/npm/node_modules/init-package-json/
Dinit-package-json.js7 var def = require.resolve('./default-input.js')
16 var readJson = require('read-package-json')
25 function init (dir, input, config, cb) { argument
26 if (typeof config === 'function')
27 cb = config, config = {}
29 // accept either a plain-jane object, or a config object
31 if (typeof config.get !== 'function') {
32 var data = config
33 config = { variable
45 var pkg
[all …]
/third_party/node/deps/npm/lib/install/
Dsave.js3 const deepSortObject = require('../utils/deep-sort-object.js')
4 const detectIndent = require('detect-indent')
5 const detectNewline = require('detect-newline')
6 const fs = require('graceful-fs')
9 const moduleName = require('../utils/module-name.js')
11 const packageId = require('../utils/package-id.js')
12 const parseJSON = require('../utils/parse-json.js')
14 const stringifyPackage = require('stringify-package')
17 const writeFileAtomic = require('write-file-atomic')
19 // if the -S|--save option is specified, then write installed packages
[all …]
Dvalidate-args.js5 var npmInstallChecks = require('npm-install-checks')
13 var force = npm.config.get('force')
15 asyncMap(args, function (pkg, done) { argument
17 [hasMinimumFields, pkg],
18 [checkSelf, idealTree, pkg, force],
19 [isInstallable, idealTree, pkg]
24 function hasMinimumFields (pkg, cb) { argument
25 if (pkg.name === '' || pkg.name == null) {
26 return cb(new Error(`Can't install ${pkg._resolved}: Missing package name`))
27 } else if (pkg.version === '' || pkg.version == null) {
[all …]
Ddiff-trees.js4 var npa = require('npm-package-arg')
5 var flattenTree = require('./flatten-tree.js')
6 var isOnlyDev = require('./is-only-dev.js')
10 var moduleName = require('../utils/module-name.js')
11 var isOnlyOptional = require('./is-only-optional.js')
13 // we don't use get-requested because we're operating on files on disk, and
15 function pkgRequested (pkg) { argument
16 return pkg._requested || (pkg._resolved && npa(pkg._resolved)) || (pkg._from && npa(pkg._from))
41 function pkgIntegrity (pkg) { argument
44 var sri = (pkg.dist && pkg.dist.integrity) ||
[all …]
/third_party/glib/docs/reference/glib/
Dcompiling.xml2 <!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
5 <refentry id="glib-compiling" revision="17 Jan 2002">
25 <application>pkg-config</application> utility.
29 <application>pkg-config</application> is used (the actual output on
32 $ pkg-config --cflags glib-2.0
33 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include
34 $ pkg-config --libs glib-2.0
35 -L/usr/lib -lm -lglib-2.0
39 See the <ulink url="http://www.freedesktop.org/wiki/Software/pkg-config">pkg-config website</ulink>
[all …]
/third_party/node/deps/npm/lib/
Dbuild.js14 var fs = require('graceful-fs')
16 var readJson = require('read-package-json')
17 var binLinks = require('bin-links')
18 var binLinksConfig = require('./config/bin-links.js')
20 var writeFile = require('write-file-atomic')
38 global = npm.config.get('global')
42 readJson(path.resolve(npm.localPrefix, 'package.json'), function (er, pkg) { argument
43 if (!args.length && pkg && pkg.scripts && pkg.scripts.build) {
44 … log.warn('build', '`npm build` called with no arguments. Did you mean to `npm run-script build`?')
50 // in parallel generally munges up the output from node-waf
[all …]
Dfetch-package-metadata.js3 const deprCheck = require('./utils/depr-check')
7 const readPackageTree = require('read-package-tree')
10 const npa = require('npm-package-arg')
14 const limit = require('call-limit')
15 const tempFilename = require('./utils/temp-filename.js')
16 const replaceInfo = require('./utils/replace-info.js')
17 const isWindows = require('./utils/is-windows.js')
21 return (er, pkg) => {
28 return done(er, pkg)
32 const LRUCache = require('lru-cache')
[all …]
/third_party/freetype/builds/unix/
Dpkg.m41 # pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*-
2 # serial 1 (pkg-config-0.24)
18 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25 # PKG_PROG_PKG_CONFIG([MIN-VERSION])
26 # ----------------------------------
28 [m4_pattern_forbid([^_?PKG_[A-Z_]+$])
31 AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])
32 AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path])
33 AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path])
36 AC_PATH_TOOL([PKG_CONFIG], [pkg-config])
[all …]
/third_party/skia/third_party/externals/freetype/builds/unix/
Dpkg.m41 # pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*-
2 # serial 1 (pkg-config-0.24)
18 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25 # PKG_PROG_PKG_CONFIG([MIN-VERSION])
26 # ----------------------------------
28 [m4_pattern_forbid([^_?PKG_[A-Z_]+$])
31 AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])
32 AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path])
33 AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path])
36 AC_PATH_TOOL([PKG_CONFIG], [pkg-config])
[all …]
/third_party/node/deps/npm/test/tap/
Dconfig-list.js6 var common = require('../common-tap.js')
8 var pkg = common.pkg variable
9 var opts = { cwd: pkg, env: common.emptyEnv() }
10 var npmrc = path.resolve(pkg, '.npmrc')
18 rimraf.sync(pkg)
19 mkdirp.sync(pkg)
21 // Write per-project conf file
25 fs.writeFileSync(path.resolve(pkg, 'package.json'), '{}', 'utf8')
29 test('config list includes project config', function (t) {
31 ['config', 'list'],
[all …]
Dversion-from-git.js1 var common = require('../common-tap.js')
11 var pkg = common.pkg variable
12 var packagePath = path.resolve(pkg, 'package.json')
17 test('npm version from-git with a valid tag creates a new commit', function (t) {
24 npm.config.set('sign-git-commit', false)
25 npm.config.set('sign-git-tag', false)
26 npm.commands.version(['from-git'], checkVersion)
34 { cwd: pkg, env: process.env },
42 t.ok(log.indexOf(version) !== -1, 'commit was created')
47 test('npm version from-git with a valid tag updates the package.json version', function (t) {
[all …]
Dtag-version-prefix.js1 var common = require('../common-tap.js')
9 var pkg = common.pkg variable
10 var npmrc = path.resolve(pkg, '.npmrc')
11 var packagePath = path.resolve(pkg, 'package.json')
15 var configContents = 'sign-git-commit=false\nsign-git-tag=false\nmessage=":bookmark: %s"\n'
17 test('npm version <semver> with message config', function (t) {
20 npm.load({ prefix: pkg, userconfig: npmrc }, function () {
23 common.makeGitRepo({ path: pkg }, function (er) {
28 '--userconfig', npmrc,
29 'config',
[all …]
Dconfig-private.js6 var common = require('../common-tap.js')
8 var pkg = common.pkg variable
9 var opts = { cwd: pkg }
12 rimraf.sync(pkg)
13 mkdirp.sync(pkg)
17 test('config get private var (old auth)', function (t) {
20 'config',
35 test('config get private var (new auth)', function (t) {
38 'config',
53 test('config get public var (new username)', function (t) {
[all …]
/third_party/libsnd/m4/
Dextra_pkg.m41 # extra_pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*-
3 # Copyright (c) 2008-2012 Erik de Castro Lopo <erikd@mega-nerd.com>
18 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25 # --------------------------------------------------------------
26 # PKG_CHECK_MOD_VERSION(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND],
27 # [ACTION-IF-NOT-FOUND])
30 # is in the original pkg.m4 file. It prints the versions in the checking
31 # message (erikd@mega-nerd.com).
35 AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl
36 AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl
[all …]
/third_party/node/deps/npm/node_modules/update-notifier/
Dindex.js5 const importLazy = require('import-lazy')(require);
9 const semverDiff = importLazy('semver-diff');
10 const latestVersion = importLazy('latest-version');
11 const isNpm = importLazy('is-npm');
12 const isInstalledGlobally = importLazy('is-installed-globally');
14 const xdgBasedir = importLazy('xdg-basedir');
15 const isCi = importLazy('is-ci');
22 options.pkg = options.pkg || {};
24 // Reduce pkg to the essential keys. with fallback to deprecated options
26 options.pkg = {
[all …]
/third_party/python/
Daclocal.m41 # generated automatically by aclocal 1.16.3 -*- Autoconf -*-
3 # Copyright (C) 1996-2020 Free Software Foundation, Inc.
16 # https://www.gnu.org/software/autoconf-archive/ax_c_float_words_bigendian.html
21 # AX_C_FLOAT_WORDS_BIGENDIAN([ACTION-IF-TRUE], [ACTION-IF-FALSE], [ACTION-IF-UNKNOWN])
25 # Checks the ordering of words within a multi-word float. This check is
27 # word ordering can be different from the byte ordering. In a multi-word
28 # float context, "big-endian" implies that the word containing the sign
38 # this test byte-order agnostic. If grep finds the string "noonsees" in
39 # the object file, the target platform stores float words in big-endian
40 # order. If grep finds "seesnoon", float words are in little-endian order.
[all …]
/third_party/flutter/glfw/docs/
Dbuild.dox44 - Do _not_ include the OpenGL headers yourself, as GLFW does this for you
45 - Do _not_ include `windows.h` or other platform-specific headers unless you
47 - If you _do_ need to include such headers, do it _before_ including
116 GLFW is essentially a wrapper of various platform-specific APIs and therefore
123 hard-coded into your build environment. See the section for your development
124 environment below. On Linux and other Unix-like operating systems, the list
180 This adds all link-time dependencies of GLFW as it is currently configured,
261 @subsection build_link_pkgconfig With makefiles and pkg-config on Unix
263 GLFW supports [pkg-config](http://www.freedesktop.org/wiki/Software/pkg-config/),
264 and the `glfw3.pc` pkg-config file is generated when the GLFW library is built
[all …]
/third_party/flutter/skia/third_party/externals/sdl/visualtest/
Dacinclude.m410 dnl AM_PATH_SDL([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]])
15 dnl Get the cflags and libraries from the sdl2-config script
17 AC_ARG_WITH(sdl-prefix,[ --with-sdl-prefix=PFX Prefix where SDL is installed (optional)],
19 AC_ARG_WITH(sdl-exec-prefix,[ --with-sdl-exec-prefix=PFX Exec prefix where SDL is installed (optio…
21 AC_ARG_ENABLE(sdltest, [ --disable-sdltest Do not try to compile and run a test SDL program],
33 sdl_config_args="$sdl_config_args --exec-prefix=$sdl_exec_prefix"
35 SDL_CONFIG=$sdl_exec_prefix/bin/sdl2-config
39 sdl_config_args="$sdl_config_args --prefix=$sdl_prefix"
41 SDL_CONFIG=$sdl_prefix/bin/sdl2-config
48 SDL_CONFIG="pkg-config sdl2"
[all …]
/third_party/flutter/skia/third_party/externals/sdl/test/
Daclocal.m410 dnl AM_PATH_SDL([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]])
15 dnl Get the cflags and libraries from the sdl2-config script
17 AC_ARG_WITH(sdl-prefix,[ --with-sdl-prefix=PFX Prefix where SDL is installed (optional)],
19 AC_ARG_WITH(sdl-exec-prefix,[ --with-sdl-exec-prefix=PFX Exec prefix where SDL is installed (optio…
21 AC_ARG_ENABLE(sdltest, [ --disable-sdltest Do not try to compile and run a test SDL program],
33 sdl_config_args="$sdl_config_args --exec-prefix=$sdl_exec_prefix"
35 SDL_CONFIG=$sdl_exec_prefix/bin/sdl2-config
39 sdl_config_args="$sdl_config_args --prefix=$sdl_prefix"
41 SDL_CONFIG=$sdl_prefix/bin/sdl2-config
48 SDL_CONFIG="pkg-config sdl2"
[all …]
Dacinclude.m410 dnl AM_PATH_SDL([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]])
15 dnl Get the cflags and libraries from the sdl2-config script
17 AC_ARG_WITH(sdl-prefix,[ --with-sdl-prefix=PFX Prefix where SDL is installed (optional)],
19 AC_ARG_WITH(sdl-exec-prefix,[ --with-sdl-exec-prefix=PFX Exec prefix where SDL is installed (optio…
21 AC_ARG_ENABLE(sdltest, [ --disable-sdltest Do not try to compile and run a test SDL program],
33 sdl_config_args="$sdl_config_args --exec-prefix=$sdl_exec_prefix"
35 SDL_CONFIG=$sdl_exec_prefix/bin/sdl2-config
39 sdl_config_args="$sdl_config_args --prefix=$sdl_prefix"
41 SDL_CONFIG=$sdl_prefix/bin/sdl2-config
48 SDL_CONFIG="pkg-config sdl2"
[all …]

12345678910>>...34