Check-in [a057a0f974]
Overview
Comment:Added patch to always build TclVFS in static mode on Windows
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: a057a0f974f8cd280c6257d53b4d39c5abcb29fa
User & Date: rkeene on 2015-03-30 22:27:08
Other Links: manifest | tags
Context
2015-03-30
23:54
Allow zlib 1.2.8 to build and integrate properly on Windows using MinGW. check-in: 9ad5a7514f user: mistachkin tags: trunk
22:27
Added patch to always build TclVFS in static mode on Windows check-in: a057a0f974 user: rkeene tags: trunk
21:49
Removed unneeded ifdef check-in: ec170ce37a user: rkeene tags: trunk
Changes

Added tclvfs/patches/all/tclvfs-20080503-alwaysstatic.diff version [8e486a44c6].









































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
diff -uNr tclvfs-20080503.orig/generic/vfs.c tclvfs-20080503-alwaysstatic/generic/vfs.c
--- tclvfs-20080503.orig/generic/vfs.c	2006-08-30 14:38:03.000000000 -0500
+++ tclvfs-20080503-alwaysstatic/generic/vfs.c	2015-03-30 17:20:15.415513923 -0500
@@ -25,16 +25,6 @@
 #include "tclInt.h"
 #include "tclPort.h"
 
-/*
- * Windows needs to know which symbols to export.  Unix does not.
- * BUILD_vfs should be undefined for Unix.
- */
-
-#ifdef BUILD_vfs
-#undef TCL_STORAGE_CLASS
-#define TCL_STORAGE_CLASS DLLEXPORT
-#endif /* BUILD_vfs */
-
 #ifndef TCL_GLOB_TYPE_MOUNT
 #define TCL_GLOB_TYPE_MOUNT		(1<<7)
 #endif