diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2015-07-07 11:47:48 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-07-07 21:41:22 -0700 |
commit | fa69a1b7d5655cef790f4bf78f43d322ba78e3d3 (patch) | |
tree | 9004394c20b9732b74fc24622cb9dc9cabad2035 | |
parent | fe8605ed5b31d6dc6be485e3c58006410667c26d (diff) | |
download | subsurface-fa69a1b7d5655cef790f4bf78f43d322ba78e3d3.tar.gz |
Allow to compile Subsurface with upstream libdivecomputer
This will create an inconsistent build that has some UI features implying
BT support but those will be non-functional. I don't think this is the
right thing to do - either fail to build with a decent message or really
remove the BT support.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r-- | libdivecomputer.c | 12 | ||||
-rw-r--r-- | libdivecomputer.h | 3 | ||||
-rw-r--r-- | qtserialbluetooth.cpp | 5 |
3 files changed, 20 insertions, 0 deletions
diff --git a/libdivecomputer.c b/libdivecomputer.c index e308c132d..edefaab14 100644 --- a/libdivecomputer.c +++ b/libdivecomputer.c @@ -924,6 +924,7 @@ const char *do_libdivecomputer_import(device_data_t *data) err = translate("gettextFromC", "Unable to open %s %s (%s)"); +#if defined(SSRF_CUSTOM_SERIAL) if (data->bluetooth_mode) { dc_serial_t *serial_device; @@ -935,6 +936,9 @@ const char *do_libdivecomputer_import(device_data_t *data) } } else { +#else + { +#endif rc = dc_device_open(&data->device, data->context, data->descriptor, data->devname); if (rc != DC_STATUS_SUCCESS && subsurface_access(data->devname, R_OK | W_OK) != 0) @@ -982,11 +986,19 @@ dc_status_t libdc_buffer_parser(struct dive *dive, device_data_t *data, unsigned rc = uwatec_smart_parser_create (&parser, data->context, data->descriptor->model, 0, 0); break; case DC_FAMILY_HW_OSTC: +#if defined(SSRF_CUSTOM_SERIAL) rc = hw_ostc_parser_create (&parser, data->context, data->deviceid, 0); +#else + rc = hw_ostc_parser_create (&parser, data->context, data->deviceid); +#endif break; case DC_FAMILY_HW_FROG: case DC_FAMILY_HW_OSTC3: +#if defined(SSRF_CUSTOM_SERIAL) rc = hw_ostc_parser_create (&parser, data->context, data->deviceid, 1); +#else + rc = hw_ostc_parser_create (&parser, data->context, data->deviceid); +#endif break; default: report_error("Device type not handled!"); diff --git a/libdivecomputer.h b/libdivecomputer.h index 649d89847..911b7d0cd 100644 --- a/libdivecomputer.h +++ b/libdivecomputer.h @@ -53,7 +53,10 @@ extern const char *progress_bar_text; extern double progress_bar_fraction; extern char *logfile_name; extern char *dumpfile_name; + +#if SSRF_CUSTOM_SERIAL extern dc_status_t dc_serial_qt_open(dc_serial_t **out, dc_context_t *context, const char *devaddr); +#endif #ifdef __cplusplus } diff --git a/qtserialbluetooth.cpp b/qtserialbluetooth.cpp index dc67cf17f..0e344f5eb 100644 --- a/qtserialbluetooth.cpp +++ b/qtserialbluetooth.cpp @@ -6,6 +6,10 @@ #include <QTimer> #include <QDebug> +#include <libdivecomputer/version.h> + +#if defined(SSRF_CUSTOM_SERIAL) + #include <libdivecomputer/custom_serial.h> extern "C" { @@ -246,3 +250,4 @@ dc_status_t dc_serial_qt_open(dc_serial_t **out, dc_context_t *context, const ch return DC_STATUS_SUCCESS; } } +#endif |