mirror of
git://sigrok.org/libserialport
synced 2023-08-10 21:13:24 +03:00
Adjust headers and include ordering for MSVC support.
This commit is contained in:
parent
a20ed2965b
commit
e919e2efaa
@ -21,7 +21,13 @@
|
|||||||
#ifndef LIBSERIALPORT_LIBSERIALPORT_INTERNAL_H
|
#ifndef LIBSERIALPORT_LIBSERIALPORT_INTERNAL_H
|
||||||
#define LIBSERIALPORT_LIBSERIALPORT_INTERNAL_H
|
#define LIBSERIALPORT_LIBSERIALPORT_INTERNAL_H
|
||||||
|
|
||||||
|
/* These MSVC-specific defines must appear before other headers.*/
|
||||||
|
#ifdef _MSC_VER
|
||||||
|
#define _CRT_NONSTDC_NO_DEPRECATE
|
||||||
|
#define _CRT_SECURE_NO_WARNINGS
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* These Linux/glibc specific defines must appear before other headers.*/
|
||||||
#ifdef __linux__
|
#ifdef __linux__
|
||||||
/* For timeradd, timersub, timercmp, realpath. */
|
/* For timeradd, timersub, timercmp, realpath. */
|
||||||
#define _BSD_SOURCE 1 /* for glibc < 2.19 */
|
#define _BSD_SOURCE 1 /* for glibc < 2.19 */
|
||||||
@ -30,6 +36,19 @@
|
|||||||
#define _POSIX_C_SOURCE 199309L
|
#define _POSIX_C_SOURCE 199309L
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef LIBSERIALPORT_ATBUILD
|
||||||
|
/* If building with autoconf, include the generated config.h. */
|
||||||
|
#include <config.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifdef LIBSERIALPORT_MSBUILD
|
||||||
|
/* If building with MS tools, define necessary things that
|
||||||
|
would otherwise appear in config.h. */
|
||||||
|
#define SP_PRIV
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#include "libserialport.h"
|
||||||
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
|
@ -21,8 +21,6 @@
|
|||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <config.h>
|
|
||||||
#include "libserialport.h"
|
|
||||||
#include "libserialport_internal.h"
|
#include "libserialport_internal.h"
|
||||||
|
|
||||||
static const struct std_baudrate std_baudrates[] = {
|
static const struct std_baudrate std_baudrates[] = {
|
||||||
|
2
timing.c
2
timing.c
@ -17,8 +17,6 @@
|
|||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <config.h>
|
|
||||||
#include "libserialport.h"
|
|
||||||
#include "libserialport_internal.h"
|
#include "libserialport_internal.h"
|
||||||
|
|
||||||
SP_PRIV void time_get(struct time *time)
|
SP_PRIV void time_get(struct time *time)
|
||||||
|
@ -18,8 +18,6 @@
|
|||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <config.h>
|
|
||||||
#include "libserialport.h"
|
|
||||||
#include "libserialport_internal.h"
|
#include "libserialport_internal.h"
|
||||||
|
|
||||||
/* USB path is a string of at most 8 decimal numbers < 128 separated by dots. */
|
/* USB path is a string of at most 8 decimal numbers < 128 separated by dots. */
|
||||||
|
Loading…
Reference in New Issue
Block a user