--- ./panel/foobar-widget.c Tue May 21 16:09:06 2002 +++ ../gnome-core-1.4.1/./panel/foobar-widget.c Fri Jun 28 19:33:53 2002 @@ -539,7 +539,8 @@ static void set_time_cb (GtkWidget *menu_item, char *path) { - char *v[2] = { path }; + char *v[2] = { NULL, NULL }; + v[0] = path; if (gnome_execute_async (g_get_home_dir (), 1, v) < 0) panel_error_dialog (_("Could not call time-admin\n" @@ -562,8 +563,8 @@ const char *formats[] = { N_("%H:%M"), N_("%H:%M:%S"), - N_("%l:%M %p"), - N_("%l:%M:%S %p"), + N_("%I:%M %p"), + N_("%I:%M:%S %p"), NULL }; --- ./panel/gnome-panel-screenshot.c Sun May 26 16:08:42 2002 +++ ../gnome-core-1.4.1/./panel/gnome-panel-screenshot.c Tue Jun 18 17:31:10 2002 @@ -1014,9 +1014,10 @@ gboolean window = FALSE; gint width, height; struct poptOption opts[] = { - {"window", '\0', POPT_ARG_NONE, &window, 0, N_("Grab a window instead of the entire screen"), NULL}, + {"window", '\0', POPT_ARG_NONE, NULL /* &window */, 0, N_("Grab a window instead of the entire screen"), NULL}, {NULL, '\0', 0, NULL, 0, NULL, NULL} }; + opts[0].arg = &window; setlocale (LC_ALL, ""); bindtextdomain (PACKAGE, GNOMELOCALEDIR); --- ./panel/panel.c Sun Apr 28 16:11:41 2002 +++ ../gnome-core-1.4.1/./panel/panel.c Sun Jun 16 15:26:51 2002 @@ -995,7 +995,8 @@ tmp = panel_is_program_in_path ("nautilus"); if (tmp != NULL) { /* nautilus */ - char *exec[] = { "nautilus", (char *)dir, NULL }; + char *exec[] = { "nautilus", NULL /* (char *)dir */, NULL }; + exec[1] = (char *)dir; g_free (tmp); @@ -1014,8 +1015,9 @@ char *exec[] = { "gmc-client", "--create-directory", - (char *)dir, + NULL /* (char *)dir */, NULL }; + exec[2] = (char *)dir; g_free (tmp); --- ./ltmain.sh Fri Jun 7 17:22:40 2002 +++ ../gnome-core-1.4.1/./ltmain.sh Sun Jun 16 15:57:13 2002 @@ -61,7 +61,7 @@ default_mode= help="Try \`$progname --help' for more information." magic="%%%MAGIC variable%%%" -mkdir="mkdir" +mkdir="mkdir -p" mv="mv -f" rm="rm -f" --- ./configure Fri Jun 7 17:22:54 2002 +++ ../gnome-core-1.4.1/./configure Sun Jun 16 15:57:43 2002 @@ -9109,7 +9109,7 @@ fi rm -f conftest* LIBS="$ac_save_LIBS" -] + fi if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then echo "$ac_t""yes" 1>&6