]> git.proxmox.com Git - qemu.git/commit
qemu-ga: Fix missing environ declaration
authorLuiz Capitulino <lcapitulino@redhat.com>
Wed, 23 May 2012 18:48:05 +0000 (15:48 -0300)
committerMichael Roth <mdroth@linux.vnet.ibm.com>
Thu, 24 May 2012 18:06:33 +0000 (13:06 -0500)
commit2c02cbf6e929c20545b46feb5ecde9c86877198a
treef7bf0fcee7ae56fe999ad3564b825a0a7144f5b8
parent8ab1bf120d7fcf84f199679ad0d25acbc354c69c
qemu-ga: Fix missing environ declaration

Commit 3674838cd05268954bb6473239cd7f700a79bf0f uses the environ global
variable, but is relying on environ to be declared somewhere else.

This worked for me because on F16 environ is declared in <unistd.h>, but
that doesn't happen in OpenBSD for example, causing a build failure.

This commit fixes the build error by declaring environ if it hasn't
being declared yet.

Also fixes a build warning due to a missing <sys/wait.h> include.

Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
qga/commands-posix.c