X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=config.h.in;h=cf6c437bf2f6e5db69ab98e069d03578fd58e0df;hb=refs%2Fheads%2Fmaster;hp=51f756b40ca516d3f130c85a26f502544e4a402a;hpb=8e7247c7ade739baac9f3470a55e06a61b44c146;p=debian%2Fgnuradio diff --git a/config.h.in b/config.h.in index 51f756b4..cf6c437b 100644 --- a/config.h.in +++ b/config.h.in @@ -51,9 +51,6 @@ /* Define if you have a CBLAS library. */ #undef HAVE_CBLAS -/* Define to 1 if you have the `clock_gettime' function. */ -#undef HAVE_CLOCK_GETTIME - /* Define to 1 if your system has `cosf'. */ #undef HAVE_COSF @@ -142,6 +139,9 @@ /* Define to 1 if you have the `nanosleep' function. */ #undef HAVE_NANOSLEEP +/* Define to 1 if you have the header file. */ +#undef HAVE_NETDB_H + /* Define to 1 if you have the header file. */ #undef HAVE_NETINET_IN_H @@ -313,9 +313,6 @@ /* Define to 1 if you have the header file. */ #undef HAVE_UNISTD_H -/* Define to 1 if you have the header file. */ -#undef HAVE_USB_H - /* Define to 1 if you have the `usleep' function. */ #undef HAVE_USLEEP @@ -372,6 +369,9 @@ your system. */ #undef PTHREAD_CREATE_JOINABLE +/* The size of `void*', as computed by sizeof. */ +#undef SIZEOF_VOIDP + /* If using the C implementation of alloca, define if you know the direction of stack growth for your system; otherwise it will be automatically deduced at runtime. @@ -502,6 +502,9 @@ struct timespec { long tv_nsec; }; #endif +#if HAVE_UNISTD_H +#include +#endif static inline int nanosleep(const struct timespec *req, struct timespec *rem) { return usleep(req->tv_sec*1000000+req->tv_nsec/1000); } #endif