]> git.pld-linux.org Git - packages/Firebird.git/blame - Firebird-FHS.patch
- updated to 2.4.6.27020
[packages/Firebird.git] / Firebird-FHS.patch
CommitLineData
f5058bca
JB
1--- Firebird-2.5.4.26856-0/src/jrd/gds.cpp.orig 2015-05-29 20:19:05.329013419 +0200
2+++ Firebird-2.5.4.26856-0/src/jrd/gds.cpp 2015-05-29 20:33:36.775643514 +0200
3@@ -1754,7 +1754,13 @@
c8a07220 4
0a93a495 5 GDS_init_prefix();
c8a07220 6
0a93a495 7- strcpy(string, fb_prefix_lock); // safe - no BO
668b2a73
KK
8+ const char *lockdir = "/var/lib/firebird";
9+ struct stat sb;
10+ if (stat(lockdir, &sb) == 0 && (sb.st_mode & S_IFMT) == S_IFDIR)
11+ strcpy(string, lockdir);
12+ else
13+ strcpy(string, fb_prefix_lock); // safe - no BO
f5058bca
JB
14+
15 iscSafeConcatPath(string, root);
16 }
668b2a73 17
0a93a495
JB
18--- Firebird-2.5.0.26074-0/src/jrd/os/config_root.h.orig 2010-09-08 10:43:20.000000000 +0200
19+++ Firebird-2.5.0.26074-0/src/jrd/os/config_root.h 2010-10-28 08:36:33.139734339 +0200
20@@ -91,7 +91,7 @@
c8a07220 21 {
0a93a495 22 GetInstallDir();
c8a07220 23 GetRoot();
c8a07220
KK
24- config_file = root_dir + string(CONFIG_FILE);
25+ config_file = "/etc/firebird/" + string(CONFIG_FILE);
26 }
27
0a93a495 28 virtual ~ConfigRoot() {}
c8a07220
KK
29diff -U 3 -H -d -r -N -- Firebird-2.1.1.17910-0~/src/utilities/ibmgr/srvrmgr.cpp Firebird-2.1.1.17910-0/src/utilities/ibmgr/srvrmgr.cpp
30--- Firebird-2.1.1.17910-0~/src/utilities/ibmgr/srvrmgr.cpp 2007-03-28 06:20:36.000000000 +0200
31+++ Firebird-2.1.1.17910-0/src/utilities/ibmgr/srvrmgr.cpp 2008-08-23 16:16:02.000000000 +0200
32@@ -272,7 +272,7 @@
33 rs = "can not quit now, use shut -ign";
34 break;
35 case MSG_STARTERR:
36- rs = "check $FIREBIRD/firebird.log file for errors";
37+ rs = "check /var/log/firebird.log file for errors";
38 break;
39 case MSG_STARTFAIL:
40 rs = "can not start server";
This page took 0.031079 seconds and 4 git commands to generate.