1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-31 21:57:12 +00:00
freebsd-ports/multimedia/mpegedit/files/patch-bb
Alexander Langer 0d731daf26 - Support CC/CXX/CFLAGS/CXXFLAGS/MAKE properly
- Support NOPORTDOCS
- Remove USE_GMAKE
- Add WWW: line into pkg/DESCR
- Add pnm.1 LIB_DEPENDS

PR:		19344
Submitted by:	KATO Tsuguru <tkato@prontomail.ne.jp>
2000-06-28 13:34:38 +00:00

34 lines
867 B
Plaintext

--- 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)