]> git.pld-linux.org Git - packages/Firebird.git/blob - Firebird-FHS.patch
- moved fb_config to -devel
[packages/Firebird.git] / Firebird-FHS.patch
1 diff -U 3 -H -d -r -N -- Firebird-2.1.1.17910-0~/builds/install/misc/createAliasDB.sh.in Firebird-2.1.1.17910-0/builds/install/misc/createAliasDB.sh.in
2 --- Firebird-2.1.1.17910-0~/builds/install/misc/createAliasDB.sh.in     2005-08-16 12:03:22.000000000 +0200
3 +++ Firebird-2.1.1.17910-0/builds/install/misc/createAliasDB.sh.in      2008-08-23 15:52:25.000000000 +0200
4 @@ -125,7 +125,7 @@
5      aliasName=$1
6      newDB=$2
7  
8 -    AliasFile=$FBRootDir/aliases.conf
9 +    AliasFile=/etc/firebird/aliases.conf
10  
11  
12      checkNameStartsWithSlash $newDB
13 diff -U 3 -H -d -r -N -- Firebird-2.1.1.17910-0~/src/jrd/db_alias.cpp Firebird-2.1.1.17910-0/src/jrd/db_alias.cpp
14 --- Firebird-2.1.1.17910-0~/src/jrd/db_alias.cpp        2006-05-19 17:16:45.000000000 +0200
15 +++ Firebird-2.1.1.17910-0/src/jrd/db_alias.cpp 2008-08-23 17:58:51.000000000 +0200
16 @@ -45,8 +45,7 @@
17  
18  bool ResolveDatabaseAlias(const string& alias, string& database)
19  {
20 -       string alias_filename;
21 -       Firebird::Prefix(alias_filename, ALIAS_FILE);
22 +       string alias_filename = "/etc/firebird/aliases.conf";
23         ConfigFile aliasConfig(false);
24         aliasConfig.setConfigFilePath(alias_filename);
25  
26 diff -U 3 -H -d -r -N -- Firebird-2.1.1.17910-0~/src/jrd/gds.cpp Firebird-2.1.1.17910-0/src/jrd/gds.cpp
27 --- Firebird-2.1.1.17910-0~/src/jrd/gds.cpp     2008-08-23 13:50:58.000000000 +0200
28 +++ Firebird-2.1.1.17910-0/src/jrd/gds.cpp      2008-08-23 18:02:40.000000000 +0200
29 @@ -139,7 +139,7 @@
30  #endif /* WIN_NT */
31  
32  static char fb_prefix_val[MAXPATHLEN];
33 -static char fb_prefix_lock_val[MAXPATHLEN];
34 +static char fb_prefix_lock_val[MAXPATHLEN] = "/var/lib/firebird";
35  static char fb_prefix_msg_val[MAXPATHLEN];
36  static char fbTempDir[MAXPATHLEN];
37  #ifdef EMBEDDED
38 @@ -1090,7 +1090,7 @@
39         while (true) {
40                 if (trace_file_handle == INVALID_HANDLE_VALUE) {
41                         TEXT name[MAXPATHLEN];
42 -                       gds__prefix(name, LOGFILE);
43 +                       sprintf(name, "/var/log/%s", LOGFILE);
44                         // We do not care to close this file. 
45                         // It will be closed automatically when our process terminates.
46                         trace_file_handle = CreateFile(name, GENERIC_WRITE, 
47 @@ -1116,7 +1116,7 @@
48         TEXT name[MAXPATHLEN];
49  
50         // Note: signal-safe code
51 -       gds__prefix(name, LOGFILE);
52 +       sprintf(name, "/var/log/%s", LOGFILE);
53         int file = open(name, O_CREAT | O_APPEND | O_WRONLY, 0660);
54         if (file == -1)
55                 return;
56 @@ -1227,7 +1227,7 @@
57         now = time((time_t *)0);
58  #endif
59  
60 -       gds__prefix(name, LOGFILE);
61 +       sprintf(name, "/var/log/%s", LOGFILE);
62  
63  #ifdef WIN_NT
64         WaitForSingleObject(trace_mutex_handle, INFINITE);
65 @@ -1283,7 +1283,7 @@
66         now = time((time_t *)0);
67  #endif
68  
69 -       gds__prefix(name, LOGFILE);
70 +       sprintf(name, "/var/log/%s", LOGFILE);
71  
72         const int oldmask = umask(0111);
73  #ifdef WIN_NT
74 diff -U 3 -H -d -r -N -- Firebird-2.1.1.17910-0~/src/jrd/jrd_pwd.h Firebird-2.1.1.17910-0/src/jrd/jrd_pwd.h
75 --- Firebird-2.1.1.17910-0~/src/jrd/jrd_pwd.h   2008-05-27 11:27:34.000000000 +0200
76 +++ Firebird-2.1.1.17910-0/src/jrd/jrd_pwd.h    2008-08-23 17:49:56.000000000 +0200
77 @@ -60,7 +60,7 @@
78                                         "security2.fdb";
79  #endif
80  
81 -               gds__prefix(path_buffer, USER_INFO_NAME);
82 +               sprintf(path_buffer, "/var/lib/firebird/%s", USER_INFO_NAME);
83         }
84  
85         static void initialize();
86 diff -U 3 -H -d -r -N -- Firebird-2.1.1.17910-0~/src/jrd/os/config_root.h Firebird-2.1.1.17910-0/src/jrd/os/config_root.h
87 --- Firebird-2.1.1.17910-0~/src/jrd/os/config_root.h    2007-04-05 14:47:15.000000000 +0200
88 +++ Firebird-2.1.1.17910-0/src/jrd/os/config_root.h     2008-08-23 16:09:04.000000000 +0200
89 @@ -83,7 +83,7 @@
90         {
91                 GetRoot();
92                 install_dir = root_dir;
93 -               config_file = root_dir + string(CONFIG_FILE);
94 +               config_file = "/etc/firebird/" + string(CONFIG_FILE);
95         }
96  
97  
98 diff -U 3 -H -d -r -N -- Firebird-2.1.1.17910-0~/src/jrd/svc.cpp Firebird-2.1.1.17910-0/src/jrd/svc.cpp
99 --- Firebird-2.1.1.17910-0~/src/jrd/svc.cpp     2008-05-27 11:27:40.000000000 +0200
100 +++ Firebird-2.1.1.17910-0/src/jrd/svc.cpp      2008-08-23 18:01:19.000000000 +0200
101 @@ -2037,7 +2037,7 @@
102  #endif
103  
104         TEXT name[MAXPATHLEN];
105 -       gds__prefix(name, LOGFILE);
106 +       sprintf(name, "/var/log/%s", LOGFILE);
107         FILE* file = fopen(name, "r");
108         if (file != NULL) {
109  #ifdef SERVICE_THREAD
110 diff -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
111 --- Firebird-2.1.1.17910-0~/src/utilities/ibmgr/srvrmgr.cpp     2007-03-28 06:20:36.000000000 +0200
112 +++ Firebird-2.1.1.17910-0/src/utilities/ibmgr/srvrmgr.cpp      2008-08-23 16:16:02.000000000 +0200
113 @@ -272,7 +272,7 @@
114                 rs = "can not quit now, use shut -ign";
115                 break;
116         case MSG_STARTERR:
117 -               rs = "check $FIREBIRD/firebird.log file for errors";
118 +               rs = "check /var/log/firebird.log file for errors";
119                 break;
120         case MSG_STARTFAIL:
121                 rs = "can not start server";
This page took 0.038351 seconds and 3 git commands to generate.