1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-22 12:22:45 +03:00

Integrated ODBC driver into regular build. No more standalone business,

which didn't work anyway. Had to back out unixodbc related patch which
broke the regular ODBC build.
This commit is contained in:
Peter Eisentraut
2000-06-19 16:58:48 +00:00
parent e3b37462c2
commit 81b30f2cb4
19 changed files with 612 additions and 6354 deletions

View File

@@ -21,16 +21,14 @@
#endif
#ifndef WIN32
#include <string.h>
#include "gpps.h"
#ifndef HAVE_SQL_GET_PRIV_PROFILE
#define SQLGetPrivateProfileString(a,b,c,d,e,f) GetPrivateProfileString(a,b,c,d,e,f)
#define SQLWritePrivateProfileString(a,b,c,d) WritePrivateProfileString(a,b,c,d)
#endif
#ifndef HAVE_STRICMP
#define stricmp(s1,s2) strcasecmp(s1,s2)
#define strnicmp(s1,s2,n) strncasecmp(s1,s2,n)
#endif
# include <string.h>
# include "gpps.h"
# define SQLGetPrivateProfileString(a,b,c,d,e,f) GetPrivateProfileString(a,b,c,d,e,f)
# define SQLWritePrivateProfileString(a,b,c,d) WritePrivateProfileString(a,b,c,d)
# ifndef HAVE_STRICMP
# define stricmp(s1,s2) strcasecmp(s1,s2)
# define strnicmp(s1,s2,n) strncasecmp(s1,s2,n)
# endif
#endif
#include "dlg_specific.h"