From fa69a1b7d5655cef790f4bf78f43d322ba78e3d3 Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Tue, 7 Jul 2015 11:47:48 -0700 Subject: 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 --- libdivecomputer.c | 12 ++++++++++++ libdivecomputer.h | 3 +++ qtserialbluetooth.cpp | 5 +++++ 3 files changed, 20 insertions(+) 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 #include +#include + +#if defined(SSRF_CUSTOM_SERIAL) + #include 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 -- cgit v1.2.3-70-g09d2