X-Git-Url: http://sigrok.org/gitweb/?a=blobdiff_plain;f=libserialport.h.in;h=8962ef8d942eb5fb6f368408b62feea9998a2a97;hb=f1c916ede191ec398cbe53d7f978078311c25785;hp=4369afa38a983f9ca87fd26a134e1b3ef25bf8a3;hpb=49fd7b1bc249a122e4f27c5d383d7789eac61da3;p=libserialport.git diff --git a/libserialport.h.in b/libserialport.h.in index 4369afa..8962ef8 100644 --- a/libserialport.h.in +++ b/libserialport.h.in @@ -1,7 +1,9 @@ /* * This file is part of the libserialport project. * - * Copyright (C) 2013 Martin Ling + * Copyright (C) 2013, 2015 Martin Ling + * Copyright (C) 2014 Uwe Hermann + * Copyright (C) 2014 Aurelien Jacobs * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as @@ -201,7 +203,7 @@ * for dealing with serial devices at the OS level; this is exposed through the * termios API and dates to the days when serial terminals were common. If your * code relies on many of these facilities you will need to adapt it, because - * libserialport provides only a raw 8-bit channel with no special handling. + * libserialport provides only a raw binary channel with no special handling. * * The second relates to blocking versus non-blocking I/O behaviour. In * Unix-like systems this is normally specified by setting the O_NONBLOCK @@ -1601,32 +1603,32 @@ void sp_default_debug_handler(const char *format, ...); */ /** The libserialport package 'major' version number. */ -#define SP_PACKAGE_VERSION_MAJOR @SP_PACKAGE_VERSION_MAJOR@ +#undef SP_PACKAGE_VERSION_MAJOR /** The libserialport package 'minor' version number. */ -#define SP_PACKAGE_VERSION_MINOR @SP_PACKAGE_VERSION_MINOR@ +#undef SP_PACKAGE_VERSION_MINOR /** The libserialport package 'micro' version number. */ -#define SP_PACKAGE_VERSION_MICRO @SP_PACKAGE_VERSION_MICRO@ +#undef SP_PACKAGE_VERSION_MICRO /** The libserialport package version ("major.minor.micro") as string. */ -#define SP_PACKAGE_VERSION_STRING "@SP_PACKAGE_VERSION@" +#undef SP_PACKAGE_VERSION_STRING /* * Library/libtool version macros (can be used for conditional compilation). */ /** The libserialport libtool 'current' version number. */ -#define SP_LIB_VERSION_CURRENT @SP_LIB_VERSION_CURRENT@ +#undef SP_LIB_VERSION_CURRENT /** The libserialport libtool 'revision' version number. */ -#define SP_LIB_VERSION_REVISION @SP_LIB_VERSION_REVISION@ +#undef SP_LIB_VERSION_REVISION /** The libserialport libtool 'age' version number. */ -#define SP_LIB_VERSION_AGE @SP_LIB_VERSION_AGE@ +#undef SP_LIB_VERSION_AGE /** The libserialport libtool version ("current:revision:age") as string. */ -#define SP_LIB_VERSION_STRING "@SP_LIB_VERSION@" +#undef SP_LIB_VERSION_STRING /** * Get the major libserialport package version number.