Custom Query (204 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (4 - 6 of 204)

1 2 3 4 5 6 7 8 9 10 11 12
Ticket Resolution Summary Owner Reporter
#86 fixed After fontconfig was updated CR3 doesn't start guzzi
Description

I am not quite sure if this is the proper placer to report this or if the following is really the cause but...

After the latest update of fontconfig (yum updated fontconfig-legacy 2.11.94-1 and by yum installed fontconfig 2.11.94-1 CR3 won't start. Redirecting stdout and stderr gives:

2016/01/06 23:03:57.0000 WARN Changing log level from 3 to 1 2016/01/06 23:03:57.0000 WARN Reading list of system fonts using FONTCONFIG 2016/01/06 23:03:57.0000 WARN FONTCONFIG: 0 fonts registered Fatal Error: Cannot open font file(s) .ttf Cannot work without font Cannot init CREngine - exiting

#122 fixed Better handling of non-Unix paths in findutils Lewis Rosenthal
Description

Currently, it is not possible to specify a LOCATE_PATH using drive letters and backslashes, and the entry separator must be a colon.

Thus, this works:

SET LOCATE_PATH=/@unixroot/var/c-locatedb:/@unixroot/var/j-locatedb

but this does not:

SET LOCATE_PATH=c:\var\c-locatedb;c:\var\j-locatedb
#71 fixed Boost build problems abwillis
Description

Build errors in Boost:Log In file included from libs\log\src/text_file_backend.cpp:44:0: ./boost/filesystem/convenience.hpp:19:5: error: #error Configuration not support ed: Boost.Filesystem V3 and later requires std::wstring support

# error Configuration not supported: Boost.Filesystem V3 and later requires s

td::wstring support

...failed gcc.compile.c++ bin.v2\libs\log\build\gcc-4.9.2\release\build-no\link- static\threading-multi/text_multifile_backend.o... gcc.compile.c++ bin.v2\libs\log\build\gcc-4.9.2\release\build-no\link-static\thr eading-multi/timestamp.o libs\log\src/timestamp.cpp:312:5: error: #error Boost.Log: Timestamp generation is not supported for your platform

# error Boost.Log: Timestamp generation is not supported for your platform

Probably should add to the os2.hpp Plus these diffs were needed:

Index: boost/config/platform/os2.hpp
===================================================================
--- boost/config/platform/os2.hpp	(revision 1154)
+++ boost/config/platform/os2.hpp	(working copy)
@@ -24,6 +24,10 @@
 
 #define BOOST_NO_CTYPE_FUNCTIONS
 
+#undef BOOST_LOG_USE_WCHAR_T
+
+#define BOOST_LOG_WITHOUT_WCHAR_T
+
 //
 // thread API's not auto detected:
 //
Index: boost/filesystem/convenience.hpp
===================================================================
--- boost/filesystem/convenience.hpp	(revision 1154)
+++ boost/filesystem/convenience.hpp	(working copy)
@@ -15,7 +15,7 @@
 
 #include <boost/config.hpp>
 
-# if defined( BOOST_NO_STD_WSTRING )
+# if defined( BOOST_NO_STD_WSTRING ) && !defined(__OS2__)
 #   error Configuration not supported: Boost.Filesystem V3 and later requires std::wstring support
 # endif
 
Index: boost/filesystem/fstream.hpp
===================================================================
--- boost/filesystem/fstream.hpp	(revision 1154)
+++ boost/filesystem/fstream.hpp	(working copy)
@@ -14,7 +14,7 @@
 
 #include <boost/config.hpp>
 
-# if defined( BOOST_NO_STD_WSTRING )
+# if defined( BOOST_NO_STD_WSTRING ) && !defined(__OS2__)
 #   error Configuration not supported: Boost.Filesystem V3 and later requires std::wstring support
 # endif
 
Index: libs/log/src/timestamp.cpp
===================================================================
--- libs/log/src/timestamp.cpp	(revision 1154)
+++ libs/log/src/timestamp.cpp	(working copy)
@@ -202,7 +202,7 @@
 
 #endif // _WIN32_WINNT >= 0x0600
 
-#elif defined(_POSIX_TIMERS) && _POSIX_TIMERS > 0
+#elif defined(_POSIX_TIMERS) && _POSIX_TIMERS > 0 || defined(__OS2__)
 
 BOOST_LOG_API int64_t duration::milliseconds() const
 {

1 2 3 4 5 6 7 8 9 10 11 12
Note: See TracQuery for help on using queries.