Skip to content

Commit 1087cf2

Browse files
committed
doc fixes
1 parent 8e0ce2b commit 1087cf2

File tree

7 files changed

+35
-23
lines changed

7 files changed

+35
-23
lines changed

Documentation/TuttleOFX-README.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -294,9 +294,10 @@ launchctl setenv PATH /opt/local/bin:/opt/local/sbin:/usr/bin:/bin:/usr/sbin:/sb
294294
(cd Natron;git checkout workshop;git submodule update -i; git submodule foreach git pull origin master)
295295
cd Natron
296296
cat > config.pri << EOF
297+
boost-serialization-lib: LIBS += -L/opt/local/lib -lboost_serialization-mt
297298
boost{
298299
INCLUDEPATH += /opt/local/include
299-
LIBS += -L/opt/local/lib -lboost_serialization-mt -lboost_thread-mt -lboost_system-mt
300+
LIBS += -L/opt/local/lib -lboost_thread-mt -lboost_system-mt
300301
}
301302
EOF
302303

INSTALL_FREEBSD.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ INCLUDEPATH is the path to the include files
3838
LIBS is the path to the libs
3939

4040
```pri
41-
boost: LIBS += -lboost_serialization
41+
boost-serialization-lib: LIBS += -lboost_serialization
42+
boost: LIBS += -lboost_thread -lboost_system
4243
PKGCONFIG += expat
4344
PKGCONFIG += fontconfig
4445
cairo {

INSTALL_LINUX.md

+9-5
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,8 @@ LIBS is the path to the libs
115115
```
116116
----- copy and paste the following in a terminal -----
117117
cat > config.pri << EOF
118-
boost: LIBS += -lboost_serialization
118+
boost-serialization-lib: LIBS += -lboost_serialization
119+
boost: LIBS += -lboost_thread -lboost_system
119120
expat: LIBS += -lexpat
120121
expat: PKGCONFIG -= expat
121122
cairo: PKGCONFIG -= cairo
@@ -191,7 +192,8 @@ It should be installed in `/usr/local/lib`
191192
For the config.pri, use the following:
192193

193194
```pri
194-
boost: LIBS += -lboost_serialization
195+
boost-serialization-lib: LIBS += -lboost_serialization
196+
boost: LIBS += -lboost_thread -lboost_system
195197
expat: LIBS += -lexpat
196198
expat: PKGCONFIG -= expat
197199
cairo {
@@ -231,13 +233,14 @@ sudo add-apt-repository -y ppa:irie/boost
231233
```
232234
Install the required packages:
233235
```
234-
sudo apt-get install libqt4-dev libboost-serialization-dev libexpat1-dev libcairo2-dev python-dev python-pyside libpyside-dev libshiboken-dev
236+
sudo apt-get install libqt4-dev libboost-serialization-dev libboost-system-dev libexpat1-dev libcairo2-dev python-dev python-pyside libpyside-dev libshiboken-dev
235237
```
236238

237239
For the config.pri use:
238240

