diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-09-12 09:19:21 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-09-12 09:27:01 -0700 |
commit | 9cb60c910681b0fb3c04d22c77bcf9c2754bfa7f (patch) | |
tree | c883b03633596fec1a904c7266c492ea833e6807 /display.h | |
parent | 04dc4cdf9d0feab5cd3e8c3aa0ea08addfb3323d (diff) | |
download | subsurface-9cb60c910681b0fb3c04d22c77bcf9c2754bfa7f.tar.gz |
Start some very initial libdivecomputer integration
Ok, so this is quite broken right now: it doesn't actually really *do*
anything, and it now requires that you have libdivecomputer all set up
and installed.
That is fairly easy:
mkdir ../src
cd ../src
git clone git://libdivecomputer.git.sourceforge.net/gitroot/libdivecomputer/libdivecomputer
cd libdivecomputer
autoreconf --install
./configure
make
sudo make install
but you may feel that this is not exactly useful considering that
nothing actually *works* yet.
Some day.
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'display.h')
-rw-r--r-- | display.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -7,6 +7,8 @@ extern GtkWidget *main_window; +extern void import_dialog(GtkWidget *, gpointer); + extern GtkWidget *dive_profile_widget(void); extern GtkWidget *dive_info_frame(void); extern GtkWidget *extended_dive_info_widget(void); |