| Server IP : 82.208.35.60 / Your IP : 216.73.216.238 Web Server : Apache/2.4.55 (FreeBSD) OpenSSL/1.1.1q-freebsd PHP/7.3.31 System : FreeBSD server7.d2m.cz 12.4-RELEASE-p9 FreeBSD 12.4-RELEASE-p9 GENERIC amd64 User : studiokobylisy_cz ( 1008) PHP Version : 7.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/ports/astro/celestia/files/ |
Upload File : |
--- src/celestia/kde/kdeapp.cpp.orig 2009-06-22 22:44:21
+++ src/celestia/kde/kdeapp.cpp 2009-08-17 22:04:54
@@ -1367,8 +1367,16 @@
appCore->setTimeZoneBias(0);
appCore->setTimeZoneName(i18n("UTC").latin1());
} else {
+#if defined(__FreeBSD__)
+ /* FreeBSD does not export raw `timezone' and `daylight' values */
+ time_t curtime = time(NULL);
+ struct tm *temptime = localtime(&curtime);
+ appCore->setTimeZoneBias(temptime->tm_gmtoff);
+ appCore->setTimeZoneName(temptime->tm_zone);
+#else
appCore->setTimeZoneBias(-timezone+3600*daylight);
appCore->setTimeZoneName(tzname[daylight?0:1]);
+#endif
}
}