1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-13 07:34:50 +00:00
freebsd-ports/comms/ge-x2212/files/patch-src__main.c
Max Brazhnikov a69be38555 Add new port comms/ge-x2212:
EEPROM programmer for GE Phoenix SX Radios

WWW: http://members.shaw.ca/swstuff/phoenix2212.html

PR:		ports/169090
Submitted by:	Stephen Hurd <shurd at sasktel.net>
2012-09-18 20:53:36 +00:00

43 lines
1011 B
C

--- ./src/main.c.orig 2004-09-27 05:10:30.000000000 +0000
+++ ./src/main.c 2012-09-18 15:29:36.559079154 +0000
@@ -14,14 +14,31 @@
/* globval so we can do widget lookups */
GtkWidget *app1;
+gboolean uhf=FALSE;
int
main (int argc, char *argv[])
{
+ gchar **remaining_args = NULL;
+ GOptionEntry option_entries[] = {
+ { "uhf",
+ 'u',
+ 0,
+ G_OPTION_ARG_NONE,
+ &uhf,
+ "Use UHF rather than VHF calculations",
+ NULL
+ },
+ { NULL }
+ };
+ GOptionContext *option_context;
+ option_context = g_option_context_new (NULL);
+ g_option_context_add_main_entries (option_context, option_entries, NULL);
gnome_program_init (PACKAGE, VERSION, LIBGNOMEUI_MODULE,
argc, argv,
GNOME_PARAM_APP_DATADIR, PACKAGE_DATA_DIR,
+ GNOME_PARAM_GOPTION_CONTEXT, option_context,
NULL);
/*
@@ -31,7 +48,6 @@
*/
app1 = create_app1 ();
-
gtk_widget_show (app1);
gtk_main ();