gtk/gtkapplication.c: Don't Include unistd.h Unconditionally

This header, which is not universally available, is accidently made to be
included unconditionally during the refactoring of gtkapplication.c,
so restore the #ifdef check.
This commit is contained in:
Chun-wei Fan 2013-12-26 16:15:10 +08:00
parent 66381cfd5d
commit adb0d2adac

View File

@ -23,7 +23,11 @@
#include "gtkapplication.h"
#include <stdlib.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#include <string.h>
#include "gtkapplicationprivate.h"