Low-level core library that forms the basis for projects such as GTK+ and GNOME.
Go to file
Tor Lillqvist 2bb80a1209 Make g-ir-scanner work on Windows. Still problems with the typelib code.
2008-08-27  Tor Lillqvist  <tml@novell.com>

	Make g-ir-scanner work on Windows. Still problems with the typelib
	code. Changes okayed by jdahlin.

	* configure.ac: Check for Windows, set Automake conditional
	OS_WIN32. Change backslashes to forward slashes in pyexecdir to
	avoid shell quoting issues
	
	* girepository/Makefile.am: Use -no-undefined so that libtool
	agrees to build a shared library on Windows.

	* girepository/girparser.c (backtrace_stderr): No backtrace() on
	Windows. Empty implementation on Windows so far.

	* girepository/gtypelib.c (g_typelib_check_sanity): Give more
	informative error message for the assertion failures. Tell also
	what the expected size of the struct is. Check all sizes first and
	fail afterwards if at least one size was different from expected.

	* tools/Makefile.am: Reorder libraries into proper logical
	dependency order.

	* tools/generate.c: Don't include <dlfcn.h>, not used.

	* giscanner/Makefile.am: On Windows, link with the Python library,
	and install the module DLL as _giscanner.pyd. Remove the
	unnecessary import library and libtool library that libtool has
	installed.

	* giscanner/scannerlexer.l: Recognize the gcc __attribute__ syntax
	and just skip it. Recognize also two "l" suffixes for long long
	constants. Recognize also __inline__.

	* giscanner/grealpath.h (g_realpath): Implement on Windows, using
	GetFullPathName(). As such, GetFullPathName() does more than the
	UNIX realpath(). It also changes relative paths into absolute
	paths. But for our purposes that shouldn't matter.

	* giscanner/giscannermodule.c (pygi_source_scanner_parse_file): On
	Windows the file descriptor passed to us is from Python. Python
	Python2.5 uses the msvcr71.dll C library, while mingw-built code
	uses msvcrt.dll. On Windows, file descriptors are specific to
	which C library is used. So we must find out what underlying OS
	handle corresponds to the file descriptor Python passes us, and
	then make that into a file descriptor valid for the C library this
	code uses.

	* giscanner/sourcescanner.py (_parse): Don't need to bypass
	__attribute__ as the lexer now handles it. The definition as empty
	was ineffective for mingw anyway, as mingw's _mingw.h undefines
	__attribute__. Close the temp file before unlinking it.

	* giscanner/cgobject.py: Use correct library name for the gobject
	DLL on Windows.

	* gir/Makefile.am: Must pass the full basename of the DLLs on
	Windows to g-ir-scanner. It's a bit ugly that we have to "know"
	that the names of the GLib DLLs are like libglib-2.0-0.dll, but in
	reality they won't change, until there is a GLib 3, and then also
	the Unix code here needs changing.

	Must pass CPPFLAGS to g-ir-scanner when building GLib.gir so that
	libintl.h is found.


svn path=/trunk/; revision=503
2008-08-27 13:33:21 +00:00
ginfo.c Redo signature_offset to be cleaner and correct for vfuncs 2008-08-23 21:30:01 +00:00
ginvoke.c Rename metadata to typelib in variable names, comments and apis. 2008-08-09 12:55:32 +00:00
girepository.c Search $DATADIR/girepository instead of $DATADIR/gitypelibs; this naming 2008-08-26 21:55:42 +00:00
girepository.h Add new function g_irepository_get_typelib_path which tells us from where 2008-08-21 03:06:13 +00:00
girmodule.c Revert change to increment header_size; we do that in write_string. 2008-08-21 16:25:42 +00:00
girmodule.h Rename metadata to typelib in variable names, comments and apis. 2008-08-09 12:55:32 +00:00
girnode.c Add debug bit, tweak to use GUINT as correct. 2008-08-23 21:30:06 +00:00
girnode.h Make enum serializing functions public. Clean up some whitespace. 2008-08-18 08:52:47 +00:00
girparser.c Make g-ir-scanner work on Windows. Still problems with the typelib code. 2008-08-27 13:33:21 +00:00
girparser.h Move shared *.[ch] files to girepository from tools 2008-08-09 12:46:48 +00:00
girwriter.c Move shared *.[ch] files to girepository from tools 2008-08-09 12:46:48 +00:00
girwriter.h Move shared *.[ch] files to girepository from tools 2008-08-09 12:46:48 +00:00
gtypelib.c Make g-ir-scanner work on Windows. Still problems with the typelib code. 2008-08-27 13:33:21 +00:00
gtypelib.h Remove usage of (GAPI-oriented) TypeTag in favor of GITypeTag from 2008-08-12 15:34:27 +00:00
Makefile.am Make g-ir-scanner work on Windows. Still problems with the typelib code. 2008-08-27 13:33:21 +00:00