summaryrefslogtreecommitdiff
path: root/win32/VC10/config.h
Commit message (Collapse)AuthorAgeFilesLines
* Remove broken Visual Studio 2010 supportNick Wellnhofer2022-03-011-121/+0
|
* Large batch of typo fixesJared Yanovich2019-09-301-1/+1
| | | | Closes #109.
* Remove unused AC_CHECKsNick Wellnhofer2017-11-271-1/+0
|
* Fix the Windows header messNick Wellnhofer2017-10-091-5/+0
| | | | | | | | | | | | Don't include windows.h and wsockcompat.h from config.h but only when needed. Don't define _WINSOCKAPI_ manually. This was apparently done to stop windows.h from including winsock.h which is a problem if winsock2.h wasn't included first. But on MinGW, this causes compiler warnings. Define WIN32_LEAN_AND_MEAN instead which has the same effect. Always use the compiler-defined _WIN32 macro instead of WIN32.
* win32\VC10\config.h and VS 2015Bruce Dawson2016-03-111-0/+2
| | | | | | | | | | | --047d7bacb4ee71848a052d7c673a Content-Type: text/plain; charset=UTF-8 The config.h file in win32\VC10 is incompatible with VS 2015 because VS 2015 provides an implementation of snprintf and prohibits using the preprocessor to define it. Therefor an ifdef check is needed around that definition in VC10\config.h. Here is a patch that is compatible with the change that we made to Chromium's copy:
* Allow to compile with Visual Studio 2010Thomas Lemm2012-05-091-0/+125
For https://bugzilla.gnome.org/show_bug.cgi?id=666491 This patch adds project files to compile and debug libxml2 using Visual Studio 2010. Only few minor changes have been made to the actual source code. This patch also requires for the iconv package to be compiled with visual studio 2010 which has been submitted to the iconv project (see: https://savannah.gnu.org/bugs/?35088)