Try to fix OSF1 (TRU64).

git-svn-id: svn://10.0.0.236/trunk@143906 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
brendan%mozilla.org
2003-06-19 00:47:31 +00:00
parent d7802d0a4c
commit 3ef3f5d52e

View File

@@ -2012,7 +2012,7 @@ env_setProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp)
return JS_FALSE;
name = JS_GetStringBytes(idstr);
value = JS_GetStringBytes(valstr);
#if defined XP_WIN || defined HPUX
#if defined XP_WIN || defined HPUX || defined OSF1
{
char *waste = JS_smprintf("%s=%s", name, value);
if (!waste) {
@@ -2020,8 +2020,14 @@ env_setProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp)
return JS_FALSE;
}
rv = putenv(waste);
#ifndef HPUX
/* XXX hpux9 at least still has the bad old non-copying putenv */
#if !defined HPUX && !defined OSF1
/*
* HPUX9 at least still has the bad old non-copying putenv.
*
* Per mail from <s.shanmuganathan@digital.com>, OSF1 also has a putenv
* that will crash if you pass it an auto char array (so it must place
* its argument directly in the char *environ[] array).
*/
free(waste);
#endif
}