 |
Hamlib 4.6.4
|
Loading...
Searching...
No Matches
14#define ABI_VERSION_MAJOR 4
17#define ABI_VERSION_MINOR 6
20#define ABI_VERSION_PATCH 4
29#define HAVE_ALLOCA_H 1
32#define HAVE_ARPA_INET_H 1
35#define HAVE_CFMAKERAW 1
42#define HAVE_DECL_GAI_STRERROR 1
64#define HAVE_GETADDRINFO 1
70#define HAVE_GETOPT_H 1
73#define HAVE_GETOPT_LONG 1
76#define HAVE_GETPAGESIZE 1
79#define HAVE_GETTIMEOFDAY 1
91#define HAVE_INET_NTOA 1
94#define HAVE_INTTYPES_H 1
115#define HAVE_LIBUSB_1_0_LIBUSB_H 1
121#define HAVE_LIMITS_H 1
124#define HAVE_LINUX_HIDRAW_H 1
127#define HAVE_LINUX_IOCTL_H 1
130#define HAVE_LINUX_PARPORT_H 1
133#define HAVE_LINUX_PPDEV_H 1
136#define HAVE_LOCALE_H 1
151#define HAVE_MALLOC_H 1
157#define HAVE_MEMMOVE 1
166#define HAVE_NANOSLEEP 1
169#define HAVE_NETDB_H 1
172#define HAVE_NETINET_IN_H 1
175#define HAVE_PARALLEL 1
181#define HAVE_PTHREAD 1
184#define HAVE_PTHREAD_H 1
187#define HAVE_PTHREAD_PRIO_INHERIT 1
190#define HAVE_PYTHON "3.14"
211#define HAVE_SETITIMER 1
214#define HAVE_SETLOCALE 1
217#define HAVE_SGTTY_H 1
220#define HAVE_SIGACTION 1
223#define HAVE_SIGINFO_T 1
229#define HAVE_SIG_ATOMIC_T 1
235#define HAVE_SNPRINTF 1
241#define HAVE_SOCKETPAIR 1
247#define HAVE_SSIZE_T 1
253#define HAVE_STDDEF_H 1
256#define HAVE_STDINT_H 1
259#define HAVE_STDIO_H 1
262#define HAVE_STDLIB_H 1
271#define HAVE_STRERROR 1
274#define HAVE_STRINGS_H 1
277#define HAVE_STRING_H 1
280#define HAVE_STRNCASECMP 1
283#define HAVE_STRRCHR 1
292#define HAVE_STRUCT_ADDRINFO 1
295#define HAVE_STRUCT_TIMEZONE 1
301#define HAVE_SYS_IOCTL_H 1
304#define HAVE_SYS_PARAM_H 1
307#define HAVE_SYS_SELECT_H 1
310#define HAVE_SYS_SOCKET_H 1
313#define HAVE_SYS_STAT_H 1
316#define HAVE_SYS_TIME_H 1
319#define HAVE_SYS_TYPES_H 1
325#define HAVE_TERMIOS_H 1
331#define HAVE_UNISTD_H 1
340#define HAVE_VALUES_H 1
343#define HAVE_WCHAR_H 1
355#define HAVE_WINRADIO 1
367#define LT_OBJDIR ".libs/"
373#define PACKAGE "hamlib"
376#define PACKAGE_BUGREPORT "hamlib-developer@lists.sourceforge.net"
379#define PACKAGE_NAME "Hamlib"
382#define PACKAGE_STRING "Hamlib 4.6.4"
385#define PACKAGE_TARNAME "hamlib"
388#define PACKAGE_URL "http://www.hamlib.org"
391#define PACKAGE_VERSION "4.6.4"
408#define STDC_HEADERS 1
412# define _ALL_SOURCE 1
415#ifndef _DARWIN_C_SOURCE
416# define _DARWIN_C_SOURCE 1
419#ifndef __EXTENSIONS__
420# define __EXTENSIONS__ 1
424# define _GNU_SOURCE 1
428#ifndef _HPUX_ALT_XOPEN_SOCKET_API
429# define _HPUX_ALT_XOPEN_SOCKET_API 1
439#ifndef _NETBSD_SOURCE
440# define _NETBSD_SOURCE 1
444#ifndef _OPENBSD_SOURCE
445# define _OPENBSD_SOURCE 1
452#ifndef _POSIX_1_SOURCE
456#ifndef _POSIX_PTHREAD_SEMANTICS
457# define _POSIX_PTHREAD_SEMANTICS 1
460#ifndef __STDC_WANT_IEC_60559_ATTRIBS_EXT__
461# define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1
464#ifndef __STDC_WANT_IEC_60559_BFP_EXT__
465# define __STDC_WANT_IEC_60559_BFP_EXT__ 1
468#ifndef __STDC_WANT_IEC_60559_DFP_EXT__
469# define __STDC_WANT_IEC_60559_DFP_EXT__ 1
472#ifndef __STDC_WANT_IEC_60559_EXT__
473# define __STDC_WANT_IEC_60559_EXT__ 1
476#ifndef __STDC_WANT_IEC_60559_FUNCS_EXT__
477# define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1
480#ifndef __STDC_WANT_IEC_60559_TYPES_EXT__
481# define __STDC_WANT_IEC_60559_TYPES_EXT__ 1
484#ifndef __STDC_WANT_LIB_EXT2__
485# define __STDC_WANT_LIB_EXT2__ 1
488#ifndef __STDC_WANT_MATH_SPEC_FUNCS__
489# define __STDC_WANT_MATH_SPEC_FUNCS__ 1
492#ifndef _TANDEM_SOURCE
493# define _TANDEM_SOURCE 1
503#define VERSION "4.6.4"
521int getopt (
int argc,
char *
const argv[],
const char * optstring);
523extern int optind, opterr, optopt;
526#ifndef HAVE_GETOPT_LONG
528int getopt_long (
int argc,
char *
const argv[],
const char * optstring,
529 const struct option * longopts,
int * longindex);
533int usleep(
unsigned long usec);
536#ifndef HAVE_GETTIMEOFDAY
537#ifdef HAVE_SYS_TIME_H
540#ifndef HAVE_STRUCT_TIMEZONE
546int gettimeofday(
struct timeval *tv,
struct timezone *tz);
550# define timersub(a, b, result) \
552 (result)->tv_sec = (a)->tv_sec - (b)->tv_sec; \
553 (result)->tv_usec = (a)->tv_usec - (b)->tv_usec; \
554 if ((result)->tv_usec < 0) { \
555 --(result)->tv_sec; \
556 (result)->tv_usec += 1000000; \
562typedef size_t ssize_t;
576#ifndef HAVE_STRUCT_ADDRINFO
577#ifdef HAVE_NETINET_IN_H
578#include <netinet/in.h>
583#ifdef HAVE_ARPA_INET_H
584#include <arpa/inet.h>
586#ifdef HAVE_SYS_SOCKET_H
587#include <sys/socket.h>
596 socklen_t ai_addrlen;
597 struct sockaddr *ai_addr;
601#ifndef HAVE_GETADDRINFO
603#ifdef HAVE_NETINET_IN_H
604#include <netinet/in.h>
609#ifdef HAVE_ARPA_INET_H
610#include <arpa/inet.h>
612#ifdef HAVE_SYS_SOCKET_H
613#include <sys/socket.h>
619#define AI_PASSIVE 0x0001
622int getaddrinfo(
const char *node,
const char *service,
623 const struct addrinfo *hints,
struct addrinfo **res);
624void freeaddrinfo(
struct addrinfo *res);
627#if !defined(HAVE_DECL_GAI_STRERROR) && !defined(gai_strerror)
628const char *gai_strerror(
int errcode);