Fossil SCM

Added the msvc sdk compiler

renez 2010-08-28 09:20 windowscompilers
Commit c00f79d054e2610cb154b24d479803eddbd6a0cf
+2 -2
--- src/config.h
+++ src/config.h
@@ -26,12 +26,12 @@
2626
#include <stdlib.h>
2727
#include <ctype.h>
2828
#include <string.h>
2929
#include <stdarg.h>
3030
#include <assert.h>
31
-#if defined( __MINGW32__) || defined(__DMC__)
32
-# if defined(__DMC__)
31
+#if defined( __MINGW32__) || defined(__DMC__) || defined(_MSC_VER)
32
+# if defined(__DMC__) || defined(_MSC_VER)
3333
typedef int socklen_t;
3434
# endif
3535
# ifndef _WIN32
3636
# define _WIN32
3737
# endif
3838
--- src/config.h
+++ src/config.h
@@ -26,12 +26,12 @@
26 #include <stdlib.h>
27 #include <ctype.h>
28 #include <string.h>
29 #include <stdarg.h>
30 #include <assert.h>
31 #if defined( __MINGW32__) || defined(__DMC__)
32 # if defined(__DMC__)
33 typedef int socklen_t;
34 # endif
35 # ifndef _WIN32
36 # define _WIN32
37 # endif
38
--- src/config.h
+++ src/config.h
@@ -26,12 +26,12 @@
26 #include <stdlib.h>
27 #include <ctype.h>
28 #include <string.h>
29 #include <stdarg.h>
30 #include <assert.h>
31 #if defined( __MINGW32__) || defined(__DMC__) || defined(_MSC_VER)
32 # if defined(__DMC__) || defined(_MSC_VER)
33 typedef int socklen_t;
34 # endif
35 # ifndef _WIN32
36 # define _WIN32
37 # endif
38
+1 -1
--- src/file.c
+++ src/file.c
@@ -84,11 +84,11 @@
8484
** for directories, devices, fifos, symlinks, etc.
8585
*/
8686
int file_isexe(const char *zFilename){
8787
if( getStat(zFilename) || !S_ISREG(fileStat.st_mode) ) return 0;
8888
#if defined(_WIN32)
89
-# if defined(__DMC__)
89
+# if defined(__DMC__) || defined(_MSC_VER)
9090
# define S_IXUSR _S_IEXEC
9191
# endif
9292
return ((S_IXUSR)&fileStat.st_mode)!=0;
9393
#else
9494
return ((S_IXUSR|S_IXGRP|S_IXOTH)&fileStat.st_mode)!=0;
9595
--- src/file.c
+++ src/file.c
@@ -84,11 +84,11 @@
84 ** for directories, devices, fifos, symlinks, etc.
85 */
86 int file_isexe(const char *zFilename){
87 if( getStat(zFilename) || !S_ISREG(fileStat.st_mode) ) return 0;
88 #if defined(_WIN32)
89 # if defined(__DMC__)
90 # define S_IXUSR _S_IEXEC
91 # endif
92 return ((S_IXUSR)&fileStat.st_mode)!=0;
93 #else
94 return ((S_IXUSR|S_IXGRP|S_IXOTH)&fileStat.st_mode)!=0;
95
--- src/file.c
+++ src/file.c
@@ -84,11 +84,11 @@
84 ** for directories, devices, fifos, symlinks, etc.
85 */
86 int file_isexe(const char *zFilename){
87 if( getStat(zFilename) || !S_ISREG(fileStat.st_mode) ) return 0;
88 #if defined(_WIN32)
89 # if defined(__DMC__) || defined(_MSC_VER)
90 # define S_IXUSR _S_IEXEC
91 # endif
92 return ((S_IXUSR)&fileStat.st_mode)!=0;
93 #else
94 return ((S_IXUSR|S_IXGRP|S_IXOTH)&fileStat.st_mode)!=0;
95
+1 -1
--- src/login.c
+++ src/login.c
@@ -39,11 +39,11 @@
3939
*/
4040
#include "config.h"
4141
#include "login.h"
4242
#if defined(_WIN32)
4343
# include <windows.h> /* for Sleep */
44
-# if defined(_MINGW32__)
44
+# if defined(_MINGW32__) || defined(_MSC_VER)
4545
# define sleep Sleep /* windows does not have sleep, but Sleep */
4646
# endif
4747
#endif
4848
#include <time.h>
4949
5050
--- src/login.c
+++ src/login.c
@@ -39,11 +39,11 @@
39 */
40 #include "config.h"
41 #include "login.h"
42 #if defined(_WIN32)
43 # include <windows.h> /* for Sleep */
44 # if defined(_MINGW32__)
45 # define sleep Sleep /* windows does not have sleep, but Sleep */
46 # endif
47 #endif
48 #include <time.h>
49
50
--- src/login.c
+++ src/login.c
@@ -39,11 +39,11 @@
39 */
40 #include "config.h"
41 #include "login.h"
42 #if defined(_WIN32)
43 # include <windows.h> /* for Sleep */
44 # if defined(_MINGW32__) || defined(_MSC_VER)
45 # define sleep Sleep /* windows does not have sleep, but Sleep */
46 # endif
47 #endif
48 #include <time.h>
49
50
--- src/makeheaders.c
+++ src/makeheaders.c
@@ -13,14 +13,17 @@
1313
#include <stdlib.h>
1414
#include <ctype.h>
1515
#include <memory.h>
1616
#include <sys/stat.h>
1717
#include <assert.h>
18
-#ifndef WIN32
19
-# include <unistd.h>
20
-#else
18
+#if defined( __MINGW32__) || defined(__DMC__) || defined(_MSC_VER)
19
+# ifndef WIN32
20
+# define WIN32
21
+# endif
2122
# include <string.h>
23
+#else
24
+# include <unistd.h>
2225
#endif
2326
2427
/*
2528
** Macros for debugging.
2629
*/
2730
--- src/makeheaders.c
+++ src/makeheaders.c
@@ -13,14 +13,17 @@
13 #include <stdlib.h>
14 #include <ctype.h>
15 #include <memory.h>
16 #include <sys/stat.h>
17 #include <assert.h>
18 #ifndef WIN32
19 # include <unistd.h>
20 #else
 
21 # include <string.h>
 
 
22 #endif
23
24 /*
25 ** Macros for debugging.
26 */
27
--- src/makeheaders.c
+++ src/makeheaders.c
@@ -13,14 +13,17 @@
13 #include <stdlib.h>
14 #include <ctype.h>
15 #include <memory.h>
16 #include <sys/stat.h>
17 #include <assert.h>
18 #if defined( __MINGW32__) || defined(__DMC__) || defined(_MSC_VER)
19 # ifndef WIN32
20 # define WIN32
21 # endif
22 # include <string.h>
23 #else
24 # include <unistd.h>
25 #endif
26
27 /*
28 ** Macros for debugging.
29 */
30
--- src/makemake.tcl
+++ src/makemake.tcl
@@ -320,7 +320,121 @@
320320
foreach s [lsort $src] {
321321
puts -nonewline "${s}_.c:$s.h "
322322
}
323323
puts "src\\sqlite3.h src\\th.h VERSION.h"
324324
puts "\tcopy nul headers"
325
+exit
326
+}
327
+
328
+if { "msc" == [lindex $argv 0] } {
329
+
330
+puts {# DO NOT EDIT
331
+#
332
+# This file is automatically generated. Instead of editing this
333
+# file, edit "makemake.tcl" then run
334
+# "tclsh src/makemake.tcl msc > win/Makefile.msc"
335
+# to regenerate this file.
336
+SRCDIR = src
337
+OBJDIR = mscobj
338
+O = .obj
339
+E = .exe
340
+
341
+
342
+# Maybe MSCDIR, SSL or INCL needs adjustment
343
+MSCDIR = c:\msc
344
+INCL = -I. -I$(SRCDIR) -Iwin\include -I$(MSCDIR)\extra\include
345
+
346
+#SSL = -DFOSSIL_ENABLE_SSL=1
347
+SSL =
348
+
349
+MSCDEF = -Dstrncasecmp=memicmp -Dstrcasecmp=stricmp
350
+I18N = -DFOSSIL_I18N=0
351
+
352
+CFLAGS = -nologo -MD -O2 -Oy- -Zi
353
+BCC = $(CC) $(CFLAGS)
354
+TCC = $(CC) -c $(CFLAGS) $(MSCDEF) $(I18N) $(SSL) $(INCL)
355
+LIBS = zlib.lib ws2_32.lib
356
+}
357
+puts -nonewline "SRC = "
358
+foreach s [lsort $src] {
359
+ puts -nonewline "${s}_.c "
360
+}
361
+puts "\n"
362
+puts -nonewline "OBJ = "
363
+foreach s [lsort $src] {
364
+ puts -nonewline "\$(OBJDIR)\\$s\$O "
365
+}
366
+puts "\$(OBJDIR)\\sqlite3\$O \$(OBJDIR)\\th\$O \$(OBJDIR)\\th_lang\$O "
367
+puts {
368
+
369
+APPNAME = $(OBJDIR)\fossil$(E)
370
+
371
+all: $(OBJDIR) $(APPNAME)
372
+
373
+$(APPNAME) : translate$E mkindex$E headers $(OBJ) $(OBJDIR)\link
374
+ cd $(OBJDIR)
375
+ link -LINK -OUT:fossil$E -LIBPATH:$(MSCDIR)\extra\lib @link
376
+
377
+$(OBJDIR)\link:}
378
+puts -nonewline "\techo "
379
+foreach s [lsort $src] {
380
+ puts -nonewline "$s "
381
+}
382
+puts "sqlite3 th th_lang > \$@"
383
+puts "\techo \$(LIBS) >> \$@\n\n"
384
+
385
+puts {
386
+
387
+
388
+$(OBJDIR):
389
+ @-mkdir $@
390
+
391
+translate$E: $(SRCDIR)/translate.c
392
+ $(BCC) $**
393
+
394
+makeheaders$E: $(SRCDIR)/makeheaders.c
395
+ $(BCC) $**
396
+
397
+mkindex$E: $(SRCDIR)/mkindex.c
398
+ $(BCC) $**
399
+
400
+version$E: win/version.c
401
+ $(BCC) $**
402
+
403
+$(OBJDIR)\sqlite3$O : $(SRCDIR)\sqlite3.c
404
+ $(TCC) /Fo$@ -c -DSQLITE_OMIT_LOAD_EXTENSION=1 -DSQLITE_THREADSAFE=0 -DSQLITE_DEFAULT_FILE_FORMAT=4 -Dlocaltime=fossil_localtime -DSQLITE_ENABLE_LOCKING_STYLE=0 $**
405
+
406
+$(OBJDIR)\th$O : $(SRCDIR)\th.c
407
+ $(TCC) /Fo$@ -c $**
408
+
409
+$(OBJDIR)\th_lang$O : $(SRCDIR)\th_lang.c
410
+ $(TCC) /Fo$@ -c $**
411
+
412
+VERSION.h : version$E manifest.uuid manifest
413
+ $** > $@
414
+
415
+page_index.h: mkindex$E $(SRC)
416
+ $** > $@
417
+
418
+clean:
419
+ -del $(OBJDIR)\*.obj
420
+ -del *.obj *_.c *.h *.map
421
+
422
+realclean:
423
+ -del $(APPNAME) translate$E mkindex$E makeheaders$E version$E
424
+
425
+}
426
+foreach s [lsort $src] {
427
+ puts "\$(OBJDIR)\\$s\$O : ${s}_.c"
428
+ puts "\t\$(TCC) /Fo\$@ -c \$**\n"
429
+ puts "${s}_.c : \$(SRCDIR)\\$s.c"
430
+ puts "\ttranslate\$E \$** > \$@\n"
431
+}
432
+
433
+puts -nonewline "headers: makeheaders\$E page_index.h VERSION.h\n\t makeheaders\$E "
434
+foreach s [lsort $src] {
435
+ puts -nonewline "${s}_.c:$s.h "
436
+}
437
+puts "src\\sqlite3.h src\\th.h VERSION.h"
438
+puts "\tcopy /Y nul: headers"
325439
326440
}
327441
--- src/makemake.tcl
+++ src/makemake.tcl
@@ -320,7 +320,121 @@
320 foreach s [lsort $src] {
321 puts -nonewline "${s}_.c:$s.h "
322 }
323 puts "src\\sqlite3.h src\\th.h VERSION.h"
324 puts "\tcopy nul headers"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
325
326 }
327
--- src/makemake.tcl
+++ src/makemake.tcl
@@ -320,7 +320,121 @@
320 foreach s [lsort $src] {
321 puts -nonewline "${s}_.c:$s.h "
322 }
323 puts "src\\sqlite3.h src\\th.h VERSION.h"
324 puts "\tcopy nul headers"
325 exit
326 }
327
328 if { "msc" == [lindex $argv 0] } {
329
330 puts {# DO NOT EDIT
331 #
332 # This file is automatically generated. Instead of editing this
333 # file, edit "makemake.tcl" then run
334 # "tclsh src/makemake.tcl msc > win/Makefile.msc"
335 # to regenerate this file.
336 SRCDIR = src
337 OBJDIR = mscobj
338 O = .obj
339 E = .exe
340
341
342 # Maybe MSCDIR, SSL or INCL needs adjustment
343 MSCDIR = c:\msc
344 INCL = -I. -I$(SRCDIR) -Iwin\include -I$(MSCDIR)\extra\include
345
346 #SSL = -DFOSSIL_ENABLE_SSL=1
347 SSL =
348
349 MSCDEF = -Dstrncasecmp=memicmp -Dstrcasecmp=stricmp
350 I18N = -DFOSSIL_I18N=0
351
352 CFLAGS = -nologo -MD -O2 -Oy- -Zi
353 BCC = $(CC) $(CFLAGS)
354 TCC = $(CC) -c $(CFLAGS) $(MSCDEF) $(I18N) $(SSL) $(INCL)
355 LIBS = zlib.lib ws2_32.lib
356 }
357 puts -nonewline "SRC = "
358 foreach s [lsort $src] {
359 puts -nonewline "${s}_.c "
360 }
361 puts "\n"
362 puts -nonewline "OBJ = "
363 foreach s [lsort $src] {
364 puts -nonewline "\$(OBJDIR)\\$s\$O "
365 }
366 puts "\$(OBJDIR)\\sqlite3\$O \$(OBJDIR)\\th\$O \$(OBJDIR)\\th_lang\$O "
367 puts {
368
369 APPNAME = $(OBJDIR)\fossil$(E)
370
371 all: $(OBJDIR) $(APPNAME)
372
373 $(APPNAME) : translate$E mkindex$E headers $(OBJ) $(OBJDIR)\link
374 cd $(OBJDIR)
375 link -LINK -OUT:fossil$E -LIBPATH:$(MSCDIR)\extra\lib @link
376
377 $(OBJDIR)\link:}
378 puts -nonewline "\techo "
379 foreach s [lsort $src] {
380 puts -nonewline "$s "
381 }
382 puts "sqlite3 th th_lang > \$@"
383 puts "\techo \$(LIBS) >> \$@\n\n"
384
385 puts {
386
387
388 $(OBJDIR):
389 @-mkdir $@
390
391 translate$E: $(SRCDIR)/translate.c
392 $(BCC) $**
393
394 makeheaders$E: $(SRCDIR)/makeheaders.c
395 $(BCC) $**
396
397 mkindex$E: $(SRCDIR)/mkindex.c
398 $(BCC) $**
399
400 version$E: win/version.c
401 $(BCC) $**
402
403 $(OBJDIR)\sqlite3$O : $(SRCDIR)\sqlite3.c
404 $(TCC) /Fo$@ -c -DSQLITE_OMIT_LOAD_EXTENSION=1 -DSQLITE_THREADSAFE=0 -DSQLITE_DEFAULT_FILE_FORMAT=4 -Dlocaltime=fossil_localtime -DSQLITE_ENABLE_LOCKING_STYLE=0 $**
405
406 $(OBJDIR)\th$O : $(SRCDIR)\th.c
407 $(TCC) /Fo$@ -c $**
408
409 $(OBJDIR)\th_lang$O : $(SRCDIR)\th_lang.c
410 $(TCC) /Fo$@ -c $**
411
412 VERSION.h : version$E manifest.uuid manifest
413 $** > $@
414
415 page_index.h: mkindex$E $(SRC)
416 $** > $@
417
418 clean:
419 -del $(OBJDIR)\*.obj
420 -del *.obj *_.c *.h *.map
421
422 realclean:
423 -del $(APPNAME) translate$E mkindex$E makeheaders$E version$E
424
425 }
426 foreach s [lsort $src] {
427 puts "\$(OBJDIR)\\$s\$O : ${s}_.c"
428 puts "\t\$(TCC) /Fo\$@ -c \$**\n"
429 puts "${s}_.c : \$(SRCDIR)\\$s.c"
430 puts "\ttranslate\$E \$** > \$@\n"
431 }
432
433 puts -nonewline "headers: makeheaders\$E page_index.h VERSION.h\n\t makeheaders\$E "
434 foreach s [lsort $src] {
435 puts -nonewline "${s}_.c:$s.h "
436 }
437 puts "src\\sqlite3.h src\\th.h VERSION.h"
438 puts "\tcopy /Y nul: headers"
439
440 }
441
+1 -1
--- src/sha1.c
+++ src/sha1.c
@@ -5,11 +5,11 @@
55
/*
66
* If you do not have the ISO standard stdint.h header file, then you
77
* must typdef the following:
88
* name meaning
99
* */
10
-#if defined(__DMC__)
10
+#if defined(__DMC__) || defined(_MSC_VER)
1111
typedef unsigned long uint32_t; //unsigned 32 bit integer
1212
typedef unsigned char uint8_t; //unsigned 8 bit integer (i.e., unsigned char)
1313
#else
1414
# include <stdint.h>
1515
#endif
1616
--- src/sha1.c
+++ src/sha1.c
@@ -5,11 +5,11 @@
5 /*
6 * If you do not have the ISO standard stdint.h header file, then you
7 * must typdef the following:
8 * name meaning
9 * */
10 #if defined(__DMC__)
11 typedef unsigned long uint32_t; //unsigned 32 bit integer
12 typedef unsigned char uint8_t; //unsigned 8 bit integer (i.e., unsigned char)
13 #else
14 # include <stdint.h>
15 #endif
16
--- src/sha1.c
+++ src/sha1.c
@@ -5,11 +5,11 @@
5 /*
6 * If you do not have the ISO standard stdint.h header file, then you
7 * must typdef the following:
8 * name meaning
9 * */
10 #if defined(__DMC__) || defined(_MSC_VER)
11 typedef unsigned long uint32_t; //unsigned 32 bit integer
12 typedef unsigned char uint8_t; //unsigned 8 bit integer (i.e., unsigned char)
13 #else
14 # include <stdint.h>
15 #endif
16
+1 -1
--- src/winhttp.c
+++ src/winhttp.c
@@ -16,11 +16,11 @@
1616
*******************************************************************************
1717
**
1818
** This file implements a very simple (and low-performance) HTTP server
1919
** for windows.
2020
*/
21
-#if defined( __MINGW32__) || defined(__DMC__)
21
+#if defined( __MINGW32__) || defined(__DMC__) || defined(_MSC_VER)
2222
/* This code is for win32 only */
2323
#include "config.h"
2424
#include "winhttp.h"
2525
#include <windows.h>
2626
2727
2828
ADDED win/Makefile.msc
--- src/winhttp.c
+++ src/winhttp.c
@@ -16,11 +16,11 @@
16 *******************************************************************************
17 **
18 ** This file implements a very simple (and low-performance) HTTP server
19 ** for windows.
20 */
21 #if defined( __MINGW32__) || defined(__DMC__)
22 /* This code is for win32 only */
23 #include "config.h"
24 #include "winhttp.h"
25 #include <windows.h>
26
27
28 DDED win/Makefile.msc
--- src/winhttp.c
+++ src/winhttp.c
@@ -16,11 +16,11 @@
16 *******************************************************************************
17 **
18 ** This file implements a very simple (and low-performance) HTTP server
19 ** for windows.
20 */
21 #if defined( __MINGW32__) || defined(__DMC__) || defined(_MSC_VER)
22 /* This code is for win32 only */
23 #include "config.h"
24 #include "winhttp.h"
25 #include <windows.h>
26
27
28 DDED win/Makefile.msc
--- a/win/Makefile.msc
+++ b/win/Makefile.msc
@@ -0,0 +1,95 @@
1
+# DO NOT EDITrssrssgamation.h :
2
+
3
+_
4
+
5
+_
6
+
7
+_.c"
8
+
9
+_.c"duskinstashsta_matimelin
10
+
11
+_.sqlite3thth_
12
+# "tclsh src/makemakehen using precompiled from http://zlib.net/zlib125-dll.zip
13
+#ZINCDIR =-dll\incluMSCDSRCDIR = src
14
+OBJDIR = mscobjncasecmp=m
15
+
16
+_
17
+
18
+_.c"
19
+
20
+_.c"duskinstashsta_matimelin
21
+
22
+_.sqli
23
+# Maybe MSCDIR, SSLMSCDIR, stment
24
+-dll\inclu
25
+
26
+#SSL = -DFIR =-dll\inclu{s}_,{s}_,{s}_,c
27
+
28
+attach{s}_,{s}_,{s}_,c
29
+
30
+branch{s}_,{s}_,{sD -O2 -Oy- -Zi,c
31
+
32
+check{s}_,{s}_,{s}_,{s}_,{s}_,{s}_,{s}_,{s}_,{s}_,{s}_,{s}_,c
33
+
34
+dif{s}_D -O2 -O32ITrssrssgzlib.lib ws2_32.libOT EDITrssrssgamation.h :
35
+
36
+_
37
+
38
+_
39
+
40
+# DO NOT ENOT EDI{s}_,c
41
+fossil$EDITrssrssgamation.h :
42
+
43
+_
44
+
45
+_
46
+# DO NOT EDITrssrssgamation.h :
47
+
48
+_
49
+
50
+_
51
+
52
+_.c"
53
+
54
+_.c"duskinstashsta_matimelin
55
+
56
+_.sqlite3thth_
57
+# "tclsh src/makemakehen using precompiled from http://zlib.net/zlib125-dll.zip
58
+#ZINCDIR =-dll\incluMSCDEF = -Dstrncasecmp=m
59
+
60
+_
61
+
62
+_.c"
63
+
64
+_.c"duskinstashsta_matimelin
65
+
66
+_.sqli
67
+# Maybe MSCDIR, SSLMSCDIR, stment
68
+ecompiled from http://zlib.net/zlib125-dll.zip
69
+#ZINCDIR =-dll\inclu
70
+
71
+#SSL = -DFIR =-dll\inclu{s}_,{s}_,{s}_,c
72
+
73
+attach{s}_,{s}_,{s}_,c
74
+
75
+branch{s}_,{s}_,{sD -O2 -Oy- -Zi,c
76
+
77
+check{s}_,{s}_,{s}_,{s}_,{s}_,{s}_,{s}_,{s}_,{s}_,{s}_,{s}_,c
78
+
79
+dif{s}_D -O2 -Oy-iffcmlib125-dllzlib.lib ws2_32ITrssrssgzlib.l/translate :
80
+
81
+_
82
+
83
+_
84
+
85
+_.c"
86
+
87
+# DO NOT EDITrssrssgama//:
88
+
89
+_
90
+
91
+_
92
+
93
+_.c"
94
+
95
+_.c"duskinstashsta# DOmanifest.uuid src\sqlite3.h srccopy /Y nul: headers
--- a/win/Makefile.msc
+++ b/win/Makefile.msc
@@ -0,0 +1,95 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
--- a/win/Makefile.msc
+++ b/win/Makefile.msc
@@ -0,0 +1,95 @@
1 # DO NOT EDITrssrssgamation.h :
2
3 _
4
5 _
6
7 _.c"
8
9 _.c"duskinstashsta_matimelin
10
11 _.sqlite3thth_
12 # "tclsh src/makemakehen using precompiled from http://zlib.net/zlib125-dll.zip
13 #ZINCDIR =-dll\incluMSCDSRCDIR = src
14 OBJDIR = mscobjncasecmp=m
15
16 _
17
18 _.c"
19
20 _.c"duskinstashsta_matimelin
21
22 _.sqli
23 # Maybe MSCDIR, SSLMSCDIR, stment
24 -dll\inclu
25
26 #SSL = -DFIR =-dll\inclu{s}_,{s}_,{s}_,c
27
28 attach{s}_,{s}_,{s}_,c
29
30 branch{s}_,{s}_,{sD -O2 -Oy- -Zi,c
31
32 check{s}_,{s}_,{s}_,{s}_,{s}_,{s}_,{s}_,{s}_,{s}_,{s}_,{s}_,c
33
34 dif{s}_D -O2 -O32ITrssrssgzlib.lib ws2_32.libOT EDITrssrssgamation.h :
35
36 _
37
38 _
39
40 # DO NOT ENOT EDI{s}_,c
41 fossil$EDITrssrssgamation.h :
42
43 _
44
45 _
46 # DO NOT EDITrssrssgamation.h :
47
48 _
49
50 _
51
52 _.c"
53
54 _.c"duskinstashsta_matimelin
55
56 _.sqlite3thth_
57 # "tclsh src/makemakehen using precompiled from http://zlib.net/zlib125-dll.zip
58 #ZINCDIR =-dll\incluMSCDEF = -Dstrncasecmp=m
59
60 _
61
62 _.c"
63
64 _.c"duskinstashsta_matimelin
65
66 _.sqli
67 # Maybe MSCDIR, SSLMSCDIR, stment
68 ecompiled from http://zlib.net/zlib125-dll.zip
69 #ZINCDIR =-dll\inclu
70
71 #SSL = -DFIR =-dll\inclu{s}_,{s}_,{s}_,c
72
73 attach{s}_,{s}_,{s}_,c
74
75 branch{s}_,{s}_,{sD -O2 -Oy- -Zi,c
76
77 check{s}_,{s}_,{s}_,{s}_,{s}_,{s}_,{s}_,{s}_,{s}_,{s}_,{s}_,c
78
79 dif{s}_D -O2 -Oy-iffcmlib125-dllzlib.lib ws2_32ITrssrssgzlib.l/translate :
80
81 _
82
83 _
84
85 _.c"
86
87 # DO NOT EDITrssrssgama//:
88
89 _
90
91 _
92
93 _.c"
94
95 _.c"duskinstashsta# DOmanifest.uuid src\sqlite3.h srccopy /Y nul: headers

Keyboard Shortcuts

Open search /
Next entry (timeline) j
Previous entry (timeline) k
Open focused entry Enter
Show this help ?
Toggle theme Top nav button