From f186f2a2e350259164f978456b1aed456cdfa2d5 Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Tue, 16 Aug 2016 04:21:07 -0400 Subject: desktop/wmtimer: New maintainer, minor fixes. --- desktop/wmtimer/compilefix.diff | 60 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 desktop/wmtimer/compilefix.diff (limited to 'desktop/wmtimer/compilefix.diff') diff --git a/desktop/wmtimer/compilefix.diff b/desktop/wmtimer/compilefix.diff new file mode 100644 index 0000000000..f8776af623 --- /dev/null +++ b/desktop/wmtimer/compilefix.diff @@ -0,0 +1,60 @@ +diff -Naur wmtimer-2.92.orig/wmtimer/wmtimer.c wmtimer-2.92/wmtimer/wmtimer.c +--- wmtimer-2.92.orig/wmtimer/wmtimer.c 2004-01-28 21:45:48.000000000 -0500 ++++ wmtimer-2.92/wmtimer/wmtimer.c 2016-08-16 04:10:54.620304460 -0400 +@@ -5,6 +5,8 @@ + #include + #include + #include ++#include ++#include + + #include + #include +@@ -55,11 +57,6 @@ + int delete_event(GtkWidget *widget, GdkEvent *event, gpointer data); + void destroy(GtkWidget *widget, gpointer data); + +-// Functions to avoid 'implicit declaration' warnings +-int atoi(); +-char toupper(); +- +- + /******************************************************************************* + * Globals + ******************************************************************************/ +@@ -568,20 +565,21 @@ + ******************************************************************************/ + void callback(GtkWidget * widget, gpointer data) + { +- if ((char *) data == "alarm_button") ++ char *arg = (char *)data; ++ if (strcmp(arg, "alarm_button") == 0) + tmpMode = ALARM; +- else if ((char *) data == "timer_button") ++ else if (strcmp(arg, "timer_button") == 0) + tmpMode = TIMER; +- else if ((char *) data == "chrono_button") ++ else if (strcmp(arg, "chrono_button") == 0) + tmpMode = CHRONO; +- else if ((char *) data == "bell_button") ++ else if (strcmp(arg, "bell_button") == 0) + { + if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (widget))) + tmpAction.bell = 1; + else + tmpAction.bell = 0; + } +- else if ((char *) data == "command_button") ++ else if (strcmp(arg, "command_button") == 0) + { + if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (widget))) + { +@@ -596,7 +594,7 @@ + gtk_entry_set_editable(GTK_ENTRY (entry), FALSE); + } + } +- else if ((char *) data == "ok") ++ else if (strcmp(arg, "ok") == 0) + { + if (tmpAction.command) + strcpy(command, gtk_entry_get_text(GTK_ENTRY (entry))); -- cgit v1.2.3