Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OpenBoard
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lifo
Nicolas Ollinger
OpenBoard
Commits
4769e14f
Commit
4769e14f
authored
May 17, 2011
by
Claudio Valerio
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed bug relative to pdf character visualization
parent
69f5b70d
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
23 additions
and
18 deletions
+23
-18
README.txt
thirdparty/freetype/README.txt
+7
-5
freetype.pro
thirdparty/freetype/freetype.pro
+3
-4
libs.pri
thirdparty/libs.pri
+1
-1
README.txt
thirdparty/xpdf/README.txt
+5
-1
Makefile
thirdparty/xpdf/xpdf-3.02/splash/Makefile
+1
-1
Makefile
thirdparty/xpdf/xpdf-3.02/xpdf/Makefile
+2
-2
xpdf.pro
thirdparty/xpdf/xpdf.pro
+4
-4
No files found.
thirdparty/freetype/README.txt
View file @
4769e14f
...
@@ -3,8 +3,10 @@ How to build freetype
...
@@ -3,8 +3,10 @@ How to build freetype
instructions
instructions
1. Download freetype (http://www.freetype.org/download.html#stable)
- Download freetype (http://www.freetype.org/download.html#stable)
2. Decompress freetype.XXX.tar.gz
- Decompress freetype.XXX.tar.gz
3. Update on freetype.pro file the freetype directory
4. Run qmake freetype.pro (on mac add -spec macx-g++)
LINUX:
5. Run make
- qmake freetype.pro -spec linux-g++
- make
thirdparty/freetype/freetype.pro
View file @
4769e14f
...
@@ -29,11 +29,10 @@ INCLUDEPATH += "$$FREETYPE_DIR_WITH_VERSION/include"
...
@@ -29,11 +29,10 @@ INCLUDEPATH += "$$FREETYPE_DIR_WITH_VERSION/include"
DEFINES
=
"FT2_BUILD_LIBRARY"
DEFINES
=
"FT2_BUILD_LIBRARY"
FREETYPE_DIR
=
"$$[UNIBOARD_DIR]/thirdparty/freetype/$$FREETYPE_DIR_WITH_VERSION"
target
.
path
=
"lib"
target
.
path
=
"$$FREETYPE_DIR/lib"
ft2build
.
path
=
"$$FREETYPE_DIR_WITH_VERSION/include"
ft2build
.
path
=
"$$FREETYPE_DIR/include"
ft2build
.
files
=
"$$FREETYPE_DIR_WITH_VERSION/include/ft2build.h"
ft2build
.
files
=
"$$FREETYPE_DIR_WITH_VERSION/include/ft2build.h"
headers
.
path
=
"$$FREETYPE_DIR/include/freetype"
headers
.
path
=
"$$FREETYPE_DIR
_WITH_VERSION
/include/freetype"
headers
.
files
=
"$$FREETYPE_DIR_WITH_VERSION/include/freetype/config"
"$$FREETYPE_DIR_WITH_VERSION/include/freetype/*.h"
headers
.
files
=
"$$FREETYPE_DIR_WITH_VERSION/include/freetype/config"
"$$FREETYPE_DIR_WITH_VERSION/include/freetype/*.h"
INSTALLS
+=
"target"
"ft2build"
"headers"
INSTALLS
+=
"target"
"ft2build"
"headers"
...
...
thirdparty/libs.pri
View file @
4769e14f
...
@@ -12,7 +12,7 @@ win32 {
...
@@ -12,7 +12,7 @@ win32 {
}
}
FREETYPE_DIR = "$$PWD/freetype/freetype-2.4.4"
FREETYPE_DIR = "$$PWD/freetype/freetype-2.4.4"
LIBS += "-L
"
$$PWD/freetype/lib/$$SUB_LIB" "-lfreetype"
LIBS += "-L$$PWD/freetype/lib/$$SUB_LIB" "-lfreetype"
# no INCLUDEPATH, freetype is not used directly
# no INCLUDEPATH, freetype is not used directly
XPDF_DIR = "$$PWD/xpdf/xpdf-3.02"
XPDF_DIR = "$$PWD/xpdf/xpdf-3.02"
...
...
thirdparty/xpdf/README.txt
View file @
4769e14f
...
@@ -15,7 +15,11 @@ OSX:
...
@@ -15,7 +15,11 @@ OSX:
- run ./configure (may need extrea options ?)
- run ./configure (may need extrea options ?)
Linux:
Linux:
- run ./configure
- cd xpdf-3.02
- ./configure --with-freetype2-library="../../freetype/lib/linux" --with-freetype2-includes="../../freetype/freetype-2.4.4/include"
- cd ..
- qmake xpdf.pdf -spec linux-g++
- make:
- Run qmake (-spec macx-g++ on OSX)
- Run qmake (-spec macx-g++ on OSX)
- Run make (nmake on windows)
- Run make (nmake on windows)
thirdparty/xpdf/xpdf-3.02/splash/Makefile
View file @
4769e14f
...
@@ -16,7 +16,7 @@ GOOLIBDIR = ../goo
...
@@ -16,7 +16,7 @@ GOOLIBDIR = ../goo
FOFISRCDIR
=
$(srcdir)
/../fofi
FOFISRCDIR
=
$(srcdir)
/../fofi
FOFILIBDIR
=
../fofi
FOFILIBDIR
=
../fofi
CXXFLAGS
=
-g
-O2
-DHAVE_CONFIG_H
-I
..
-I
$(GOOSRCDIR)
-I
$(FOFISRCDIR)
-I
$(srcdir)
CXXFLAGS
=
-g
-O2
-DHAVE_CONFIG_H
-I
..
-I
$(GOOSRCDIR)
-I
$(FOFISRCDIR)
-I
$(srcdir)
-I
../../freetype/freetype-2.4.4/include
CXX
=
g++
CXX
=
g++
AR
=
ar rc
AR
=
ar rc
...
...
thirdparty/xpdf/xpdf-3.02/xpdf/Makefile
View file @
4769e14f
...
@@ -19,12 +19,12 @@ FOFILIBDIR = ../fofi
...
@@ -19,12 +19,12 @@ FOFILIBDIR = ../fofi
SPLASHSRCDIR
=
$(srcdir)
/../splash
SPLASHSRCDIR
=
$(srcdir)
/../splash
SPLASHLIBDIR
=
../splash
SPLASHLIBDIR
=
../splash
CXXFLAGS
=
-g
-O2
-DHAVE_CONFIG_H
-I
..
-I
$(GOOSRCDIR)
-I
$(FOFISRCDIR)
-I
$(SPLASHSRCDIR)
-I
$(srcdir)
CXXFLAGS
=
-g
-O2
-DHAVE_CONFIG_H
-I
..
-I
$(GOOSRCDIR)
-I
$(FOFISRCDIR)
-I
$(SPLASHSRCDIR)
-I
$(srcdir)
-I
../../freetype/freetype-2.4.4/include
LDFLAGS
=
LDFLAGS
=
T1LIBS
=
T1LIBS
=
FTLIBS
=
FTLIBS
=
-L
../../freetype/lib/linux
-lfreetype
XLIBS
=
-lXt
-lXext
-lSM
-lICE
-lX11
XLIBS
=
-lXt
-lXext
-lSM
-lICE
-lX11
...
...
thirdparty/xpdf/xpdf.pro
View file @
4769e14f
TEMPLATE
=
lib
TEMPLATE
=
lib
CONFIG
+=
staticlib
release
warn_off
CONFIG
+=
staticlib
release
XPDF_DIR
=
"xpdf-3.02"
XPDF_DIR
=
"xpdf-3.02"
...
@@ -21,15 +21,15 @@ OBJECTS_DIR = "objects"
...
@@ -21,15 +21,15 @@ OBJECTS_DIR = "objects"
macx
{
macx
{
CONFIG
+=
x86
ppc
CONFIG
+=
x86
ppc
QMAKE_MACOSX_DEPLOYMENT_TARGET
=
"10.
4
"
QMAKE_MACOSX_DEPLOYMENT_TARGET
=
"10.
5
"
}
}
# Free type includes and lib
# Free type includes and lib
FREETYPE_DIR
=
"../freetype/freetype-2.4.4"
FREETYPE_DIR
=
"../freetype/freetype-2.4.4"
INCLUDEPATH
+=
"$$FREETYPE_DIR/include"
"$$FREETYPE_DIR/include/freetype2"
INCLUDEPATH
+=
"$$FREETYPE_DIR/include"
"$$FREETYPE_DIR/include/freetype2"
LIBS
+=
"-L
freetype/lib
"
"-lfreetype"
LIBS
+=
"-L
../freetype/lib/$$SUB_LIB
"
"-lfreetype"
INCLUDEPATH
+=
$$
XPDF_DIR
$$
XPDF_DIR
"$$XPDF_DIR/fofi"
"$$XPDF_DIR/goo"
"$$XPDF_DIR/splash"
"$$XPDF_DIR/include"
xpdf
-
3.02
Extra
INCLUDEPATH
+=
$$
XPDF_DIR
"$$XPDF_DIR/fofi"
"$$XPDF_DIR/goo"
"$$XPDF_DIR/splash"
"$$XPDF_DIR/include"
"xpdf-3.02Extra"
aconf
.
path
=
$$
XPDF_DIR
aconf
.
path
=
$$
XPDF_DIR
aconf
.
files
=
$$
XPDF_DIR
/
aconf
.
h
aconf
.
files
=
$$
XPDF_DIR
/
aconf
.
h
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment