Overview
Comment: | A bit of cleanup |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
a4f7828c1da46df61985e0c2d107232f |
User & Date: | rkeene on 2019-09-17 14:39:27 |
Other Links: | manifest | tags |
Context
2019-09-17
| ||
16:39 | Limit the stat structure when on Win32 check-in: 3a68a54e44 user: rkeene tags: trunk | |
14:39 | A bit of cleanup check-in: a4f7828c1d user: rkeene tags: trunk | |
14:34 | Included unistd.h for W_OK, X_OK, etc check-in: d61a265cd6 user: rkeene tags: trunk | |
Changes
Modified Makefile from [4529931791] to [4d994959ca].
1 2 3 4 5 6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 | - + - - + + - - + + - + - + - - + + | CPPFLAGS := -I. -DUSE_TCL_STUBS=1 -DXVFS_DEBUG $(XVFS_ADD_CPPFLAGS) CFLAGS := -fPIC -g3 -ggdb3 -Wall $(XVFS_ADD_CFLAGS) LDFLAGS := $(XVFS_ADD_LDFLAGS) LIBS := -ltclstub8.6 TCLSH := tclsh |
Modified xvfs-core.c from [b817488d55] to [0714660302].
︙ | |||
1111 1112 1113 1114 1115 1116 1117 | 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 | - - - - - - + + + + + + + + | return(xvfs_tclfs_matchInDir(interp, resultPtr, pathPtr, pattern, types, instanceInfo)); } int Xvfs_Init(Tcl_Interp *interp) { static int registered = 0; int tclRet; |
︙ |