Your ROOT_URL in app.ini is http://git.osmesh.ru/ but you are visiting http://91.221.70.94:3000/MOS/OpenBoard/commit/fdd202001ba8a8cd6c62b593430f8ad948aa239c?style=split&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
9 additions and
4 deletions
thirdparty/freetype/README.txt
thirdparty/xpdf/README.txt
thirdparty/xpdf/xpdf-3.02/goo/GString.cc
@ -6,6 +6,10 @@ instructions
- Download freetype (http://www.freetype.org/download.html#stable)
- Download freetype (http://www.freetype.org/download.html#stable)
- Decompress freetype.XXX.tar.gz
- Decompress freetype.XXX.tar.gz
WIN
- qmake
- nmake
MAC
MAC
- qmake freetype.pro -spec macx-g++
- qmake freetype.pro -spec macx-g++
- make
- make
@ -7,9 +7,10 @@ instructions for version 3.02
- Decompress xpdf-3.02.xx.tar.gz
- Decompress xpdf-3.02.xx.tar.gz
Windows:
Windows:
- using cywin run ./configure
- copy xpdf-3.02/aconf-win32.h into xpdf-3.02/aconf.h
- run qmake xpdf.pro -r -spec win32-g++
- edit xpdf-3.02/aconf.h, add this line "#undef UNICODE"
- run make
- qmake
- nmake
OSX:
OSX:
- cd xpdf-3.02
- cd xpdf-3.02
@ -528,7 +528,7 @@ void GString::formatDouble(double x, char *buf, int bufSize, int prec,
if ( ( neg = x < 0 ) ) {
if ( ( neg = x < 0 ) ) {
x = - x ;
x = - x ;
}
}
x = floor ( x * pow ( 1 0, prec ) + 0.5 ) ;
x = floor ( x * pow ( 10. 0, prec ) + 0.5 ) ;
i = bufSize ;
i = bufSize ;
started = ! trim ;
started = ! trim ;
for ( j = 0 ; j < prec & & i > 1 ; + + j ) {
for ( j = 0 ; j < prec & & i > 1 ; + + j ) {