From 3e25e2167beb3936de3986fad9b6c9bdec82b81f Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Thu, 1 Oct 2015 20:37:28 -0400 Subject: Address Savannah bug #46082 - Can't explicitly build with NMEA drivers. --- driver_navcom.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'driver_navcom.c') diff --git a/driver_navcom.c b/driver_navcom.c index e34a8b80..081cee1a 100644 --- a/driver_navcom.c +++ b/driver_navcom.c @@ -1150,10 +1150,10 @@ static gps_mask_t navcom_parse_input(struct gps_device_t *session) if (session->lexer.type == NAVCOM_PACKET) { return navcom_parse(session, session->lexer.outbuffer, session->lexer.outbuflen); -#ifdef NMEA_ENABLE +#ifdef NMEA0183_ENABLE } else if (session->lexer.type == NMEA_PACKET) { return nmea_parse((char *)session->lexer.outbuffer, session);; -#endif /* NMEA_ENABLE */ +#endif /* NMEA0183_ENABLE */ } else return 0; } -- cgit v1.2.1