9605N/Adiff -Nrup glib-2.12.4/glib/gspawn.c ../SUNWgnome-base-libs-2.16.1-patch03/glib-2.12.4/glib/gspawn.c
9605N/A--- glib-2.12.4/glib/gspawn.c 2006-09-30 16:21:38.000000000 +0200
9605N/A+++ ../SUNWgnome-base-libs-2.16.1-patch03/glib-2.12.4/glib/gspawn.c 2006-10-12 09:38:16.091196000 +0200
9605N/A@@ -1457,7 +1457,11 @@ g_execute (const gchar *file,
9605N/A * what to search if PATH is unset. POSIX may, dunno.
9605N/A */
9605N/A
9605N/A- path = "/bin:/usr/bin:.";
9605N/A+#ifdef sun
9605N/A+ path = "/usr/bin";
9605N/A+#else
9605N/A+ path = "/bin:/usr/bin";
9605N/A+#endif
9605N/A }
9605N/A
9605N/A len = strlen (file) + 1;
10622N/Adiff -Nrup glib-2.13.1/glib/gutils.c ../SUNWgnome-base-libs-2.16.1-patch03/glib-2.13.1/glib/gutils.c
10622N/A--- glib-2.13.1/glib/gutils.c 2006-07-06 22:30:16.000000000 +0200
10622N/A+++ ../SUNWgnome-base-libs-2.16.1-patch03/glib-2.13.1/glib/gutils.c 2006-10-12 09:38:16.081238000 +0200
10622N/A@@ -427,7 +427,11 @@
9605N/A * what to search if PATH is unset. POSIX may, dunno.
9605N/A */
9605N/A
9605N/A+#ifdef sun
10622N/A+ path = "/usr/bin:.";
9605N/A+#else
10622N/A path = "/bin:/usr/bin:.";
9605N/A+#endif
9605N/A }
9605N/A #else
10622N/A n = GetModuleFileNameW (NULL, wfilename, MAXPATHLEN);