summaryrefslogtreecommitdiff
path: root/graphics
diff options
context:
space:
mode:
authorRoger Hardiman <roger@FreeBSD.org>1999-09-09 18:14:29 +0000
committerRoger Hardiman <roger@FreeBSD.org>1999-09-09 18:14:29 +0000
commita4b3c17418570d8e320a5dbe5946f14795df0aba (patch)
treec713f89e8fc3011f4bf4dcd26b5cf53a110bb4d3 /graphics
parentChange a master-site. (diff)
Add patch submitted by Randall, the FXTV author
Notes
Notes: svn path=/head/; revision=21510
Diffstat (limited to 'graphics')
-rw-r--r--graphics/fxtv/files/patch-ab25
1 files changed, 25 insertions, 0 deletions
diff --git a/graphics/fxtv/files/patch-ab b/graphics/fxtv/files/patch-ab
new file mode 100644
index 000000000000..ce2a6bc2ceea
--- /dev/null
+++ b/graphics/fxtv/files/patch-ab
@@ -0,0 +1,25 @@
+--- t/fxtv-1.00/vidsav_dlg.c Mon Sep 6 10:39:18 1999
++++ vidsav_dlg.c Wed Sep 8 16:39:04 1999
+@@ -70,7 +70,7 @@
+ /* ******************** Local defines ************** */
+
+ #define AV_RAWNAME_FMT "%s.AVraw"
+-#define SCRIPT_FNAME_FMT "./%s.sh"
++#define SCRIPT_FNAME_FMT "%s%s.sh"
+
+ #define OPTIMIZE_NUM_FRAMES 200
+
+@@ -801,9 +801,12 @@
+ char *str;
+ struct stat stat;
+ TV_INT32 i;
++ TV_BOOL has_path;
+
+ /* Open output script file */
+- sprintf( p->script_fname, SCRIPT_FNAME_FMT, p->fname_base );
++ has_path = strchr( "p->fname_base", '/' ) != NULL;
++ sprintf( p->script_fname, SCRIPT_FNAME_FMT,
++ (has_path ? "./" : ""), p->fname_base );
+
+ if ( (fp = fopen( p->script_fname, "wt" )) == NULL ) {
+ fprintf( stderr, "Failed to open for write: %s\n", p->script_fname );