similar to: Gnulib setenv on Mac OS X bug?

Displaying 20 results from an estimated 100 matches similar to: "Gnulib setenv on Mac OS X bug?"

2017 Jun 12
0
AIX lacks getopt_long
* As a test I added the 'struct option' to the file needing it, and this confirmed the need for getopt_long() which AIX libc.a does not include. * p.s. I ran this dry-run from the "root" directory, perhaps it would be better from the ./src directory --- src/x071-test/src/doveadm/doveadm-cmd.c 2017-06-12 06:10:53 +0000 +++ src/AIX-port/src/doveadm/doveadm-cmd.c
2005 Sep 30
1
Apache SetEnv and fastcgi
Am I correct to assume that SetEnv does not work with mod_fastcgi on apache 1.3.x? I''m trying to setup two virtual hosts for the same application, one in development mode and the other in production. Any other tricks for setting RAILS_ENV from the webserver? _______________________________________________ Rails mailing list Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org
2002 Jun 27
0
[Bug 305] New: openssh-3.4p1/openbsd-compat/setenv.c lacks include
http://bugzilla.mindrot.org/show_bug.cgi?id=305 Summary: openssh-3.4p1/openbsd-compat/setenv.c lacks include Product: Portable OpenSSH Version: -current Platform: Sparc OS/Version: SunOS Status: NEW Severity: normal Priority: P3 Component: Miscellaneous AssignedTo: openssh-unix-dev at mindrot.org
2009 Nov 25
1
[PATCH] daemon/Win32: Replace setenv with Win32 equivalent.
-- Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones virt-df lists disk usage of guests without needing to install any software inside the virtual machine. Supports Linux and Windows. http://et.redhat.com/~rjones/virt-df/ -------------- next part -------------- >From bbcbfb99656f5de9b8f9e42aa4fba0f733a11b54 Mon Sep 17 00:00:00 2001 From: Richard Jones <rjones at
2010 Mar 22
1
[PATCH] Mac OS X: Use gnulib setenv module explicitly.
-- Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones Read my programming blog: http://rwmj.wordpress.com Fedora now supports 80 OCaml packages (the OPEN alternative to F#) http://cocan.org/getting_started_with_ocaml_on_red_hat_and_fedora -------------- next part -------------- >From 9bee2a49cec265221d6e8dc3e19a45c38f10f8a0 Mon Sep 17 00:00:00 2001 From: Richard
2002 Jun 28
0
[Bug 305] openssh-3.4p1/openbsd-compat/setenv.c lacks include
http://bugzilla.mindrot.org/show_bug.cgi?id=305 mouring at eviladmin.org changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED ------- Additional Comments From mouring at eviladmin.org
2019 Aug 02
0
[nbdkit PATCH 2/3] sh: Avoid setenv after fork
setenv() is not async-signal-safe and as such should not be used between fork/exec of a multi-threaded app: if one thread is manipulating the current environment (which may entail obtaining a malloc() mutex) when another thread calls fork(), the resulting child's attempt to use setenv() could deadlock or see a broken environ because the thread owning the lock no longer exists to release it.
2008 Jan 17
2
Setenv missing
When I tried to use the setenv command to set the default text editor for subversion, I found it was missing how can I install it or enable it in CentOS 5 -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.centos.org/pipermail/centos/attachments/20080117/f78f52e5/attachment-0002.html>
2020 Aug 28
0
Evaluate values in `Sys.setenv`
It is the shell that does the ~ and $ expansions, and Sys.setenv() doesn't go via the shell, so you cannot expect it to understand the shell metacharacters. Instead, you need to do the corresponding computations in R, e.g. > paste(path.expand("~/mypath"), Sys.getenv("PATH"), sep=":") [1]
2014 Nov 19
0
systemd.setenv and a mount.unit
Hi there! Another challenge... I'm using btrfs. So i make snapshots from my system. And in a script, I make a symlink (for example: @system.CURRENT and @system.LAST) for the current and the last snapshot. So i want to add 2 entries in grub2 from which i can boot into the current and the last snapshot. I tried to pass an environmental variable with
2022 Jan 10
3
[Bug 3379] New: Config parser only allows SetEnv once
https://bugzilla.mindrot.org/show_bug.cgi?id=3379 Bug ID: 3379 Summary: Config parser only allows SetEnv once Product: Portable OpenSSH Version: 8.8p1 Hardware: All OS: All Status: NEW Severity: normal Priority: P5 Component: ssh Assignee: unassigned-bugs at mindrot.org
2013 Jan 29
0
Setting -sys.setenv()- permanently in Linux using RStudio
> sessionInfo()R version 2.15.2 (2012-10-26) Platform: i686-pc-linux-gnu (32-bit) locale: [1] LC_CTYPE=en_GB.UTF-8 LC_NUMERIC=C LC_TIME=en_GB.UTF-8 [4] LC_COLLATE=en_GB.UTF-8 LC_MONETARY=en_GB.UTF-8 LC_MESSAGES=en_GB.UTF-8 [7] LC_PAPER=C LC_NAME=C LC_ADDRESS=C [10] LC_TELEPHONE=C LC_MEASUREMENT=en_GB.UTF-8 LC_IDENTIFICATION=C attached base packages:
2018 Nov 16
2
Conflicting TERM env var with SetEnv feature.
On 17/11/18 12:32 am, Raphael Medaer wrote: > Actually if you use "-o" it's also overridden. Looking at sshd > logging, it seems that the env var is overridden because of session > mechanism (aka "not ordering of parameter source"). > Thus is it a non-issue due to priority of configuration source ? Does > it mean that the priority is "env var" >
2022 May 21
4
[Bug 3438] New: env var that is SetEnv'ed multiple times in the same SetEnv directive, is sent/printed several times
https://bugzilla.mindrot.org/show_bug.cgi?id=3438 Bug ID: 3438 Summary: env var that is SetEnv'ed multiple times in the same SetEnv directive, is sent/printed several times Product: Portable OpenSSH Version: v9.0p1 Hardware: Other OS: Linux Status: NEW Severity: normal
2019 Aug 02
1
Re: [nbdkit PATCH 2/3] sh: Avoid setenv after fork
On Thu, Aug 01, 2019 at 10:42:58PM -0500, Eric Blake wrote: > setenv() is not async-signal-safe and as such should not be used > between fork/exec of a multi-threaded app: if one thread is > manipulating the current environment (which may entail obtaining a > malloc() mutex) when another thread calls fork(), the resulting > child's attempt to use setenv() could deadlock or see a
2004 Feb 08
3
Re: klibc - setenv broken
Kay Sievers wrote: > Hi, > this simple program compiled with klibc: > > #include <stdio.h> > int main(int argc, char* argv[]) > { > setenv("TESTENV", "happy", 1); > printf("TESTENV='%s'\n", getenv("TESTENV")); > } > > prints: > > ./env > TESTENV='(null)' > >
2020 Aug 28
2
Evaluate values in `Sys.setenv`
Hi all, I would like to know if there is any way to evaluate the values in `Sys.setenv` before setting the environment variables. For example, if we want to add a path to the environment variable `PATH`, we can do this in a terminal ``` > export PATH=~/mypath:$PATH > echo $PATH /Users/jeff/mypath:... ``` However, this style of assignment is not allowed in `Sys.setenv`, it treats its
2018 Nov 23
4
Conflicting TERM env var with SetEnv feature.
On 22/11/18 10:09 pm, Philipp Marek wrote: > if it happens that your local terminal emulation is not available > on the remote machine(s), what would be the right place to fix it? Is it a trick question?? Isn't the remote machine the only place that you can fix ?? Setting TERM on the local machine won't magically make a Wyse 60 understand VT220 control codes. Why not wrap ssh
2010 Jul 21
0
Samba install on AIX
ibm68p0:/home/b08chm/m4/m4-1.4.14] # oslevel -s 6100-04-02-1007 [ibm68p0:/home/b08chm/m4/m4-1.4.14] # $ make make all-recursive Making all in . Target "all-am" is up to date. Making all in examples Target "all" is up to date. Making all in lib rm -f alloca.h-t alloca.h && { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; cat
2015 Feb 03
2
Fwd: Waiting for Reply regarding "TestCases Failure"
---------- Forwarded message ---------- From: Saad Ahmed <ch.saad.ahmed at gmail.com> Date: 3 February 2015 at 21:10 Subject: Waiting for Reply regarding "TestCases Failure" To: Xapian Development <xapian-devel at lists.xapian.org> I have been waiting for reply regarding any further steps to take. Following are the outputs of commands that you asked me to run. All these