diff options
author | Chun-wei Fan <fanchunwei@src.gnome.org> | 2013-05-28 15:08:16 +0800 |
---|---|---|
committer | Chun-wei Fan <fanchunwei@src.gnome.org> | 2013-05-28 15:08:16 +0800 |
commit | 9b217a0d98d036fb0cbf862eefff9a8214ce5d85 (patch) | |
tree | dcf2d113cf756f3aac8fd9f7daae9c178a5c44a4 /config.h.win32.in | |
parent | da3198237938057a1b6cc3c5fb9cf50a31dbe640 (diff) | |
download | gtk+-9b217a0d98d036fb0cbf862eefff9a8214ce5d85.tar.gz |
Update Visual Studio Build Files
-Update the pre-configured config.h.win32(.in) to define _GDK_EXTERN as
__declspec (dllexport) as we are not using .def files to export symbols
anymore.
-Update the GDK/GTK DLL projects and the property sheets to stop using
the .symbols/.def files
-Update the property sheets to "install" the newly-introduced GTK headers
-Update the gtk3-demo project to build the new demo sources that must be
built
Diffstat (limited to 'config.h.win32.in')
-rw-r--r-- | config.h.win32.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/config.h.win32.in b/config.h.win32.in index ddb9d75a83..273a9766c1 100644 --- a/config.h.win32.in +++ b/config.h.win32.in @@ -293,6 +293,9 @@ /* Number of bits in a file offset, on hosts where this is settable. */ /* #undef _FILE_OFFSET_BITS */ +/* defines how to decorate public symbols while building */
+#define _GDK_EXTERN __declspec (dllexport) + /* Define for large files, on AIX-style hosts. */ /* #undef _LARGE_FILES */ |