Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(374)

Side by Side Diff: third_party/instrumented_libraries/patches/libgtk2.0-0.diff

Issue 392713002: Instrumented libraries: do not assume that "." is not in PATH. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add gdk-pixbuf-query-loaders Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « third_party/instrumented_libraries/patches/libgdk-pixbuf2.0-0.diff ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 diff -rupN ./gtk/gtkmain.c ../gtk+2.0-2.24.10-patched/gtk/gtkmain.c 1 diff -rupN ./gtk/gtkmain.c ../gtk+2.0-2.24.10-patched/gtk/gtkmain.c
2 --- ./gtk/gtkmain.c 2014-05-29 19:39:07.000000000 +0400 2 --- ./gtk/gtkmain.c 2014-05-29 19:39:07.000000000 +0400
3 +++ ../gtk+2.0-2.24.10-patched/gtk/gtkmain.c 2014-05-29 19:44:00.368263970 +0 400 3 +++ ../gtk+2.0-2.24.10-patched/gtk/gtkmain.c 2014-05-29 19:44:00.368263970 +0 400
4 @@ -759,7 +759,7 @@ _overlay_scrollbar_init (void) 4 @@ -759,7 +759,7 @@ _overlay_scrollbar_init (void)
5 return; 5 return;
6 6
7 /* default extension library to use for this release */ 7 /* default extension library to use for this release */
8 - gchar *path = "/usr/lib/liboverlay-scrollbar-0.2.so.0"; 8 - gchar *path = "/usr/lib/liboverlay-scrollbar-0.2.so.0";
9 + gchar *path = "liboverlay-scrollbar-0.2.so.0"; 9 + gchar *path = "liboverlay-scrollbar-0.2.so.0";
10 10
(...skipping 17 matching lines...) Expand all
28 --- ./gtk/Makefile.am 2014-05-29 19:39:07.000000000 +0400 28 --- ./gtk/Makefile.am 2014-05-29 19:39:07.000000000 +0400
29 +++ ../gtk+2.0-2.24.10-patched/gtk/Makefile.am 2014-05-29 19:42:28.029449496 +0 400 29 +++ ../gtk+2.0-2.24.10-patched/gtk/Makefile.am 2014-05-29 19:42:28.029449496 +0 400
30 @@ -1391,8 +1391,10 @@ stamp-icons: $(STOCK_ICONS) 30 @@ -1391,8 +1391,10 @@ stamp-icons: $(STOCK_ICONS)
31 if CROSS_COMPILING 31 if CROSS_COMPILING
32 gtk_update_icon_cache_program = $(GTK_UPDATE_ICON_CACHE) 32 gtk_update_icon_cache_program = $(GTK_UPDATE_ICON_CACHE)
33 else 33 else
34 +# Use the system-installed, uninstrumented gtk-update-icon-cache. The 34 +# Use the system-installed, uninstrumented gtk-update-icon-cache. The
35 +# just-built one cannot be used because it doesn't have the right RPATH set. 35 +# just-built one cannot be used because it doesn't have the right RPATH set.
36 gtk_update_icon_cache_program = \ 36 gtk_update_icon_cache_program = \
37 - ./gtk-update-icon-cache 37 - ./gtk-update-icon-cache
38 +» gtk-update-icon-cache 38 +» /usr/bin/gtk-update-icon-cache
39 endif 39 endif
40 40
41 gtkbuiltincache.h: @REBUILD@ stamp-icons 41 gtkbuiltincache.h: @REBUILD@ stamp-icons
OLDNEW
« no previous file with comments | « third_party/instrumented_libraries/patches/libgdk-pixbuf2.0-0.diff ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698