Changeset 24721 in webkit
- Timestamp:
- Jul 27, 2007, 5:26:58 AM (18 years ago)
- Location:
- trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/WebKitQt/ChangeLog
r24670 r24721 1 2007-07-27 Holger Hans Peter Freyther <zecke@selfish.org> 2 3 Reviewed by Mark. 4 5 Don't create an app bundle on OSX to keep WebKitTools/Scripts/run-launcher working. 6 7 * QtLauncher/QtLauncher.pro: 8 1 9 2007-07-27 Simon Hausmann <hausmann@kde.org> 2 10 -
trunk/WebKitQt/QtLauncher/QtLauncher.pro
r24641 r24721 1 1 TEMPLATE = app 2 2 SOURCES += main.cpp 3 CONFIG -= app_bundle 3 4 4 5 include(../../WebKit.pri) -
trunk/WebKitTools/ChangeLog
r24712 r24721 1 2007-07-27 Holger Hans Peter Freyther <zecke@selfish.org> 2 3 Reviewed by Mark. 4 5 Correct the path of GdkLauncher and make checkFrameworks work on OSX 6 when building the Qt or Gtk+ port. 7 8 * GdkLauncher/GdkLauncher.pro: Don't create an app bundle on OSX 9 * Scripts/run-launcher: 10 * Scripts/webkitdirs.pm: Don't add WebKit if we build the Qt or Gtk+ port. 11 1 12 2007-07-27 Simon Hausmann <hausmann@kde.org> 2 13 -
trunk/WebKitTools/GdkLauncher/GdkLauncher.pro
r21235 r24721 1 1 TEMPLATE = app 2 2 SOURCES += main.cpp 3 CONFIG -= app_bundle 3 4 4 5 BASE_DIR = $$PWD/../.. -
trunk/WebKitTools/Scripts/run-launcher
r24423 r24721 50 50 51 51 if (isGdk()) { 52 $launcherPath = "$launcherPath/WebKitTools/GdkLauncher ";52 $launcherPath = "$launcherPath/WebKitTools/GdkLauncher/GdkLauncher"; 53 53 } elsif (isQt()) { 54 54 $launcherPath = "$launcherPath/WebKitQt/QtLauncher/QtLauncher"; -
trunk/WebKitTools/Scripts/webkitdirs.pm
r24712 r24721 320 320 return if isCygwin(); 321 321 my @frameworks = ("JavaScriptCore", "WebCore"); 322 push(@frameworks, "WebKit") if isOSX() ;322 push(@frameworks, "WebKit") if isOSX() and not isGdk() and not isQt(); 323 323 for my $framework (@frameworks) { 324 324 my $path = builtDylibPathForName($framework);
Note:
See TracChangeset
for help on using the changeset viewer.