Fossil SCM

Update custom MinGW makefile, add one "const" and remove some unnecessary eol-spaces

jan.nijtmans 2015-01-26 09:04 trunk
Commit 9e318f6b48025e932910ebb0f762ea1fba50ebe7
+2 -2
--- src/branch.c
+++ src/branch.c
@@ -302,11 +302,11 @@
302302
fossil_fatal("branch subcommand should be one of: "
303303
"new list ls");
304304
}
305305
}
306306
307
-static char brlistQuery[] =
307
+static const char brlistQuery[] =
308308
@ SELECT
309309
@ tagxref.value,
310310
@ max(event.mtime),
311311
@ EXISTS(SELECT 1 FROM tagxref AS tx
312312
@ WHERE tx.rid=tagxref.rid
@@ -343,11 +343,11 @@
343343
login_check_credentials();
344344
if( !g.perm.Read ){ login_needed(); return; }
345345
style_header("Branches");
346346
style_adunit_config(ADUNIT_RIGHT_OK);
347347
login_anonymous_available();
348
-
348
+
349349
db_prepare(&q, brlistQuery/*works-like:""*/);
350350
rNow = db_double(0.0, "SELECT julianday('now')");
351351
@ <div class="brlist"><table id="branchlisttable">
352352
@ <thead><tr>
353353
@ <th>Branch Name</th>
354354
--- src/branch.c
+++ src/branch.c
@@ -302,11 +302,11 @@
302 fossil_fatal("branch subcommand should be one of: "
303 "new list ls");
304 }
305 }
306
307 static char brlistQuery[] =
308 @ SELECT
309 @ tagxref.value,
310 @ max(event.mtime),
311 @ EXISTS(SELECT 1 FROM tagxref AS tx
312 @ WHERE tx.rid=tagxref.rid
@@ -343,11 +343,11 @@
343 login_check_credentials();
344 if( !g.perm.Read ){ login_needed(); return; }
345 style_header("Branches");
346 style_adunit_config(ADUNIT_RIGHT_OK);
347 login_anonymous_available();
348
349 db_prepare(&q, brlistQuery/*works-like:""*/);
350 rNow = db_double(0.0, "SELECT julianday('now')");
351 @ <div class="brlist"><table id="branchlisttable">
352 @ <thead><tr>
353 @ <th>Branch Name</th>
354
--- src/branch.c
+++ src/branch.c
@@ -302,11 +302,11 @@
302 fossil_fatal("branch subcommand should be one of: "
303 "new list ls");
304 }
305 }
306
307 static const char brlistQuery[] =
308 @ SELECT
309 @ tagxref.value,
310 @ max(event.mtime),
311 @ EXISTS(SELECT 1 FROM tagxref AS tx
312 @ WHERE tx.rid=tagxref.rid
@@ -343,11 +343,11 @@
343 login_check_credentials();
344 if( !g.perm.Read ){ login_needed(); return; }
345 style_header("Branches");
346 style_adunit_config(ADUNIT_RIGHT_OK);
347 login_anonymous_available();
348
349 db_prepare(&q, brlistQuery/*works-like:""*/);
350 rNow = db_double(0.0, "SELECT julianday('now')");
351 @ <div class="brlist"><table id="branchlisttable">
352 @ <thead><tr>
353 @ <th>Branch Name</th>
354
+3 -3
--- src/browse.c
+++ src/browse.c
@@ -888,11 +888,11 @@
888888
889889
/*
890890
** SQL used to compute the age of all files in checkin :ckin whose
891891
** names match :glob
892892
*/
893
-static const char zComputeFileAgeSetup[] =
893
+static const char zComputeFileAgeSetup[] =
894894
@ CREATE TABLE IF NOT EXISTS temp.fileage(
895895
@ fnid INTEGER PRIMARY KEY,
896896
@ fid INTEGER,
897897
@ mid INTEGER,
898898
@ mtime DATETIME,
@@ -899,11 +899,11 @@
899899
@ pathname TEXT
900900
@ );
901901
@ CREATE VIRTUAL TABLE IF NOT EXISTS temp.foci USING files_of_checkin;
902902
;
903903
904
-static const char zComputeFileAgeRun[] =
904
+static const char zComputeFileAgeRun[] =
905905
@ WITH RECURSIVE
906906
@ ckin(x) AS (VALUES(:ckin) UNION ALL
907907
@ SELECT pid FROM ckin, plink WHERE cid=x AND isprim)
908908
@ INSERT OR IGNORE INTO fileage(fnid, fid, mid, mtime, pathname)
909909
@ SELECT mlink.fnid, mlink.fid, x, event.mtime, filename.name
@@ -1025,11 +1025,11 @@
10251025
style_header("File Ages");
10261026
zGlob = P("glob");
10271027
compute_fileage(rid,zGlob);
10281028
db_multi_exec("CREATE INDEX fileage_ix1 ON fileage(mid,pathname);");
10291029
1030
- @ <h2>Files in
1030
+ @ <h2>Files in
10311031
@ %z(href("%R/info?name=%T",zUuid))[%S(zUuid)]</a>
10321032
if( zGlob && zGlob[0] ){
10331033
@ that match "%h(zGlob)" and
10341034
}
10351035
@ ordered by check-in time</h2>
10361036
--- src/browse.c
+++ src/browse.c
@@ -888,11 +888,11 @@
888
889 /*
890 ** SQL used to compute the age of all files in checkin :ckin whose
891 ** names match :glob
892 */
893 static const char zComputeFileAgeSetup[] =
894 @ CREATE TABLE IF NOT EXISTS temp.fileage(
895 @ fnid INTEGER PRIMARY KEY,
896 @ fid INTEGER,
897 @ mid INTEGER,
898 @ mtime DATETIME,
@@ -899,11 +899,11 @@
899 @ pathname TEXT
900 @ );
901 @ CREATE VIRTUAL TABLE IF NOT EXISTS temp.foci USING files_of_checkin;
902 ;
903
904 static const char zComputeFileAgeRun[] =
905 @ WITH RECURSIVE
906 @ ckin(x) AS (VALUES(:ckin) UNION ALL
907 @ SELECT pid FROM ckin, plink WHERE cid=x AND isprim)
908 @ INSERT OR IGNORE INTO fileage(fnid, fid, mid, mtime, pathname)
909 @ SELECT mlink.fnid, mlink.fid, x, event.mtime, filename.name
@@ -1025,11 +1025,11 @@
1025 style_header("File Ages");
1026 zGlob = P("glob");
1027 compute_fileage(rid,zGlob);
1028 db_multi_exec("CREATE INDEX fileage_ix1 ON fileage(mid,pathname);");
1029
1030 @ <h2>Files in
1031 @ %z(href("%R/info?name=%T",zUuid))[%S(zUuid)]</a>
1032 if( zGlob && zGlob[0] ){
1033 @ that match "%h(zGlob)" and
1034 }
1035 @ ordered by check-in time</h2>
1036
--- src/browse.c
+++ src/browse.c
@@ -888,11 +888,11 @@
888
889 /*
890 ** SQL used to compute the age of all files in checkin :ckin whose
891 ** names match :glob
892 */
893 static const char zComputeFileAgeSetup[] =
894 @ CREATE TABLE IF NOT EXISTS temp.fileage(
895 @ fnid INTEGER PRIMARY KEY,
896 @ fid INTEGER,
897 @ mid INTEGER,
898 @ mtime DATETIME,
@@ -899,11 +899,11 @@
899 @ pathname TEXT
900 @ );
901 @ CREATE VIRTUAL TABLE IF NOT EXISTS temp.foci USING files_of_checkin;
902 ;
903
904 static const char zComputeFileAgeRun[] =
905 @ WITH RECURSIVE
906 @ ckin(x) AS (VALUES(:ckin) UNION ALL
907 @ SELECT pid FROM ckin, plink WHERE cid=x AND isprim)
908 @ INSERT OR IGNORE INTO fileage(fnid, fid, mid, mtime, pathname)
909 @ SELECT mlink.fnid, mlink.fid, x, event.mtime, filename.name
@@ -1025,11 +1025,11 @@
1025 style_header("File Ages");
1026 zGlob = P("glob");
1027 compute_fileage(rid,zGlob);
1028 db_multi_exec("CREATE INDEX fileage_ix1 ON fileage(mid,pathname);");
1029
1030 @ <h2>Files in
1031 @ %z(href("%R/info?name=%T",zUuid))[%S(zUuid)]</a>
1032 if( zGlob && zGlob[0] ){
1033 @ that match "%h(zGlob)" and
1034 }
1035 @ ordered by check-in time</h2>
1036
+2 -2
--- src/db.c
+++ src/db.c
@@ -795,11 +795,11 @@
795795
}
796796
}
797797
}
798798
799799
/*
800
-** Register the SQL functions that are useful both to the internal
800
+** Register the SQL functions that are useful both to the internal
801801
** representation and to the "fossil sql" command.
802802
*/
803803
void db_add_aux_functions(sqlite3 *db){
804804
sqlite3_create_function(db, "checkin_mtime", 2, SQLITE_UTF8, 0,
805805
db_checkin_mtime_function, 0, 0);
@@ -840,11 +840,11 @@
840840
);
841841
sqlite3_create_function(
842842
db, "if_selected", 3, SQLITE_UTF8, 0, file_is_selected,0,0
843843
);
844844
if( g.fSqlTrace ) sqlite3_trace(db, db_sql_trace, 0);
845
- db_add_aux_functions(db);
845
+ db_add_aux_functions(db);
846846
re_add_sql_func(db); /* The REGEXP operator */
847847
foci_register(db); /* The "files_of_checkin" virtual table */
848848
sqlite3_exec(db, "PRAGMA foreign_keys=OFF;", 0, 0, 0);
849849
return db;
850850
}
851851
--- src/db.c
+++ src/db.c
@@ -795,11 +795,11 @@
795 }
796 }
797 }
798
799 /*
800 ** Register the SQL functions that are useful both to the internal
801 ** representation and to the "fossil sql" command.
802 */
803 void db_add_aux_functions(sqlite3 *db){
804 sqlite3_create_function(db, "checkin_mtime", 2, SQLITE_UTF8, 0,
805 db_checkin_mtime_function, 0, 0);
@@ -840,11 +840,11 @@
840 );
841 sqlite3_create_function(
842 db, "if_selected", 3, SQLITE_UTF8, 0, file_is_selected,0,0
843 );
844 if( g.fSqlTrace ) sqlite3_trace(db, db_sql_trace, 0);
845 db_add_aux_functions(db);
846 re_add_sql_func(db); /* The REGEXP operator */
847 foci_register(db); /* The "files_of_checkin" virtual table */
848 sqlite3_exec(db, "PRAGMA foreign_keys=OFF;", 0, 0, 0);
849 return db;
850 }
851
--- src/db.c
+++ src/db.c
@@ -795,11 +795,11 @@
795 }
796 }
797 }
798
799 /*
800 ** Register the SQL functions that are useful both to the internal
801 ** representation and to the "fossil sql" command.
802 */
803 void db_add_aux_functions(sqlite3 *db){
804 sqlite3_create_function(db, "checkin_mtime", 2, SQLITE_UTF8, 0,
805 db_checkin_mtime_function, 0, 0);
@@ -840,11 +840,11 @@
840 );
841 sqlite3_create_function(
842 db, "if_selected", 3, SQLITE_UTF8, 0, file_is_selected,0,0
843 );
844 if( g.fSqlTrace ) sqlite3_trace(db, db_sql_trace, 0);
845 db_add_aux_functions(db);
846 re_add_sql_func(db); /* The REGEXP operator */
847 foci_register(db); /* The "files_of_checkin" virtual table */
848 sqlite3_exec(db, "PRAGMA foreign_keys=OFF;", 0, 0, 0);
849 return db;
850 }
851
+1 -1
--- src/main.c
+++ src/main.c
@@ -1874,11 +1874,11 @@
18741874
}
18751875
if( blob_eq(&key, "debug:") && blob_token(&line, &value) ){
18761876
/* debug: FILENAME
18771877
**
18781878
** Causes output from cgi_debug() and CGIDEBUG(()) calls to go
1879
- ** into FILENAME.
1879
+ ** into FILENAME.
18801880
*/
18811881
g.fDebug = fossil_fopen(blob_str(&value), "ab");
18821882
blob_reset(&value);
18831883
continue;
18841884
}
18851885
--- src/main.c
+++ src/main.c
@@ -1874,11 +1874,11 @@
1874 }
1875 if( blob_eq(&key, "debug:") && blob_token(&line, &value) ){
1876 /* debug: FILENAME
1877 **
1878 ** Causes output from cgi_debug() and CGIDEBUG(()) calls to go
1879 ** into FILENAME.
1880 */
1881 g.fDebug = fossil_fopen(blob_str(&value), "ab");
1882 blob_reset(&value);
1883 continue;
1884 }
1885
--- src/main.c
+++ src/main.c
@@ -1874,11 +1874,11 @@
1874 }
1875 if( blob_eq(&key, "debug:") && blob_token(&line, &value) ){
1876 /* debug: FILENAME
1877 **
1878 ** Causes output from cgi_debug() and CGIDEBUG(()) calls to go
1879 ** into FILENAME.
1880 */
1881 g.fDebug = fossil_fopen(blob_str(&value), "ab");
1882 blob_reset(&value);
1883 continue;
1884 }
1885
+2 -2
--- src/schema.c
+++ src/schema.c
@@ -12,11 +12,11 @@
1212
** Author contact information:
1313
** [email protected]
1414
** http://www.hwaci.com/drh/
1515
**
1616
*******************************************************************************
17
-**
17
+**
1818
** This file contains string constants that implement the database schema.
1919
*/
2020
#include "config.h"
2121
#include "schema.h"
2222
@@ -81,11 +81,11 @@
8181
@ uuid TEXT UNIQUE NOT NULL, -- SHA1 hash of the content
8282
@ content BLOB, -- Compressed content of this record
8383
@ CHECK( length(uuid)==40 AND rid>0 )
8484
@ );
8585
@ CREATE TABLE delta(
86
-@ rid INTEGER PRIMARY KEY, -- BLOB that is delta-compressed
86
+@ rid INTEGER PRIMARY KEY, -- BLOB that is delta-compressed
8787
@ srcid INTEGER NOT NULL REFERENCES blob -- Baseline for delta-compression
8888
@ );
8989
@ CREATE INDEX delta_i1 ON delta(srcid);
9090
@
9191
@ -------------------------------------------------------------------------
9292
--- src/schema.c
+++ src/schema.c
@@ -12,11 +12,11 @@
12 ** Author contact information:
13 ** [email protected]
14 ** http://www.hwaci.com/drh/
15 **
16 *******************************************************************************
17 **
18 ** This file contains string constants that implement the database schema.
19 */
20 #include "config.h"
21 #include "schema.h"
22
@@ -81,11 +81,11 @@
81 @ uuid TEXT UNIQUE NOT NULL, -- SHA1 hash of the content
82 @ content BLOB, -- Compressed content of this record
83 @ CHECK( length(uuid)==40 AND rid>0 )
84 @ );
85 @ CREATE TABLE delta(
86 @ rid INTEGER PRIMARY KEY, -- BLOB that is delta-compressed
87 @ srcid INTEGER NOT NULL REFERENCES blob -- Baseline for delta-compression
88 @ );
89 @ CREATE INDEX delta_i1 ON delta(srcid);
90 @
91 @ -------------------------------------------------------------------------
92
--- src/schema.c
+++ src/schema.c
@@ -12,11 +12,11 @@
12 ** Author contact information:
13 ** [email protected]
14 ** http://www.hwaci.com/drh/
15 **
16 *******************************************************************************
17 **
18 ** This file contains string constants that implement the database schema.
19 */
20 #include "config.h"
21 #include "schema.h"
22
@@ -81,11 +81,11 @@
81 @ uuid TEXT UNIQUE NOT NULL, -- SHA1 hash of the content
82 @ content BLOB, -- Compressed content of this record
83 @ CHECK( length(uuid)==40 AND rid>0 )
84 @ );
85 @ CREATE TABLE delta(
86 @ rid INTEGER PRIMARY KEY, -- BLOB that is delta-compressed
87 @ srcid INTEGER NOT NULL REFERENCES blob -- Baseline for delta-compression
88 @ );
89 @ CREATE INDEX delta_i1 ON delta(srcid);
90 @
91 @ -------------------------------------------------------------------------
92
+1 -1
--- src/sqlcmd.c
+++ src/sqlcmd.c
@@ -108,11 +108,11 @@
108108
sqlite3_result_error(context, "input is not zlib compressed", -1);
109109
}
110110
}
111111
112112
/*
113
-** Add the content(), compress(), and decompress() SQL functions to
113
+** Add the content(), compress(), and decompress() SQL functions to
114114
** database connection db.
115115
*/
116116
int add_content_sql_commands(sqlite3 *db){
117117
sqlite3_create_function(db, "content", 1, SQLITE_UTF8, 0,
118118
sqlcmd_content, 0, 0);
119119
--- src/sqlcmd.c
+++ src/sqlcmd.c
@@ -108,11 +108,11 @@
108 sqlite3_result_error(context, "input is not zlib compressed", -1);
109 }
110 }
111
112 /*
113 ** Add the content(), compress(), and decompress() SQL functions to
114 ** database connection db.
115 */
116 int add_content_sql_commands(sqlite3 *db){
117 sqlite3_create_function(db, "content", 1, SQLITE_UTF8, 0,
118 sqlcmd_content, 0, 0);
119
--- src/sqlcmd.c
+++ src/sqlcmd.c
@@ -108,11 +108,11 @@
108 sqlite3_result_error(context, "input is not zlib compressed", -1);
109 }
110 }
111
112 /*
113 ** Add the content(), compress(), and decompress() SQL functions to
114 ** database connection db.
115 */
116 int add_content_sql_commands(sqlite3 *db){
117 sqlite3_create_function(db, "content", 1, SQLITE_UTF8, 0,
118 sqlcmd_content, 0, 0);
119
+1 -1
--- src/style.c
+++ src/style.c
@@ -354,11 +354,11 @@
354354
355355
#if INTERFACE
356356
/* Allowed parameters for style_adunit() */
357357
#define ADUNIT_OFF 0x0001 /* Do not allow ads on this page */
358358
#define ADUNIT_RIGHT_OK 0x0002 /* Right-side vertical ads ok here */
359
-#endif
359
+#endif
360360
361361
/*
362362
** Various page implementations can invoke this interface to let the
363363
** style manager know what kinds of ads are appropriate for this page.
364364
*/
365365
--- src/style.c
+++ src/style.c
@@ -354,11 +354,11 @@
354
355 #if INTERFACE
356 /* Allowed parameters for style_adunit() */
357 #define ADUNIT_OFF 0x0001 /* Do not allow ads on this page */
358 #define ADUNIT_RIGHT_OK 0x0002 /* Right-side vertical ads ok here */
359 #endif
360
361 /*
362 ** Various page implementations can invoke this interface to let the
363 ** style manager know what kinds of ads are appropriate for this page.
364 */
365
--- src/style.c
+++ src/style.c
@@ -354,11 +354,11 @@
354
355 #if INTERFACE
356 /* Allowed parameters for style_adunit() */
357 #define ADUNIT_OFF 0x0001 /* Do not allow ads on this page */
358 #define ADUNIT_RIGHT_OK 0x0002 /* Right-side vertical ads ok here */
359 #endif
360
361 /*
362 ** Various page implementations can invoke this interface to let the
363 ** style manager know what kinds of ads are appropriate for this page.
364 */
365
+1 -1
--- src/tag.c
+++ src/tag.c
@@ -269,11 +269,11 @@
269269
}
270270
g.markPrivate = content_is_private(rid);
271271
zValue = g.argc==5 ? g.argv[4] : 0;
272272
db_begin_transaction();
273273
tag_insert(zTag, tagtype, zValue, -1, 0.0, rid);
274
- db_end_transaction(0);
274
+ db_end_transaction(0);
275275
}
276276
277277
/*
278278
** Add a control record to the repository that either creates
279279
** or cancels a tag.
280280
--- src/tag.c
+++ src/tag.c
@@ -269,11 +269,11 @@
269 }
270 g.markPrivate = content_is_private(rid);
271 zValue = g.argc==5 ? g.argv[4] : 0;
272 db_begin_transaction();
273 tag_insert(zTag, tagtype, zValue, -1, 0.0, rid);
274 db_end_transaction(0);
275 }
276
277 /*
278 ** Add a control record to the repository that either creates
279 ** or cancels a tag.
280
--- src/tag.c
+++ src/tag.c
@@ -269,11 +269,11 @@
269 }
270 g.markPrivate = content_is_private(rid);
271 zValue = g.argc==5 ? g.argv[4] : 0;
272 db_begin_transaction();
273 tag_insert(zTag, tagtype, zValue, -1, 0.0, rid);
274 db_end_transaction(0);
275 }
276
277 /*
278 ** Add a control record to the repository that either creates
279 ** or cancels a tag.
280
--- win/Makefile.mingw.mistachkin
+++ win/Makefile.mingw.mistachkin
@@ -496,20 +496,24 @@
496496
$(SRCDIR)/../skins/eagle/footer.txt \
497497
$(SRCDIR)/../skins/eagle/header.txt \
498498
$(SRCDIR)/../skins/enhanced1/css.txt \
499499
$(SRCDIR)/../skins/enhanced1/footer.txt \
500500
$(SRCDIR)/../skins/enhanced1/header.txt \
501
+ $(SRCDIR)/../skins/etienne1/css.txt \
502
+ $(SRCDIR)/../skins/etienne1/footer.txt \
503
+ $(SRCDIR)/../skins/etienne1/header.txt \
501504
$(SRCDIR)/../skins/khaki/css.txt \
502505
$(SRCDIR)/../skins/khaki/footer.txt \
503506
$(SRCDIR)/../skins/khaki/header.txt \
504507
$(SRCDIR)/../skins/plain_gray/css.txt \
505508
$(SRCDIR)/../skins/plain_gray/footer.txt \
506509
$(SRCDIR)/../skins/plain_gray/header.txt \
507510
$(SRCDIR)/../skins/rounded1/css.txt \
508511
$(SRCDIR)/../skins/rounded1/footer.txt \
509512
$(SRCDIR)/../skins/rounded1/header.txt \
510
- $(SRCDIR)/diff.tcl
513
+ $(SRCDIR)/diff.tcl \
514
+ $(SRCDIR)/markdown.md
511515
512516
TRANS_SRC = \
513517
$(OBJDIR)/add_.c \
514518
$(OBJDIR)/allrepo_.c \
515519
$(OBJDIR)/attach_.c \
@@ -936,11 +940,11 @@
936940
937941
$(OBJDIR)/page_index.h: $(TRANS_SRC) $(MKINDEX)
938942
$(MKINDEX) $(TRANS_SRC) >$@
939943
940944
$(OBJDIR)/builtin_data.h: $(MKBUILTIN) $(EXTRA_FILES)
941
- $(MKBUILTIN) $(EXTRA_FILES) >$@
945
+ $(MKBUILTIN) --prefix $(SRCDIR)/ $(EXTRA_FILES) >$@
942946
943947
$(OBJDIR)/headers: $(OBJDIR)/page_index.h $(OBJDIR)/builtin_data.h $(MAKEHEADERS) $(OBJDIR)/VERSION.h
944948
$(MAKEHEADERS) $(OBJDIR)/add_.c:$(OBJDIR)/add.h \
945949
$(OBJDIR)/allrepo_.c:$(OBJDIR)/allrepo.h \
946950
$(OBJDIR)/attach_.c:$(OBJDIR)/attach.h \
947951
--- win/Makefile.mingw.mistachkin
+++ win/Makefile.mingw.mistachkin
@@ -496,20 +496,24 @@
496 $(SRCDIR)/../skins/eagle/footer.txt \
497 $(SRCDIR)/../skins/eagle/header.txt \
498 $(SRCDIR)/../skins/enhanced1/css.txt \
499 $(SRCDIR)/../skins/enhanced1/footer.txt \
500 $(SRCDIR)/../skins/enhanced1/header.txt \
 
 
 
501 $(SRCDIR)/../skins/khaki/css.txt \
502 $(SRCDIR)/../skins/khaki/footer.txt \
503 $(SRCDIR)/../skins/khaki/header.txt \
504 $(SRCDIR)/../skins/plain_gray/css.txt \
505 $(SRCDIR)/../skins/plain_gray/footer.txt \
506 $(SRCDIR)/../skins/plain_gray/header.txt \
507 $(SRCDIR)/../skins/rounded1/css.txt \
508 $(SRCDIR)/../skins/rounded1/footer.txt \
509 $(SRCDIR)/../skins/rounded1/header.txt \
510 $(SRCDIR)/diff.tcl
 
511
512 TRANS_SRC = \
513 $(OBJDIR)/add_.c \
514 $(OBJDIR)/allrepo_.c \
515 $(OBJDIR)/attach_.c \
@@ -936,11 +940,11 @@
936
937 $(OBJDIR)/page_index.h: $(TRANS_SRC) $(MKINDEX)
938 $(MKINDEX) $(TRANS_SRC) >$@
939
940 $(OBJDIR)/builtin_data.h: $(MKBUILTIN) $(EXTRA_FILES)
941 $(MKBUILTIN) $(EXTRA_FILES) >$@
942
943 $(OBJDIR)/headers: $(OBJDIR)/page_index.h $(OBJDIR)/builtin_data.h $(MAKEHEADERS) $(OBJDIR)/VERSION.h
944 $(MAKEHEADERS) $(OBJDIR)/add_.c:$(OBJDIR)/add.h \
945 $(OBJDIR)/allrepo_.c:$(OBJDIR)/allrepo.h \
946 $(OBJDIR)/attach_.c:$(OBJDIR)/attach.h \
947
--- win/Makefile.mingw.mistachkin
+++ win/Makefile.mingw.mistachkin
@@ -496,20 +496,24 @@
496 $(SRCDIR)/../skins/eagle/footer.txt \
497 $(SRCDIR)/../skins/eagle/header.txt \
498 $(SRCDIR)/../skins/enhanced1/css.txt \
499 $(SRCDIR)/../skins/enhanced1/footer.txt \
500 $(SRCDIR)/../skins/enhanced1/header.txt \
501 $(SRCDIR)/../skins/etienne1/css.txt \
502 $(SRCDIR)/../skins/etienne1/footer.txt \
503 $(SRCDIR)/../skins/etienne1/header.txt \
504 $(SRCDIR)/../skins/khaki/css.txt \
505 $(SRCDIR)/../skins/khaki/footer.txt \
506 $(SRCDIR)/../skins/khaki/header.txt \
507 $(SRCDIR)/../skins/plain_gray/css.txt \
508 $(SRCDIR)/../skins/plain_gray/footer.txt \
509 $(SRCDIR)/../skins/plain_gray/header.txt \
510 $(SRCDIR)/../skins/rounded1/css.txt \
511 $(SRCDIR)/../skins/rounded1/footer.txt \
512 $(SRCDIR)/../skins/rounded1/header.txt \
513 $(SRCDIR)/diff.tcl \
514 $(SRCDIR)/markdown.md
515
516 TRANS_SRC = \
517 $(OBJDIR)/add_.c \
518 $(OBJDIR)/allrepo_.c \
519 $(OBJDIR)/attach_.c \
@@ -936,11 +940,11 @@
940
941 $(OBJDIR)/page_index.h: $(TRANS_SRC) $(MKINDEX)
942 $(MKINDEX) $(TRANS_SRC) >$@
943
944 $(OBJDIR)/builtin_data.h: $(MKBUILTIN) $(EXTRA_FILES)
945 $(MKBUILTIN) --prefix $(SRCDIR)/ $(EXTRA_FILES) >$@
946
947 $(OBJDIR)/headers: $(OBJDIR)/page_index.h $(OBJDIR)/builtin_data.h $(MAKEHEADERS) $(OBJDIR)/VERSION.h
948 $(MAKEHEADERS) $(OBJDIR)/add_.c:$(OBJDIR)/add.h \
949 $(OBJDIR)/allrepo_.c:$(OBJDIR)/allrepo.h \
950 $(OBJDIR)/attach_.c:$(OBJDIR)/attach.h \
951

Keyboard Shortcuts

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