239241
```
240-
boost: LIBS += -lboost_serialization
242+
boost-serialization-lib: LIBS += -lboost_serialization
243+
boost: LIBS += -lboost_thread -lboost_system
241244
expat: LIBS += -lexpat
242245
expat: PKGCONFIG -= expat
243246
cairo: PKGCONFIG -= cairo
@@ -260,7 +263,8 @@ yum install fontconfig-devel gcc-c++ expat-devel python-pyside-devel shiboken-de
260263

261264
config.pri:
262265
```pri
263-
boost: LIBS += -lboost_serialization
266+
boost-serialization-lib: LIBS += -lboost_serialization
267+
boost: LIBS += -lboost_thread -lboost_system
264268
PKGCONFIG += expat
265269
PKGCONFIG += fontconfig
266270
cairo {

INSTALL_OSX.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,8 @@ config.pri:
215215
# copy and paste the following in a terminal
216216
cat > config.pri << EOF
217217
boost: INCLUDEPATH += /opt/local/include
218-
boost: LIBS += -L/opt/local/lib -lboost_serialization-mt
218+
boost-serialization-lib: LIBS += -lboost_serialization-mt
219+
boost: LIBS += -L/opt/local/lib -lboost_thread-mt -lboost_system-mt
219220
openmp {
220221
INCLUDEPATH += /opt/local/include/libomp
221222
LIBS += -L/opt/local/lib/libomp -liomp5
@@ -242,7 +243,8 @@ config.pri:
242243
# copy and paste the following in a terminal
243244
cat > config.pri << EOF
244245
boost: INCLUDEPATH += /usr/local/include
245-
boost: LIBS += -L/usr/local/lib -lboost_serialization-mt -lboost_thread-mt -lboost_system-mt
246+
boost-serialization-lib: LIBS += -lboost_serialization-mt
247+
boost: LIBS += -L/usr/local/lib -lboost_thread-mt -lboost_system-mt
246248
expat: PKGCONFIG -= expat
247249
expat: INCLUDEPATH += /usr/local/opt/expat/include
248250
expat: LIBS += -L/usr/local/opt/expat/lib -lexpat

INSTALL_WINDOWS.md

+15-12
Original file line numberDiff line numberDiff line change
@@ -80,14 +80,17 @@ INCLUDEPATH is the path to the include files
8080

8181
LIBS is the path to the libs
8282

83-
----- copy and paste the following in a terminal -----
84-
cat > config.pri << EOF
85-
boost: LIBS += -lboost_serialization
86-
expat: LIBS += -lexpat
87-
expat: PKGCONFIG -= expat
88-
cairo: PKGCONFIG -= cairo
89-
EOF
90-
----- end -----
83+
```
84+
----- copy and paste the following in a terminal -----
85+
cat > config.pri << EOF
86+
boost-serialization-lib: LIBS += -lboost_serialization
87+
boost: LIBS += -lboost_thread -lboost_system
88+
expat: LIBS += -lexpat
89+
expat: PKGCONFIG -= expat
90+
cairo: PKGCONFIG -= cairo
91+
EOF
92+
----- end -----
93+
```
9194

9295
***note:*** *the last line for cairo is only necessary if the package for cairo in your distribution
9396
is lower than version 1.12 (as it is on Ubuntu 12.04 LTS for example).*
@@ -225,8 +228,8 @@ Here's an example of a config.pri file that supports both 32bit and 64bit builds
225228
226229
boost {
227230
INCLUDEPATH += $$quote(C:\\boost)
228-
CONFIG(release, debug|release): LIBS += -L$$quote(C:\\boost\\x64) -lboost_serialization-vc100-mt-1_57
229-
CONFIG(debug, debug|release): LIBS += -L$$quote(C:\\boost\\x64) -lboost_serialization-vc100-mt-gd-1_57
231+
CONFIG(release, debug|release): LIBS += -L$$quote(C:\\boost\\x64) -lboost_serialization-vc100-mt-1_57 -lboost_thread-vc100-mt-1_57 -lboost_system-vc100-mt-1_57
232+
CONFIG(debug, debug|release): LIBS += -L$$quote(C:\\boost\\x64) -lboost_serialization-vc100-mt-gd-1_57 -lboost_thread-vc100-mt-gd-1_57 -lboost_system-vc100-mt-gd-1_57
230233
}
231234
232235
expat{
@@ -265,8 +268,8 @@ shiboken {
265268
266269
boost {
267270
INCLUDEPATH += $$quote(C:\\boost)
268-
CONFIG(release, debug|release): LIBS += -L$$quote(C:\\boost\\win32) -lboost_serialization-vc100-mt-1_57
269-
CONFIG(debug, debug|release): LIBS += -L$$quote(C:\\boost\\win32) -lboost_serialization-vc100-mt-gd-1_57
271+
CONFIG(release, debug|release): LIBS += -L$$quote(C:\\boost\\win32) -lboost_serialization-vc100-mt-1_57 -lboost_thread-vc100-mt-1_57 -lboost_system-vc100-mt-1_57
272+
CONFIG(debug, debug|release): LIBS += -L$$quote(C:\\boost\\win32) -lboost_serialization-vc100-mt-gd-1_57 -lboost_thread-vc100-mt-gd-1_57 -lboost_system-vc100-mt-gd-1_57
270273
}
271274
272275
expat{

Natron.spec

+2-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ Open source compositing software. Node-graph based. Similar in functionalities t
3535
%build
3636
mv Natron-OpenColorIO-Configs-2.1.0 OpenColorIO-Configs
3737
cat << 'EOF' > config.pri
38-
boost: LIBS += -lboost_serialization
38+
boost-serialization-lib: LIBS += -lboost_serialization
39+
boost: LIBS += -lboost_thread -lboost_system
3940
PKGCONFIG += expat
4041
PKGCONFIG += fontconfig
4142
cairo {

Tests/BaseTest.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ TEST_F(BaseTest, SetValues)
263263

264264
assert(generator);
265265
KnobDoublePtr knob = toKnobDouble(generator->getKnobByName("noiseZ"));
266-
EXPECT_TRUE(knob);
266+
EXPECT_TRUE( bool(knob) );
267267
if (!knob) {
268268
return;
269269
}

0 commit comments

Comments
 (0)