env-posix.cpp revision e593c0cb11d4eccdc28dcf82c9b8aac46c631371
/* $Id$ */
/** @file
* IPRT - Environment, Posix.
*/
/*
* Copyright (C) 2006-2007 Sun Microsystems, Inc.
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*
* The contents of this file may alternatively be used under the terms
* of the Common Development and Distribution License Version 1.0
* (CDDL) only, as it comes in the "COPYING.CDDL" file of the
* VirtualBox OSE distribution, in which case the provisions of the
* CDDL are applicable instead of those of the GPL.
*
* You may elect to license modified versions of this file under the
* terms and conditions of either the GPL or the CDDL or both.
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
* Clara, CA 95054 USA or visit http://www.sun.com if you need
* additional information or have any questions.
*/
/*******************************************************************************
* Header Files *
*******************************************************************************/
#ifdef RT_OS_DARWIN
#define __DARWIN_UNIX03 1
#endif
#include <stdlib.h>
#include <errno.h>
{
}
{
}
{
/** @todo putenv is a source memory leaks. deal with this on a per system basis. */
if (!putenv((char *)pszVarEqualValue))
return 0;
return RTErrConvertFromErrno(errno);
}
{
#if defined(_MSC_VER)
/* make a local copy and feed it to putenv. */
if (*pszValue)
else
{
}
return 0;
return RTErrConvertFromErrno(errno);
#else
return VINF_SUCCESS;
return RTErrConvertFromErrno(errno);
#endif
}
{
/* Check that it exists first. */
if (!RTEnvExist(pszVar))
return VINF_ENV_VAR_NOT_FOUND;
/* Ok, try remove it. */
#ifdef RT_OS_WINDOWS
/* Windows does not have unsetenv(). Clear the environment variable according to the MSN docs. */
char *pszBuf;
if (RT_FAILURE(rc))
return rc;
if (!rc)
return VINF_SUCCESS;
#else
/* This is the preferred function as putenv() like used above does neither work on Solaris nor on Darwin. */
return VINF_SUCCESS;
#endif
return RTErrConvertFromErrno(errno);
}