glib/build/win32/vs9
Tor Lillqvist 9af8b83211 Add GWin32InputStream and GWin32OutputStream classes
Correspond to GUnixInputStream and GUnixOutputStream. No true async
support though. But that is how the Win32 API is, for files not
explicitly opened for so-called overlapped IO.

The API to create these streams takes Win32 HANDLEs. Not file
descriptors, because file descriptors are specific to the C library
used. The user code and GLib might be using different C libraries.

Also add a test program for the new classes, and a gio-windows-2.0.pc
file.
2010-04-19 11:54:56 +03:00
..
.gitignore gitignore for win32 build stuff 2010-03-21 13:07:36 -05:00
gio.vcprojin Avoid much of duplication in lists of source files 2010-03-21 16:15:02 +02:00
glib-genmarshal.vcproj Drop empty Tool elements from the project files for clarity 2010-03-21 13:33:44 +02:00
glib.sln Update with new source files and dependencies 2010-03-20 13:32:37 +02:00
glib.vcprojin Filter out gatomic-gcc.c from the VS project sources 2010-03-22 15:55:11 +02:00
glib.vsprops Add GWin32InputStream and GWin32OutputStream classes 2010-04-19 11:54:56 +03:00
gmodule.vcproj Drop empty Tool elements from the project files for clarity 2010-03-21 13:33:44 +02:00
gobject.vcprojin Avoid much of duplication in lists of source files 2010-03-21 16:15:02 +02:00
gspawn-win32-helper-console.vcproj Drop empty Tool elements from the project files for clarity 2010-03-21 13:33:44 +02:00
gspawn-win32-helper.vcproj Drop empty Tool elements from the project files for clarity 2010-03-21 13:33:44 +02:00
gthread.vcproj Drop empty Tool elements from the project files for clarity 2010-03-21 13:33:44 +02:00
install.vcproj Further work on VS9 project files 2010-02-04 19:59:12 +02:00
Makefile.am Avoid much of duplication in lists of source files 2010-03-21 16:15:02 +02:00
README.txt Avoid much of duplication in lists of source files 2010-03-21 16:15:02 +02:00
testglib.vcproj Drop empty Tool elements from the project files for clarity 2010-03-21 13:33:44 +02:00

Note that all this is rather experimental.

This VS9 solution and the projects it includes are intented to be used
in a GLib source tree unpacked from a tarball. In a git checkout you
first need to use some Unix-like environment or manual work to expand
the .in files needed, mainly config.h.win32.in into config.h.win32 and
glibconfig.h.win32.in into glibconfig.h.win32. You will also need to
expand the .vcprojin files here into .vcproj files.

The only external dependency is proxy-libintl. Fetch the latest
proxy-libintl-dev zipfile from
http://ftp.gnome.org/pub/GNOME/binaries/win32/dependencies/ for 32-bit
builds, and correspondingly
http://ftp.gnome.org/pub/GNOME/binaries/win64/dependencies/ for 64-bit
builds. Set up the source tree as follows under some arbitrary top
folder <root>:

<root>\glib\<this-glib-source-tree>
<root>\vs9\<PlatformName>

*this* file you are now reading is thus located at
<root>\glib\<this-glib-source-tree>\build\win32\vs9\README.

<PlatformName> is either Win32 or x64, as in VS9 project files.

You should unpack the proxy-libintl-dev zip file into
<root>\vs9\<PlatformName>, so that for instance libintl.h end up at
<root>\vs9\<PlatformName>\include\libintl.h.

The "install" project will copy build results and headers into their
appropriate location under <root>\vs9\<PlatformName>. For instance,
built DLLs go into <root>\vs9\<PlatformName>\bin, built LIBs into
<root>\vs9\<PlatformName>\lib and GLib headers into
<root>\vs9\<PlatformName>\include\glib-2.0. This is then from where
project files higher in the stack are supposed to look for them, not
from a specific GLib source tree.

--Tor Lillqvist <tml@iki.fi>