Changeset 105305 in webkit
- Timestamp:
- Jan 18, 2012, 12:12:51 PM (13 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ChangeLog
r105267 r105305 1 2012-01-18 Luciano Wolf <luciano.wolf@openbossa.org> 2 3 [Qt][WK2] Broken build with undefined reference to shm_open and shm_unlink 4 https://bugs.webkit.org/show_bug.cgi?id=76538 5 6 Reviewed by Tor Arne Vestbø. 7 8 The -lrt parameter was coming before -lWebKit2 during linkage. 9 10 Moved rt lib inclusion from Source/api.pri to WebKit2.pri as it should be aware 11 of its own dependencies instead of letting WebKit guess about. Letting 12 it on api.pri can lead to a wrong parameter's order during linker phase. 13 Ubuntu 11.10 was giving errors about SharedMemory (shm_open and 14 shm_unlink undefined symbols). 15 16 * Source/api.pri: 17 1 18 2012-01-18 Balazs Kelemen <kbalazs@webkit.org> 2 19 -
trunk/Source/WebKit2/ChangeLog
r105289 r105305 1 2012-01-18 Luciano Wolf <luciano.wolf@openbossa.org> 2 3 [Qt][WK2] Broken build with undefined reference to shm_open and shm_unlink 4 https://bugs.webkit.org/show_bug.cgi?id=76538 5 6 Reviewed by Tor Arne Vestbø. 7 8 The -lrt parameter was coming before -lWebKit2 during linkage. 9 10 Moved rt lib inclusion from Source/api.pri to WebKit2.pri as it should be aware 11 of its own dependencies instead of letting WebKit guess about. Letting 12 it on api.pri can lead to a wrong parameter's order during linker phase. 13 Ubuntu 11.10 was giving errors about SharedMemory (shm_open and 14 shm_unlink undefined symbols). 15 16 The issue was fixed with the help of Aloisio Almeida and Lauro Venancio. 17 18 * WebKit2.pri: 19 1 20 2012-01-18 Carlos Garnacho <carlosg@gnome.org> 2 21 -
trunk/Source/WebKit2/WebKit2.pri
r104285 r105305 61 61 62 62 INCLUDEPATH += $$WEBKIT2_GENERATED_SOURCES_DIR 63 64 linux-g++*: { 65 # -lrt is required for shm_open and shm_unlink. 66 LIBS += -lrt 67 } -
trunk/Source/api.pri
r104034 r105305 225 225 PRE_TARGETDEPS += $$PWD/qtwebkit-export.map 226 226 QMAKE_LFLAGS += -Wl,--version-script=$$PWD/qtwebkit-export.map 227 228 !no_webkit2: { 229 # -lrt is required for shm_open and shm_unlink. 230 LIBS += -lrt 231 } 232 } 227 }
Note:
See TracChangeset
for help on using the changeset viewer.