Fossil SCM

Merge trunk. Undo unintended changes in previous commit

jan.nijtmans 2018-08-24 08:29 openssl-1.1 merge
Commit 5583448c56f48337d4b64de0d2d6590f73ca7b07cca2ef991add730c85c35bcd
--- src/backoffice.c
+++ src/backoffice.c
@@ -381,10 +381,11 @@
381381
sqlite3_uint64 tmNow;
382382
383383
if( backofficeDb ) return;
384384
if( g.zRepositoryName==0 ) return;
385385
if( g.db==0 ) return;
386
+ if( !db_table_exists("repository","config") ) return;
386387
tmNow = time(0);
387388
backofficeReadLease(&x);
388389
if( x.tmNext>=tmNow && backofficeProcessExists(x.idNext) ){
389390
/* Another backoffice process is already queued up to run. This
390391
** process does not need to do any backoffice work. */
391392
--- src/backoffice.c
+++ src/backoffice.c
@@ -381,10 +381,11 @@
381 sqlite3_uint64 tmNow;
382
383 if( backofficeDb ) return;
384 if( g.zRepositoryName==0 ) return;
385 if( g.db==0 ) return;
 
386 tmNow = time(0);
387 backofficeReadLease(&x);
388 if( x.tmNext>=tmNow && backofficeProcessExists(x.idNext) ){
389 /* Another backoffice process is already queued up to run. This
390 ** process does not need to do any backoffice work. */
391
--- src/backoffice.c
+++ src/backoffice.c
@@ -381,10 +381,11 @@
381 sqlite3_uint64 tmNow;
382
383 if( backofficeDb ) return;
384 if( g.zRepositoryName==0 ) return;
385 if( g.db==0 ) return;
386 if( !db_table_exists("repository","config") ) return;
387 tmNow = time(0);
388 backofficeReadLease(&x);
389 if( x.tmNext>=tmNow && backofficeProcessExists(x.idNext) ){
390 /* Another backoffice process is already queued up to run. This
391 ** process does not need to do any backoffice work. */
392
--- win/Makefile.mingw.mistachkin
+++ win/Makefile.mingw.mistachkin
@@ -17,14 +17,14 @@
1717
#
1818
1919
#### Select one of MinGW, MinGW-w64 (32-bit) or MinGW-w64 (64-bit) compilers.
2020
# By default, this is an empty string (i.e. use the native compiler).
2121
#
22
-# PREFIX =
22
+PREFIX =
2323
# PREFIX = mingw32-
2424
# PREFIX = i686-pc-mingw32-
25
-PREFIX = i686-w64-mingw32-
25
+# PREFIX = i686-w64-mingw32-
2626
# PREFIX = x86_64-w64-mingw32-
2727
2828
#### The toplevel directory of the source tree. Fossil can be built
2929
# in a directory that is separate from the source tree. Just change
3030
# the following to point from the build directory to the src/ folder.
@@ -63,15 +63,15 @@
6363
FOSSIL_ENABLE_SSL = 1
6464
6565
#### Automatically build OpenSSL when building Fossil (causes rebuild
6666
# issues when building incrementally).
6767
#
68
-FOSSIL_BUILD_SSL = 1
68
+# FOSSIL_BUILD_SSL = 1
6969
7070
#### Enable relative paths in external diff/gdiff
7171
#
72
-FOSSIL_ENABLE_EXEC_REL_PATHS = 1
72
+# FOSSIL_ENABLE_EXEC_REL_PATHS = 1
7373
7474
#### Enable legacy treatment of mv/rm (skip checkout files)
7575
#
7676
FOSSIL_ENABLE_LEGACY_MV_RM = 1
7777
7878
--- win/Makefile.mingw.mistachkin
+++ win/Makefile.mingw.mistachkin
@@ -17,14 +17,14 @@
17 #
18
19 #### Select one of MinGW, MinGW-w64 (32-bit) or MinGW-w64 (64-bit) compilers.
20 # By default, this is an empty string (i.e. use the native compiler).
21 #
22 # PREFIX =
23 # PREFIX = mingw32-
24 # PREFIX = i686-pc-mingw32-
25 PREFIX = i686-w64-mingw32-
26 # PREFIX = x86_64-w64-mingw32-
27
28 #### The toplevel directory of the source tree. Fossil can be built
29 # in a directory that is separate from the source tree. Just change
30 # the following to point from the build directory to the src/ folder.
@@ -63,15 +63,15 @@
63 FOSSIL_ENABLE_SSL = 1
64
65 #### Automatically build OpenSSL when building Fossil (causes rebuild
66 # issues when building incrementally).
67 #
68 FOSSIL_BUILD_SSL = 1
69
70 #### Enable relative paths in external diff/gdiff
71 #
72 FOSSIL_ENABLE_EXEC_REL_PATHS = 1
73
74 #### Enable legacy treatment of mv/rm (skip checkout files)
75 #
76 FOSSIL_ENABLE_LEGACY_MV_RM = 1
77
78
--- win/Makefile.mingw.mistachkin
+++ win/Makefile.mingw.mistachkin
@@ -17,14 +17,14 @@
17 #
18
19 #### Select one of MinGW, MinGW-w64 (32-bit) or MinGW-w64 (64-bit) compilers.
20 # By default, this is an empty string (i.e. use the native compiler).
21 #
22 PREFIX =
23 # PREFIX = mingw32-
24 # PREFIX = i686-pc-mingw32-
25 # PREFIX = i686-w64-mingw32-
26 # PREFIX = x86_64-w64-mingw32-
27
28 #### The toplevel directory of the source tree. Fossil can be built
29 # in a directory that is separate from the source tree. Just change
30 # the following to point from the build directory to the src/ folder.
@@ -63,15 +63,15 @@
63 FOSSIL_ENABLE_SSL = 1
64
65 #### Automatically build OpenSSL when building Fossil (causes rebuild
66 # issues when building incrementally).
67 #
68 # FOSSIL_BUILD_SSL = 1
69
70 #### Enable relative paths in external diff/gdiff
71 #
72 # FOSSIL_ENABLE_EXEC_REL_PATHS = 1
73
74 #### Enable legacy treatment of mv/rm (skip checkout files)
75 #
76 FOSSIL_ENABLE_LEGACY_MV_RM = 1
77
78
--- win/Makefile.mingw.mistachkin
+++ win/Makefile.mingw.mistachkin
@@ -17,14 +17,14 @@
1717
#
1818
1919
#### Select one of MinGW, MinGW-w64 (32-bit) or MinGW-w64 (64-bit) compilers.
2020
# By default, this is an empty string (i.e. use the native compiler).
2121
#
22
-# PREFIX =
22
+PREFIX =
2323
# PREFIX = mingw32-
2424
# PREFIX = i686-pc-mingw32-
25
-PREFIX = i686-w64-mingw32-
25
+# PREFIX = i686-w64-mingw32-
2626
# PREFIX = x86_64-w64-mingw32-
2727
2828
#### The toplevel directory of the source tree. Fossil can be built
2929
# in a directory that is separate from the source tree. Just change
3030
# the following to point from the build directory to the src/ folder.
@@ -63,15 +63,15 @@
6363
FOSSIL_ENABLE_SSL = 1
6464
6565
#### Automatically build OpenSSL when building Fossil (causes rebuild
6666
# issues when building incrementally).
6767
#
68
-FOSSIL_BUILD_SSL = 1
68
+# FOSSIL_BUILD_SSL = 1
6969
7070
#### Enable relative paths in external diff/gdiff
7171
#
72
-FOSSIL_ENABLE_EXEC_REL_PATHS = 1
72
+# FOSSIL_ENABLE_EXEC_REL_PATHS = 1
7373
7474
#### Enable legacy treatment of mv/rm (skip checkout files)
7575
#
7676
FOSSIL_ENABLE_LEGACY_MV_RM = 1
7777
7878
--- win/Makefile.mingw.mistachkin
+++ win/Makefile.mingw.mistachkin
@@ -17,14 +17,14 @@
17 #
18
19 #### Select one of MinGW, MinGW-w64 (32-bit) or MinGW-w64 (64-bit) compilers.
20 # By default, this is an empty string (i.e. use the native compiler).
21 #
22 # PREFIX =
23 # PREFIX = mingw32-
24 # PREFIX = i686-pc-mingw32-
25 PREFIX = i686-w64-mingw32-
26 # PREFIX = x86_64-w64-mingw32-
27
28 #### The toplevel directory of the source tree. Fossil can be built
29 # in a directory that is separate from the source tree. Just change
30 # the following to point from the build directory to the src/ folder.
@@ -63,15 +63,15 @@
63 FOSSIL_ENABLE_SSL = 1
64
65 #### Automatically build OpenSSL when building Fossil (causes rebuild
66 # issues when building incrementally).
67 #
68 FOSSIL_BUILD_SSL = 1
69
70 #### Enable relative paths in external diff/gdiff
71 #
72 FOSSIL_ENABLE_EXEC_REL_PATHS = 1
73
74 #### Enable legacy treatment of mv/rm (skip checkout files)
75 #
76 FOSSIL_ENABLE_LEGACY_MV_RM = 1
77
78
--- win/Makefile.mingw.mistachkin
+++ win/Makefile.mingw.mistachkin
@@ -17,14 +17,14 @@
17 #
18
19 #### Select one of MinGW, MinGW-w64 (32-bit) or MinGW-w64 (64-bit) compilers.
20 # By default, this is an empty string (i.e. use the native compiler).
21 #
22 PREFIX =
23 # PREFIX = mingw32-
24 # PREFIX = i686-pc-mingw32-
25 # PREFIX = i686-w64-mingw32-
26 # PREFIX = x86_64-w64-mingw32-
27
28 #### The toplevel directory of the source tree. Fossil can be built
29 # in a directory that is separate from the source tree. Just change
30 # the following to point from the build directory to the src/ folder.
@@ -63,15 +63,15 @@
63 FOSSIL_ENABLE_SSL = 1
64
65 #### Automatically build OpenSSL when building Fossil (causes rebuild
66 # issues when building incrementally).
67 #
68 # FOSSIL_BUILD_SSL = 1
69
70 #### Enable relative paths in external diff/gdiff
71 #
72 # FOSSIL_ENABLE_EXEC_REL_PATHS = 1
73
74 #### Enable legacy treatment of mv/rm (skip checkout files)
75 #
76 FOSSIL_ENABLE_LEGACY_MV_RM = 1
77
78

Keyboard Shortcuts

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