summaryrefslogtreecommitdiff
path: root/misc/snowflake/files/patch-sf.c
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2011-05-02 07:13:27 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2011-05-02 07:13:27 +0000
commitef246cec1e89f84b601a30b4ef6587e5fd06a213 (patch)
treeb8de52fc5b48e8756bd30a27393767510b8a19db /misc/snowflake/files/patch-sf.c
parentremove unmaintained expired ports from multimedia (diff)
remove unmaintained expired ports from misc
2011-05-01 misc/acron: Upstream disapear and distfile is no more available 2011-05-01 misc/chord: Upstream disapear and distfile is no more available 2011-05-01 misc/datedif: Upstream disapear and distfile is no more available 2011-05-01 misc/earthview: Upstream disapear and distfile is no more available 2011-05-01 misc/fcalc: Upstream disapear and distfile is no more available 2011-05-01 misc/gkrellscore: Upstream disapear and distfile is no more available 2011-05-01 misc/goldstr: Upstream disapear and distfile is no more available 2011-05-01 misc/gtl: Upstream disapear and distfile is no more available 2011-05-01 misc/kp: Upstream disapear and distfile is no more available 2011-05-01 misc/nserver: Upstream disapear and distfile is no more available 2011-05-01 misc/patanjali: Upstream disapear and distfile is no more available 2011-05-01 misc/qmc: Upstream disapear and distfile is no more available 2011-05-01 misc/snowflake: Upstream disapear and distfile is no more available 2011-05-01 misc/translator: Upstream disapear and distfile is no more available 2011-05-01 misc/videotext: Upstream disapear and distfile is no more available 2011-05-01 misc/wmweather: Distfile is no longer available, try misc/wmweather+ 2011-05-01 misc/wmx10: Upstream disapear and distfile is no more available
Diffstat (limited to 'misc/snowflake/files/patch-sf.c')
-rw-r--r--misc/snowflake/files/patch-sf.c55
1 files changed, 0 insertions, 55 deletions
diff --git a/misc/snowflake/files/patch-sf.c b/misc/snowflake/files/patch-sf.c
deleted file mode 100644
index 66c9bbd546be..000000000000
--- a/misc/snowflake/files/patch-sf.c
+++ /dev/null
@@ -1,55 +0,0 @@
---- sf.c.orig Mon Dec 21 00:18:55 1998
-+++ sf.c Sat Oct 7 16:19:50 2006
-@@ -23,9 +23,8 @@
- #include <sys/shm.h>
- #include <sys/sem.h>
-
--#include "sf.h"
--
- #include "getopt.h"
-+#include "sf.h"
-
- /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
-
-@@ -47,6 +46,7 @@
-
- struct option long_options[] =
- {
-+ { "version", 0, 0, c_VERSION },
- { "view-geometry", 1, 0, c_VIEW_GEOMETRY },
- { "control-geometry", 1, 0, c_CONTROL_GEOMETRY },
- { "minimize", 0, 0, c_MINIMIZE },
-@@ -77,6 +77,8 @@
-
- help_info_line help_info[] =
- {
-+ { "version", c_VERSION, " ",
-+ "show program version" },
- { "view-geometry", c_VIEW_GEOMETRY, "+x+y",
- "Control window placement" },
- { "control-geometry", c_CONTROL_GEOMETRY, "+x+y",
-@@ -134,7 +136,7 @@
-
- /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
-
--void main( int argc,char* argv[] )
-+int main( int argc,char* argv[] )
- {
- int i;
- char* shop;
-@@ -175,7 +177,14 @@
- help_info[i].description );
-
- exit( 0 );
-- }
-+ }
-+ /* asking for version? */
-+ if ( ( strncmp( argv[1], "-V", 2 ) == 0 ) ||
-+ ( strncmp( argv[1],"--version",3 ) == 0 ) )
-+ {
-+ printf( "%s - %s\n",program_name,version );
-+ exit( 0 );
-+ }
- }
-
- /* create shared memory image and mutex */