Attempt to un-break Windows builds with USE_LDAP.

The buildfarm shows this case is entirely broken, and I'm betting the
reason is lack of any include file.
This commit is contained in:
Tom Lane 2012-12-04 17:25:51 -05:00
parent ac99ca68d7
commit cdf498c5d7

View File

@ -38,10 +38,11 @@
#include "utils/memutils.h"
#ifdef USE_LDAP
#ifndef WIN32
#ifdef WIN32
#include <winldap.h>
#else
#include <ldap.h>
#endif
/* currently no Windows LDAP needed in this file */
#endif