aboutsummaryrefslogtreecommitdiff
path: root/x11/gxset/files
diff options
context:
space:
mode:
authorMario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>2001-12-27 22:17:55 +0000
committerMario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>2001-12-27 22:17:55 +0000
commita3e0ec1a665eae51e5bafb7f2314629984ec32c2 (patch)
tree6abdff90b089d7c6769adca32bc9ef1c9eaf7e0d /x11/gxset/files
parent7231c7748889499b9bbbfd31864ac60442ae3ded (diff)
downloadports-a3e0ec1a665eae51e5bafb7f2314629984ec32c2.tar.gz
ports-a3e0ec1a665eae51e5bafb7f2314629984ec32c2.zip
Notes
Diffstat (limited to 'x11/gxset/files')
-rw-r--r--x11/gxset/files/patch-src:main.c47
1 files changed, 47 insertions, 0 deletions
diff --git a/x11/gxset/files/patch-src:main.c b/x11/gxset/files/patch-src:main.c
new file mode 100644
index 000000000000..4aabf19a2a89
--- /dev/null
+++ b/x11/gxset/files/patch-src:main.c
@@ -0,0 +1,47 @@
+--- src/main.c.orig Thu Dec 27 11:29:55 2001
++++ src/main.c Thu Dec 27 11:33:43 2001
+@@ -30,6 +30,7 @@
+ #include <getopt.h>
+
+ #include <sys/types.h>
++#include <sys/time.h>
+ #include <sys/resource.h>
+ #include <sys/wait.h>
+
+@@ -150,7 +151,7 @@
+ contains(const char *s, const char *kw, XsetInputType t, int *p1, int *p2)
+ {
+ const char *found;
+- const char stmp[128];
++ char stmp[128];
+ int itmp, itmp2;
+
+ found = strstr(s, kw);
+@@ -655,12 +656,12 @@
+ printf("Usage: %s [OPTION ...] FILE ...\n", g_get_prgname());
+
+ fputs ("\n\
+--h, --help display this help and exit\n\
+--V, --version output version information and exit\n\
++-h, display this help and exit\n\
++-V, output version information and exit\n\
+ \n\
+--n, --dry-run print xset commands to stdout\n\
+--c, --no-confirm-dialog don't use the default confirmation dialogs\n\
+--e, --no-error-dialogs print error messages to stderr\n\
++-n, print xset commands to stdout\n\
++-c, don't use the default confirmation dialogs\n\
++-e, print error messages to stderr\n\
+ \n\
+ Report bugs to René Seindal <rene@seindal.dk>.\n",
+ stdout);
+@@ -689,8 +690,7 @@
+ gtk_set_locale ();
+ gtk_init (&argc, &argv);
+
+- while ((optchar = getopt_long(argc, argv, OPTSTRING,
+- long_options, NULL)) != EOF)
++ while ((optchar = getopt(argc, argv, OPTSTRING)) != EOF)
+ {
+ switch (optchar)
+ {