search for: path_separator

Displaying 20 results from an estimated 65 matches for "path_separator".

2011 May 31
6
[PATCH 1/4] febootstrap: Look for insmod.static, mke2fs in /sbin
...bca 100644 --- a/configure.ac +++ b/configure.ac @@ -68,7 +68,8 @@ dnl For ArchLinux handler. AC_CHECK_PROG(PACMAN,[pacman],[pacman],[no]) dnl Required programs, libraries. -AC_PATH_PROG([INSMODSTATIC],[insmod.static],[no]) +AC_PATH_PROG([INSMODSTATIC],[insmod.static],[no], + [$PATH$PATH_SEPARATOR/sbin$PATH_SEPARATOR]) if test "x$INSMODSTATIC" = "xno" ; then AC_MSG_FAILURE([insmod.static program not found @@ -82,9 +83,10 @@ fi AC_DEFINE_UNQUOTED([INSMODSTATIC],["$INSMODSTATIC"], [Full path to the insmod.static program.]) -AC_PATH_PROG([MKE2FS],[mke2f...
2024 Mar 06
1
Call for testing: OpenSSH 9.7
...-V OpenSSH_9.6p1, OpenSSL 3.3.0-dev diff --git a/configure.ac b/configure.ac index fda092830..1aba65c00 100644 --- a/configure.ac +++ b/configure.ac @@ -2735,7 +2735,15 @@ AC_ARG_WITH([ssl-dir], else CPPFLAGS="-I${withval} ${CPPFLAGS}" fi - openssl_bin_PATH="${PATH}${PATH_SEPARATOR}${withval}/bin${PATH_SEPARATOR}${withval}/apps" + dnl Ensure specified openssl binary works, eg it can + dnl find its runtime libraries, before trying to use. + if test -x "${withval}/bin/openssl" && \ + "${withval}/bin/openssl" version >/dev/null 2&g...
2017 Oct 05
0
[PATCH] build: Don't test for qemu virtio-serial at configure time.
...er option was given: - [with_qemu="$default_qemu"] + [with_qemu=search] ) -AS_IF([test "x$with_qemu" = "xno"],[ - AC_MSG_WARN([qemu was disabled, libguestfs may not work at all]) - QEMU=no -],[ - AC_PATH_PROGS([QEMU],[$with_qemu],[no], - [$PATH$PATH_SEPARATOR/usr/sbin$PATH_SEPARATOR/sbin$PATH_SEPARATOR/usr/libexec]) - test "x$QEMU" = "xno" && AC_MSG_ERROR([qemu must be installed]) +AS_CASE([$with_qemu], + [no],[ + AC_MSG_WARN([qemu was disabled, libguestfs may not work at all]) + QEMU=no + ], + [sear...
2014 Jan 01
0
[PATCH] Allow ./configure --without-qemu.
...TH([qemu], [AS_HELP_STRING([--with-qemu="bin1 bin2 ..."], [set default QEMU binary @<:@default="[qemu-kvm] qemu-system-<host> qemu"@:>@])], - [], - [with_qemu="$default_qemu"]) -AC_PATH_PROGS([QEMU],[$with_qemu],[no], - [$PATH$PATH_SEPARATOR/usr/sbin$PATH_SEPARATOR/sbin$PATH_SEPARATOR/usr/libexec]) -test "x$QEMU" = "xno" && AC_MSG_ERROR([qemu must be installed]) -AC_DEFINE_UNQUOTED([QEMU],["$QEMU"],[Location of qemu binary.]) + dnl --with-qemu or --without-qemu: + [], + dnl neither option...
2024 Mar 07
1
Call for testing: OpenSSH 9.7
...ff --git a/configure.ac b/configure.ac > index fda092830..1aba65c00 100644 > --- a/configure.ac > +++ b/configure.ac > @@ -2735,7 +2735,15 @@ AC_ARG_WITH([ssl-dir], > else > CPPFLAGS="-I${withval} ${CPPFLAGS}" > fi > - openssl_bin_PATH="${PATH}${PATH_SEPARATOR}${withval}/bin${PATH_SEPARATOR}${withval}/apps" > + dnl Ensure specified openssl binary works, eg it can > + dnl find its runtime libraries, before trying to use. > + if test -x "${withval}/bin/openssl" && \ > + "${withval}/bin/openssl" versi...
2024 Mar 06
2
Call for testing: OpenSSH 9.7
On Thu, 7 Mar 2024 at 02:19, Damien Miller <djm at mindrot.org> wrote: > > > > On Tue, 5 Mar 2024, The Doctor wrote: > > > Showstopper problem! > > > > I want configure to work with /usr/local/bin/openssl and not /usr/bin/openssl > > You can use --with-ssl-dir for this. --with-ssl-dir=/foo will have > configure try /foo/bin/openssl and
2013 Apr 04
6
replacing mkdir -p
..."/blah/blah/blah/and/blah" $file_list = split($path, $file_separator) $paths = inline_template(''<% parent = nil %><%=@file_list.collect{ |file| parent.nil? ? parent = "#{@file_separator}":parent = "#{parent}#{file}#{@file_separator}"}.join(@path_separator) %>'') $path_list = split($paths, $path_separator) file{$path_list: ensure => directory, } This works great.... once. Then you get errors like: Error: Duplicate declaration: File[/] If there anyway to trim down the produced array by removing the resourc...
2014 Mar 07
2
[PATCH] Disable gnulib tests by default
...IB_TESTS +SUBDIRS += gnulib/tests +endif # Basic source for the library. SUBDIRS += tests/data generator src examples po diff --git a/configure.ac b/configure.ac index afc6718..97c2c70 100644 --- a/configure.ac +++ b/configure.ac @@ -1553,6 +1553,14 @@ dnl For search paths. AC_DEFINE_UNQUOTED([PATH_SEPARATOR],["$PATH_SEPARATOR"], [Character that separates path elements in search paths]) +AC_ARG_ENABLE([gnulib-tests], + [AS_HELP_STRING([--disable-gnulib-tests], + [disable running GNU Portability library tests @<:@default=yes@:>@])], + [ENABLE_GNULIB...
2019 May 04
4
[PATCH] configure.ac: Add mandoc as valid formatter
Hi, On systems that have mandoc installed but are missing an nroff binary, the configure script will fall back to pre-formatted manual pages despite the fact that mandoc could be used. The proposed patch adds mandoc as a valid formatter to configure.ac. As mandoc supports the -mdoc flag, it can simply be added to the list of nroff-like binaries. Wolfgang -------------- next part --------------
2023 Jun 28
1
LINUX SuSE15.4 (GNU & Intel) compiler problem in "configure" file
...figure step (below) ## Export LD_LIBRARY_PATH or equivalent. if eval "test -z \"\*${*${Rshlibpath_var}*}*\""; then eval "${Rshlibpath_var}=\"${R_LD_LIBRARY_PATH}\"" else eval "${Rshlibpath_var}=\"${R_LD_LIBRARY_PATH}${PATH_SEPARATOR}\${${Rshlibpath_var}}\"" fi *And offers a clean pre-compilation result as*: R is now configured for x86_64-pc-none Source directory: . Installation directory: /opt/R/v4.3.1 C compiler: gcc -g -O2 Fortran fixed-form compi...
2013 Aug 19
5
[PATCH v2 0/3 supermin] URPMI & xz support.
Joseph, Please try my modified versions of these patches. These are compile-tested on Fedora and they don't break any existing functionality, but I don't have either urpmi nor a statically-linked xz so I cannot fully test them. I have also fixed detection of zlib (2/3). Rich.
2007 Oct 10
3
NDOutils ./configure results; do I need gcc?
...39; LIBOBJS='' LIBS='' LIBWRAPLIBS='' LTLIBOBJS='' MOD_CFLAGS='' MOD_LDFLAGS='' OBJEXT='' OTHERLIBS='' PACKAGE_BUGREPORT='' PACKAGE_NAME='' PACKAGE_STRING='' PACKAGE_TARNAME='' PACKAGE_VERSION='' PATH_SEPARATOR=':' SET_MAKE='' SHELL='/bin/sh' SOCKETLIBS='' ac_ct_CC='' bindir='${exec_prefix}/bin' build='i686-pc-linux-gnu' build_alias='' build_cpu='i686' build_os='linux-gnu' build_vendor='pc' datadir='${prefix}/share...
2007 Oct 30
1
Difficulty Compiling RSQLite on Solaris x86 Using Studio 12 Compilers
...ECHO_C='' ECHO_N='-n' ECHO_T='' EXEEXT='' LDFLAGS='' LIBOBJS='' LIBS='' LTLIBOBJS='' OBJEXT='' PACKAGE_BUGREPORT='' PACKAGE_NAME='' PACKAGE_STRING='' PACKAGE_TARNAME='' PACKAGE_VERSION='' PATH_SEPARATOR=':' PKG_CPPFLAGS='' PKG_LIBS='' SHELL='/bin/bash' See the man page dmake(1) for more information on setting up the .dmakerc file. See the man page dmake(1) for more information on setting up the .dmakerc file. See the man page dmake(1) for more information on setting...
2004 Nov 08
3
Comments on the R-2.0.0 release (PR#7351)
...kages that failed to compile for the same reason: the list of standard locations that is searched at configure time for X11 libraries is out-of-date. The R-2.0.0 configure.ac script has this snippet: for dir in /usr/bin/X11 /usr/X11R6/bin /usr/openwin/bin; do r_xtra_path="${r_xtra_path}${PATH_SEPARATOR}${dir}" done However, it does not seem to have an analogue for the corresponding lib directory. Also, on some systems, I had to switch from using the native C/C++ compilers to GNU gcc/g++. R-2.0.0 has failed to build on these systems: Apple PowerPC G4 1.4GHz Darwin 7.3.0 (MacOS 10.3.2 (7...
2016 Nov 11
0
[PATCH] configure: Look for dpkg* only in /usr/bin, /bin
...because configure had chosen the wrong binary. --- configure.ac | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/configure.ac b/configure.ac index 3a0d25d..72ffb92 100644 --- a/configure.ac +++ b/configure.ac @@ -110,10 +110,10 @@ AC_PATH_PROG(URPMI,[urpmi],[no], [$PATH$PATH_SEPARATOR/usr/sbin]) dnl For Debian handler. AC_PATH_PROG(APT_GET,[apt-get],[no]) -AC_PATH_PROG(DPKG,[dpkg],[no]) -AC_PATH_PROG(DPKG_DEB,[dpkg-deb],[no]) -AC_PATH_PROG(DPKG_QUERY,[dpkg-query],[no]) -AC_PATH_PROG(DPKG_DIVERT,[[dpkg-divert]],[no]) +AC_PATH_PROG(DPKG,[dpkg],[no],[/usr/bin:/bin]) +AC_PATH_PR...
2017 May 04
0
Re: [PATCH v1 1/2] appliance: search all types of appliances for each path separately
...iance) > +{ > + const char *pelem = g->path; > + > + /* Note that if g->path is an empty string, we want to check the > + * current directory (for backwards compatibility with > + * libguestfs < 1.5.4). > + */ > + do { > + size_t len = strcspn (pelem, PATH_SEPARATOR); > + /* Empty element or "." means current directory. */ > + char *path = (len == 0) ? safe_strdup (g, ".") : > + safe_strndup (g, pelem, len); Better to use: CLEANUP_FREE char *path = ... etc ... and drop the call to free (path)...
2007 Nov 22
1
Installation problem of SAMBA 3.0.23a on HP-UX 11.23
...IBUNWIND_PTRACE='' LTLIBOBJS='' NSCD_LIBS='' NSSSONAMEVERSIONSUFFIX='' OBJEXT='' PACKAGE_BUGREPORT='' PACKAGE_NAME='' PACKAGE_STRING='' PACKAGE_TARNAME='' PACKAGE_VERSION='' PAM_MODULES='' PASSDB_LIBS='' PATH_SEPARATOR=':' PDB_MODULES='' PDB_STATIC='' PERL='' PICFLAGS='' PICSUFFIX='' PIE_CFLAGS='' PIE_LDFLAGS='' POPTLIBS='' PRINT_LIBS='' PYTHON='' ROFF='' RPC_MODULES='' RPC_STATIC='' SHELL='/bin/sh&...
2015 Feb 06
2
Fwd: Waiting for Reply regarding "TestCases Failure"
...'o' OTOOL64='' OTOOL='' PACKAGE='xapian-core' PACKAGE_BUGREPORT='http://xapian.org/bugs' PACKAGE_NAME='xapian-core' PACKAGE_STRING='xapian-core 1.3.2' PACKAGE_TARNAME='xapian-core' PACKAGE_URL='' PACKAGE_VERSION='1.3.2' PATH_SEPARATOR=':' PERCENT='%' PERL='/usr/bin/perl' PNGCRUSH='/usr/bin/pngcrush' RANLIB='ranlib' RST2HTML='/usr/bin/rst2html' SED='/bin/sed' SET_MAKE='' SHELL='/bin/bash' SHLIBEXT='.so' STRIP='strip' USE_WIN32_UUID_API_FALSE=&...
2015 Sep 25
2
Build of supermin 5 on Ubuntu 14.04 LTS
...esac; expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" ' export as_echo_n_body as_echo_n='sh -c $as_echo_n_body as_echo' fi export as_echo_body as_echo='sh -c $as_echo_body as_echo' fi # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # IFS # We need space, tab and new line, i...
2008 Jun 10
7
error compiling fc9 x64
...RY='' MINGWAR='' NASLIBS='' OBJEXT='' OPENGLFILES='' OPENGL_LIBS='' PACKAGE_BUGREPORT='wine-devel at winehq.org' PACKAGE_NAME='Wine' PACKAGE_STRING='Wine 1.0-rc3' PACKAGE_TARNAME='wine' PACKAGE_VERSION='1.0-rc3' PATH_SEPARATOR=':' PKG_CONFIG='' PRELINK='' QUARTZFILES='' RANLIB='' RESOLVLIBS='' RSVG='' SANEINCL='' SECURITYLIB='' SET_MAKE='' SHELL='/bin/sh' SOCKETLIBS='' STRIP='' TOOLSDIR='' WIN16_FILES='$(WI...