/freebsd/crypto/openssh/.github/workflows/ |
H A D | selfhosted.yml | 1 name: C/C++ CI self-hosted 9 name: "${{ matrix.target }} ${{ matrix.config }}" 10 if: github.repository == 'openssh/openssh-portable-selfhosted' 11 runs-on: ${{ matrix.host }} 12 timeout-minutes: 600 17 TARGET_CONFIG: ${{ matrix.config }} 18 …IN: ${{ startsWith(matrix.host, 'libvirt') && format('{0}-{1}-{2}', matrix.target, matrix.config, … 25 fail-fast: false 26 # We use a matrix in two parts: firstly all of the VMs are tested with the 27 # default config. "target" corresponds to a label associated with the [all …]
|
H A D | c-cpp.yml | 5 …m4', '**.sh', '**/Makefile.in', 'configure.ac', '.github/configs', '.github/workflows/c-cpp.yaml' ] 7 …m4', '**.sh', '**/Makefile.in', 'configure.ac', '.github/configs', '.github/workflows/c-cpp.yaml' ] 11 name: "${{ matrix.target }} ${{ matrix.config }}" 12 if: github.repository != 'openssh/openssh-portable-selfhosted' 14 fail-fast: false 18 - ubuntu-20.04 19 - ubuntu-22.04 20 - macos-12 21 - macos-13 22 - macos-14 [all …]
|
/freebsd/crypto/openssh/ |
H A D | freebsd-configure.sh | 5 --prefix=/usr 6 --sysconfdir=/etc/ssh 7 --with-pam 8 --with-ssl-dir=/usr 9 --without-tcp-wrappers 10 --with-libedit 11 --with-ssl-engine 12 --without-xauth 15 set -e 21 (cd $openssh && libtoolize --copy && autoheader && autoconf) [all …]
|
/freebsd/contrib/tcsh/ |
H A D | Ported | 5 find it out-of-date, or you have additions or changes, please let me know. 14 LIBES : -ltermcap 16 CONFIG : sunos* 18 NOTES : Don't compile with /usr/5bin/cc 25 LIBES : -lcurses -lsocket -lnsl 27 CONFIG : sol* 29 NOTES : The sunpro compiler cannot compile tcsh with -O, it crashes 30 : on some files. In any case do not use -O with any of the 41 LIBES : -lcurses -lsocket -lnsl 43 CONFIG : sol26 [all …]
|
/freebsd/tests/ |
H A D | conftest.py | 10 def set_handler(config): argument 12 DEFAULT_HANDLER = ATFHandler(report_file_name=config.option.atf_file) 23 # Add meta-values 26 "--atf-source-dir", 32 "--atf-cleanup", 40 "--atf", 46 "--atf-file", 54 def atf_vars() -> Dict[str, str]: 59 def pytest_configure(config): argument 60 if config.option.help: [all …]
|
/freebsd/share/examples/sound/oss/ |
H A D | audio.c | 2 * SPDX-License-Identifier: BSD-2-Clause 10 * Redistribution and use in source and binary forms, with or without 17 * documentation and/or other materials provided with the distribution. 46 /* Format can be unsigned, in which case replace S with U */ 68 typedef struct config { struct 84 * Error state is indicated by value=-1 in which case application exits with 90 if (value == -1) in check_error() 114 oss_split(config_t *config, sample_t *input, sample_t *output) in oss_split() argument 118 for (i = 0; i < config->sample_count; ++i) { in oss_split() 119 channel = i % config->channels; in oss_split() [all …]
|
/freebsd/stand/lua/ |
H A D | config.lua.8 | 2 .\" SPDX-License-Identifier: BSD-2-Clause 6 .\" Redistribution and use in source and binary forms, with or without 13 .\" documentation and/or other materials provided with the distribution. 31 .Nm config.lua 32 .Nd FreeBSD config module 39 it must be included with a statement such as the following: 41 .Dl local config = require("config") 45 .Bl -tag -width "config.setCarouselIndex(id, idx)" -offset indent 46 .It Fn config.getCarouselIndex id 51 for a more in-depth explanation of carousels. [all …]
|
H A D | config.lua | 1 -- 2 -- SPDX-License-Identifier: BSD-2-Clause 3 -- 4 -- Copyright (c) 2015 Pedro Souza <pedrosouza@freebsd.org> 5 -- Copyright (c) 2018 Kyle Evans <kevans@FreeBSD.org> 6 -- All rights reserved. 7 -- 8 -- Redistribution and use in source and binary forms, with or without 9 -- modification, are permitted provided that the following conditions 10 -- are met: [all …]
|
/freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/ |
H A D | allocator_config.h | 1 //===-- allocator_config.h --------------------------------------*- C++ -*-===// 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 24 // aliasing the `Config` like: 27 // // The instance of Scudo will be initiated with `Config`. 28 // typedef CustomConfig Config; 29 // // Aliasing as default configuration to run the tests with this config. 72 template <typename Config> using PrimaryT = SizeClassAllocator64<Config>; 74 template <typename Config> using PrimaryT = SizeClassAllocator32<Config>; [all …]
|
/freebsd/contrib/llvm-project/lld/COFF/ |
H A D | LTO.cpp | 1 //===- LTO.cpp ------------------------------------------------------------===// 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 #include "Config.h" 25 #include "llvm/LTO/Config.h" 47 return lto::getThinLTOOutputFile(path, ctx.config.thinLTOPrefixReplaceOld, in getThinLTOOutputFile() 48 ctx.config.thinLTOPrefixReplaceNew); in getThinLTOOutputFile() 51 lto::Config BitcodeCompiler::createConfig() { in createConfig() 52 lto::Config c; in createConfig() [all …]
|
H A D | Driver.cpp | 1 //===- Driver.cpp ---------------------------------------------------------===// 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 #include "Config.h" 29 #include "llvm/Config/llvm-config.h" 51 #include "llvm/ToolDrivers/llvm-lib/LibDriver.h" 67 // This driver-specific context will be freed later by unsafeLldMain(). in link() 70 ctx->e.initialize(stdoutOS, stderrOS, exitEarly, disableOutput); in link() 71 ctx->e.logName = args::getFilenameWithoutExe(args[0]); in link() [all …]
|
/freebsd/contrib/kyua/engine/ |
H A D | config.cpp | 4 // Redistribution and use in source and binary forms, with or without 12 // documentation and/or other materials provided with the distribution. 29 #include "engine/config.hpp" 32 # include "config.h" 39 #include "utils/config/exceptions.hpp" 40 #include "utils/config/parser.hpp" 41 #include "utils/config/tree.ipp" 46 namespace config = utils::config; 59 /// entry to prevent collisions with the keys defined in here. 61 init_tree(config::tree& tree) in init_tree() [all …]
|
/freebsd/crypto/openssl/ |
H A D | configdata.pm.in | 1 #! {- $config{HASHBANGPERL} -} 2 # -*- mode: perl -*- 3 {- 6 # relative paths untrustable. Because the result is used with 'use lib', 23 # Start with spliting the native path 24 (my $vol, my $dirs, my $file) = File::Spec->splitpath($path); 25 my @dirs = File::Spec->splitdir($dirs); 29 $dirs = File::Spec::Unix->catdir('', $vol, @dirs); 30 $path = File::Spec::Unix->catpath('', $dirs, $file); 36 return _fixup_path(File::Spec->catdir($config{sourcedir}, @_)) [all …]
|
/freebsd/crypto/openssl/test/recipes/ |
H A D | 25-test_req.t | 2 # Copyright 2015-2024 The OpenSSL Project Authors. All Rights Reserved. 5 # this file except in compliance with the License. You can obtain a copy 27 @req_new = ("-newkey", "dsa:".srctop_file("apps", "dsa512.pem")); 29 @req_new = ("-new"); 38 # Check for duplicate -addext parameters, and one "working" case. 39 my @addext_args = ( "openssl", "req", "-new", "-out", "testreq.pem", 40 "-key", srctop_file("test", "certs", "ee-key.pem"), 41 "-confi [all...] |
/freebsd/contrib/llvm-project/lld/ELF/ |
H A D | LTO.cpp | 1 //===- LTO.cpp ------------------------------------------------------------===// 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 10 #include "Config.h" 25 #include "llvm/LTO/Config.h" 47 return lto::getThinLTOOutputFile(modulePath, config->thinLTOPrefixReplaceOld, in getThinLTOOutputFile() 48 config->thinLTOPrefixReplaceNew); in getThinLTOOutputFile() 51 static lto::Config createConfig() { in createConfig() 52 lto::Config c; in createConfig() [all …]
|
H A D | Driver.cpp | 1 //===- Driver.cpp ---------------------------------------------------------===// 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 19 // be harmful when you are doing cross-linking. Therefore, in LLD, we 23 //===----------------------------------------------------------------------===// 26 #include "Config.h" 53 #include "llvm/Config/llvm-config.h" 81 ConfigWrapper elf::config; member in elf 88 if (config->noinhibitExec) in errorOrWarn() [all …]
|
/freebsd/contrib/kyua/utils/config/ |
H A D | exceptions.cpp | 4 // Redistribution and use in source and binary forms, with or without 12 // documentation and/or other materials provided with the distribution. 29 #include "utils/config/exceptions.hpp" 31 #include "utils/config/tree.ipp" 34 namespace config = utils::config; 37 /// Constructs a new error with a plain-text message. 39 /// \param message The plain-text error message. 40 config::error::error(const std::string& message) : in error() 47 config::error::~error(void) throw() in ~error() 52 /// Constructs a new error with a plain-text message. [all …]
|
H A D | nodes.cpp | 4 // Redistribution and use in source and binary forms, with or without 12 // documentation and/or other materials provided with the distribution. 29 #include "utils/config/nodes.ipp" 35 #include "utils/config/exceptions.hpp" 36 #include "utils/config/keys.hpp" 39 namespace config = utils::config; 43 config::detail::base_node::~base_node(void) in ~base_node() 51 config::detail::inner_node::inner_node(const bool dynamic_) : in inner_node() 58 config::detail::inner_node::~inner_node(void) in ~inner_node() 66 /// Fills the given node with a copy of this node's data. [all …]
|
/freebsd/contrib/llvm-project/lld/MachO/ |
H A D | LTO.cpp | 1 //===- LTO.cpp --------- [all...] |
H A D | Driver.cpp | 1 //===- Driver.cpp ---------------------------------------------------------===// 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 10 #include "Config.h" 39 #include "llvm/Config/llvm-config.h" 65 std::unique_ptr<Configuration> macho::config; member in macho 69 // TODO: -r, -dylinker, -preload... in getOutputType() 74 switch (outputArg->getOption().getID()) { in getOutputType() 91 return entry->second; in findLibrary() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/COFF/ |
H A D | COFFObjcopy.cpp | 1 //===- COFFObjcopy.cpp --------- 157 handleArgs(const CommonConfig & Config,const COFFConfig & COFFConfig,Object & Obj) handleArgs() argument 322 executeObjcopyOnBinary(const CommonConfig & Config,const COFFConfig & COFFConfig,COFFObjectFile & In,raw_ostream & Out) executeObjcopyOnBinary() argument [all...] |
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/ELF/ |
H A D | ELFObjcopy.cpp | 1 //===- ELFObjcopy.cpp -----------------------------------------------------===// 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 90 "with x86_64 architecture"); in getNewShfFlags() 111 // If Sec's type is changed from SHT_NOBITS due to --set-section-flags, in setSectionType() 126 // may promote more non-ALLOC sections than GNU objcopy, but it is fine as in setSectionFlagsAndType() 127 // non-ALLOC SHT_NOBITS sections do not make much sense. in setSectionFlagsAndType() 157 static std::unique_ptr<Writer> createELFWriter(const CommonConfig &Config, in createELFWriter() argument 163 return std::make_unique<ELFWriter<ELF32LE>>(Obj, Out, !Config.StripSections, in createELFWriter() [all …]
|
/freebsd/usr.sbin/nscd/ |
H A D | config.c | 1 /*- 5 * Redistribution and use in source and binary forms, with or without 12 * documentation and/or other materials provided with the distribution. 40 #include "config.h" 70 return (strcmp((*((struct configuration_entry **)e1))->name, in configuration_entry_sort_cmp() 71 (*((struct configuration_entry **)e2))->name in configuration_entry_sort_cmp() 79 (*((struct configuration_entry **)e2))->name in configuration_entry_cmp() 86 return (strcmp((*((cache_entry *)e1))->params->entry_name, in configuration_entry_cache_mp_sort_cmp() 87 (*((cache_entry *)e2))->params->entry_name in configuration_entry_cache_mp_sort_cmp() 95 (*((cache_entry *)e2))->params->entry_name in configuration_entry_cache_mp_cmp() [all …]
|
/freebsd/contrib/googletest/docs/ |
H A D | pkgconfig.md | 3 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: 36 just -I flags (GoogleTest might require a macro indicating to internal headers [all …]
|
/freebsd/crypto/openssh/contrib/cygwin/ |
H A D | README | 11 If you are installing OpenSSH the first time, you can generate global config 14 /usr/bin/ssh-host-config 16 Note that this binary archive doesn't contain default config files in /etc. 17 That files are only created if ssh-host-config is started. 19 To support testing and unattended installation ssh-host-config got 22 usage: ssh-host-config [OPTION]... 24 --debug -d Enable shell's debug output. 25 --yes -y Answer all questions with "yes" automatically. 26 --no -n Answer all questions with "no" automatically. 27 --cygwin -c <options> Use "options" as value for CYGWIN environment var. [all …]
|