]> git.pld-linux.org Git - packages/psi-plus.git/blob - psi-plus-fix_configure_for_ksh.patch
- no longer used
[packages/psi-plus.git] / psi-plus-fix_configure_for_ksh.patch
1 --- configure.orig      2007-10-14 16:00:49.000000000 +0200
2 +++ configure   2008-01-25 15:31:19.691535871 +0100
3 @@ -701,7 +701,7 @@
4                         if(QFile::exists(path))
5                         {
6                                 QString certPathString = 
7 -                                       "QCA_SYSTEMSTORE_PATH=\\\\\\\\\\\\\"" + path + "\\\\\\\\\\\\\"";
8 +                                       "QCA_SYSTEMSTORE_PATH=" + path + "";
9                                 conf->addDefine(certPathString);
10                                 return true;
11                         }
12 @@ -746,7 +746,7 @@
13  
14                 // Qt<4.2 workaround
15                 QString certPathString = 
16 -                       "QCA_SYSTEMSTORE_PATH=\\\\\\\\\\\\\"" + path + "\\\\\\\\\\\\\"";
17 +                       "QCA_SYSTEMSTORE_PATH=" + path + "";
18                 conf->addDefine(certPathString);
19  
20                 return true;
21 @@ -1142,8 +1142,8 @@
22                 QFile file("src/config.h");
23                 if ( file.open(QIODevice::WriteOnly | QIODevice::Text) ) {
24                         QTextStream stream( &file );
25 -                       stream << "#define PSI_LIBDIR \"" << conf->getenv("LIBDIR") << "/psi\"" << endl;
26 -                       stream << "#define PSI_DATADIR \"" << conf->getenv("DATADIR") << "/psi\"" << endl;
27 +                       stream << "#define PSI_LIBDIR \\"" << conf->getenv("LIBDIR") << "/psi\\"" << endl;
28 +                       stream << "#define PSI_DATADIR \\"" << conf->getenv("DATADIR") << "/psi\\"" << endl;
29                 }
30  
31                 conf->addDefine("HAVE_CONFIG");
32
This page took 0.065542 seconds and 3 git commands to generate.