 |
Hamlib 4.5.5
|
Loading...
Searching...
No Matches
26#define HAVE_ALLOCA_H 1
29#define HAVE_ARPA_INET_H 1
32#define HAVE_CFMAKERAW 1
39#define HAVE_DECL_GAI_STRERROR 1
61#define HAVE_GETADDRINFO 1
67#define HAVE_GETOPT_H 1
70#define HAVE_GETOPT_LONG 1
73#define HAVE_GETPAGESIZE 1
76#define HAVE_GETTIMEOFDAY 1
88#define HAVE_INET_NTOA 1
91#define HAVE_INTTYPES_H 1
112#define HAVE_LIBUSB_1_0_LIBUSB_H 1
118#define HAVE_LIMITS_H 1
121#define HAVE_LINUX_HIDRAW_H 1
124#define HAVE_LINUX_IOCTL_H 1
127#define HAVE_LINUX_PARPORT_H 1
130#define HAVE_LINUX_PPDEV_H 1
133#define HAVE_LOCALE_H 1
145#define HAVE_MALLOC_H 1
151#define HAVE_MEMMOVE 1
154#define HAVE_MEMORY_H 1
160#define HAVE_NANOSLEEP 1
163#define HAVE_NETDB_H 1
166#define HAVE_NETINET_IN_H 1
169#define HAVE_PARALLEL 1
175#define HAVE_PTHREAD 1
178#define HAVE_PTHREAD_H 1
181#define HAVE_PTHREAD_PRIO_INHERIT 1
205#define HAVE_SETITIMER 1
208#define HAVE_SETLOCALE 1
211#define HAVE_SGTTY_H 1
214#define HAVE_SIGACTION 1
217#define HAVE_SIGINFO_T 1
223#define HAVE_SIG_ATOMIC_T 1
229#define HAVE_SNPRINTF 1
235#define HAVE_SOCKETPAIR 1
241#define HAVE_SSIZE_T 1
247#define HAVE_STDDEF_H 1
250#define HAVE_STDINT_H 1
253#define HAVE_STDLIB_H 1
262#define HAVE_STRERROR 1
265#define HAVE_STRINGS_H 1
268#define HAVE_STRING_H 1
271#define HAVE_STRNCASECMP 1
274#define HAVE_STRRCHR 1
283#define HAVE_STRUCT_ADDRINFO 1
286#define HAVE_STRUCT_TIMEZONE 1
292#define HAVE_SYS_IOCTL_H 1
295#define HAVE_SYS_PARAM_H 1
298#define HAVE_SYS_SELECT_H 1
301#define HAVE_SYS_SOCKET_H 1
304#define HAVE_SYS_STAT_H 1
307#define HAVE_SYS_TIME_H 1
310#define HAVE_SYS_TYPES_H 1
316#define HAVE_TERMIOS_H 1
319#define HAVE_TERMIO_H 1
322#define HAVE_UNISTD_H 1
331#define HAVE_VALUES_H 1
343#define HAVE_WINRADIO 1
355#define LT_OBJDIR ".libs/"
361#define PACKAGE "hamlib"
364#define PACKAGE_BUGREPORT "hamlib-developer@lists.sourceforge.net"
367#define PACKAGE_NAME "Hamlib"
370#define PACKAGE_STRING "Hamlib 4.5.5"
373#define PACKAGE_TARNAME "hamlib"
376#define PACKAGE_URL "http://www.hamlib.org"
379#define PACKAGE_VERSION "4.5.5"
394#define STDC_HEADERS 1
398# define _ALL_SOURCE 1
402# define _GNU_SOURCE 1
405#ifndef _POSIX_PTHREAD_SEMANTICS
406# define _POSIX_PTHREAD_SEMANTICS 1
409#ifndef _TANDEM_SOURCE
410# define _TANDEM_SOURCE 1
413#ifndef __EXTENSIONS__
414# define __EXTENSIONS__ 1
419#define VERSION "4.5.5"
447int getopt (
int argc,
char *
const argv[],
const char * optstring);
449extern int optind, opterr, optopt;
452#ifndef HAVE_GETOPT_LONG
454int getopt_long (
int argc,
char *
const argv[],
const char * optstring,
455 const struct option * longopts,
int * longindex);
459int usleep(
unsigned long usec);
462#ifndef HAVE_GETTIMEOFDAY
463#ifdef HAVE_SYS_TIME_H
466#ifndef HAVE_STRUCT_TIMEZONE
472int gettimeofday(
struct timeval *tv,
struct timezone *tz);
476# define timersub(a, b, result) \
478 (result)->tv_sec = (a)->tv_sec - (b)->tv_sec; \
479 (result)->tv_usec = (a)->tv_usec - (b)->tv_usec; \
480 if ((result)->tv_usec < 0) { \
481 --(result)->tv_sec; \
482 (result)->tv_usec += 1000000; \
488typedef size_t ssize_t;
502#ifndef HAVE_STRUCT_ADDRINFO
503#ifdef HAVE_NETINET_IN_H
504#include <netinet/in.h>
509#ifdef HAVE_ARPA_INET_H
510#include <arpa/inet.h>
512#ifdef HAVE_SYS_SOCKET_H
513#include <sys/socket.h>
522 socklen_t ai_addrlen;
523 struct sockaddr *ai_addr;
527#ifndef HAVE_GETADDRINFO
529#ifdef HAVE_NETINET_IN_H
530#include <netinet/in.h>
535#ifdef HAVE_ARPA_INET_H
536#include <arpa/inet.h>
538#ifdef HAVE_SYS_SOCKET_H
539#include <sys/socket.h>
545#define AI_PASSIVE 0x0001
548int getaddrinfo(
const char *node,
const char *service,
549 const struct addrinfo *hints,
struct addrinfo **res);
550void freeaddrinfo(
struct addrinfo *res);
553#if !defined(HAVE_DECL_GAI_STRERROR) && !defined(gai_strerror)
554const char *gai_strerror(
int errcode);