diff options
author | cvs2svn <cvs2svn@FreeBSD.org> | 2000-11-17 12:19:22 +0000 |
---|---|---|
committer | cvs2svn <cvs2svn@FreeBSD.org> | 2000-11-17 12:19:22 +0000 |
commit | d615f4ca564f838b39bd8b504a3107011d951a03 (patch) | |
tree | d799b77773a040bd9f634696266507c9072dd071 /multimedia/mpegedit/files/patch-bb | |
parent | Remove do-package target that was running "make package" in (diff) |
This commit was manufactured by cvs2svn to create tag 'RELEASE_4_2_0'.release/4.2.0
Diffstat (limited to 'multimedia/mpegedit/files/patch-bb')
-rw-r--r-- | multimedia/mpegedit/files/patch-bb | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/multimedia/mpegedit/files/patch-bb b/multimedia/mpegedit/files/patch-bb deleted file mode 100644 index 01c44c3e83c8..000000000000 --- a/multimedia/mpegedit/files/patch-bb +++ /dev/null @@ -1,33 +0,0 @@ ---- ui/text_win.C.orig Sun Jun 18 19:56:57 1995 -+++ ui/text_win.C Thu Jun 15 08:37:50 2000 -@@ -17,6 +17,7 @@ - */ - - #include "text_win.H" -+#include <sys/time.h> - #include <assert.h> - #include <stdlib.h> - -@@ -407,14 +408,22 @@ - long time_elapsed; - long speed; - -+#ifdef __FreeBSD__ -+ gettimeofday(&clk,(struct timezone *)NULL); -+#else - gettimeofday(&clk,(timezone *)NULL); -+#endif - time_elapsed = (clk.tv_sec - last_click.tv_sec)*100; - time_elapsed+=(clk.tv_usec - last_click.tv_usec)/10000; - speed = atol(click_speed); - if((time_elapsed<speed) && (callback!=NULL)) - retval = (*(callback))(callback_data); - } -+#ifdef __FreeBSD__ -+ gettimeofday(&last_click,(struct timezone *)NULL); -+#else - gettimeofday(&last_click,(timezone *)NULL); -+#endif - text.inverse=true; - TList.Write(text); - if(!SendEventFlag) |