head 1.3; access; symbols pkgsrc-2013Q2:1.3.0.10 pkgsrc-2013Q2-base:1.3 pkgsrc-2012Q4:1.3.0.8 pkgsrc-2012Q4-base:1.3 pkgsrc-2011Q4:1.3.0.6 pkgsrc-2011Q4-base:1.3 pkgsrc-2011Q2:1.3.0.4 pkgsrc-2011Q2-base:1.3 pkgsrc-2009Q4:1.3.0.2 pkgsrc-2009Q4-base:1.3 pkgsrc-2008Q4:1.2.0.14 pkgsrc-2008Q4-base:1.2 pkgsrc-2008Q3:1.2.0.12 pkgsrc-2008Q3-base:1.2 cube-native-xorg:1.2.0.10 cube-native-xorg-base:1.2 pkgsrc-2008Q2:1.2.0.8 pkgsrc-2008Q2-base:1.2 cwrapper:1.2.0.6 pkgsrc-2008Q1:1.2.0.4 pkgsrc-2008Q1-base:1.2 pkgsrc-2007Q4:1.2.0.2 pkgsrc-2007Q4-base:1.2 pkgsrc-2007Q3:1.1.0.4 pkgsrc-2007Q3-base:1.1 pkgsrc-2007Q2:1.1.0.2 pkgsrc-2007Q2-base:1.1; locks; strict; comment @# @; 1.3 date 2009.03.22.15.30.51; author wiz; state dead; branches; next 1.2; 1.2 date 2007.11.05.20.01.00; author drochner; state Exp; branches; next 1.1; 1.1 date 2007.04.18.23.19.28; author wiz; state Exp; branches; next ; desc @@ 1.3 log @Update to 4.10.0, convert to user-destdir. ============ Dasher 4.10.0 ============ * Fix click modes where letters near the edge of the selection box to "leak" out so they could not be selected. * Fix UTF-8 bug so e.g., Japanese and Hebrew work. @ text @$NetBSD: patch-af,v 1.2 2007/11/05 20:01:00 drochner Exp $ --- Src/DasherCore/UserLog.cpp.orig 2007-10-15 15:55:02.000000000 +0200 +++ Src/DasherCore/UserLog.cpp @@@@ -657,6 +657,7 @@@@ void CUserLog::SetOuputFilename(const st #else struct timeval sTimeBuffer; struct timezone sTimezoneBuffer; + time_t help; /* workaround for bad NetBSD struct timeval */ #endif char* szTimeLine = NULL; @@@@ -665,7 +666,8 @@@@ void CUserLog::SetOuputFilename(const st szTimeLine = ctime(&(sTimeBuffer.time)); #else gettimeofday(&sTimeBuffer, &sTimezoneBuffer); - szTimeLine = ctime((const time_t *)&(sTimeBuffer.tv_sec)); + help = sTimeBuffer.tv_sec; + szTimeLine = ctime(&help); #endif if ((szTimeLine != NULL) && (strlen(szTimeLine) > 18)) @ 1.2 log @update to 4.6.1 This switches to the new gnome-2.20 branch. @ text @d1 1 a1 1 $NetBSD$ @ 1.1 log @Add patches to fix compilation on 64-bit NetBSD, working around its problems with struct timeval. Patches supplied by drochner@@ thanks Matthias! @ text @d3 1 a3 1 --- Src/DasherCore/UserLog.cpp.orig 2007-04-18 13:17:45.000000000 +0200 d5 1 a5 1 @@@@ -658,6 +658,7 @@@@ void CUserLog::SetOuputFilename(const st d13 1 a13 1 @@@@ -666,7 +667,8 @@@@ void CUserLog::SetOuputFilename(const st d17 1 a17 1 - szTimeLine = ctime(&(sTimeBuffer.tv_sec)); @