mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-20 04:02:27 +00:00
beb87d6ad8
kst is a program for looking at data streams. It can plot: - x-y plots - power spectra - histograms - equations (including equations of data streams). - data in files which are being updated as data is being logged, in which case it can act as a plotter for a chart recorder. - much more You can use the mouse to rapidly zoom into interesting parts of the plots. In addition to a complete GUI, kst has a convenient command line interface for rapid access to plotting data in files. kst can read data from stdin. It provides a DCOP interface for remote manipulation, and supports several file formats in use in scientific projects around the world. WWW: http://omega.astro.utoronto.ca/kst/ WWW: http://extragear.kde.org/apps/kst.php
12 lines
314 B
C++
12 lines
314 B
C++
--- kst/kst/stdinsource.cpp.orig Thu Apr 29 02:14:41 2004
|
|
+++ kst/kst/stdinsource.cpp Thu Apr 29 02:15:33 2004
|
|
@@ -28,7 +28,7 @@
|
|
# include <sys/time.h>
|
|
# include <time.h>
|
|
#else
|
|
-# ifdef HAVE_SYS_TIME_H
|
|
+# if defined(HAVE_SYS_TIME_H) || defined(__FreeBSD__)
|
|
# include <sys/time.h>
|
|
# else
|
|
# include <time.h>
|