Ignore generated config.h properly on Unix

This commit is contained in:
Berke Viktor
2012-10-27 01:26:32 +02:00
parent aae8c393ed
commit a98dc18d55
18 changed files with 39 additions and 14 deletions

View File

@ -32,7 +32,11 @@
#endif
#undef PACKAGE
#include "../../config.h" /* for #define OLD_PERL */
#ifdef WIN32
#include "../../config-win32.h" /* for #define OLD_PERL */
#else
#include "../../config.h"
#endif
#include "hexchat-plugin.h"
static xchat_plugin *ph; /* plugin handle */