changes from running bootstrap and then make maintainer-clean
[debian/gnuradio] / config.h.in
index 51f756b40ca516d3f130c85a26f502544e4a402a..cf6c437bf2f6e5db69ab98e069d03578fd58e0df 100644 (file)
@@ -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
 
 /* Define to 1 if you have the `nanosleep' function. */
 #undef HAVE_NANOSLEEP
 
+/* Define to 1 if you have the <netdb.h> header file. */
+#undef HAVE_NETDB_H
+
 /* Define to 1 if you have the <netinet/in.h> header file. */
 #undef HAVE_NETINET_IN_H
 
 /* Define to 1 if you have the <unistd.h> header file. */
 #undef HAVE_UNISTD_H
 
-/* Define to 1 if you have the <usb.h> header file. */
-#undef HAVE_USB_H
-
 /* Define to 1 if you have the `usleep' function. */
 #undef HAVE_USLEEP
 
    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 <unistd.h>
+#endif
 static inline int nanosleep(const struct timespec *req, struct timespec *rem) { return usleep(req->tv_sec*1000000+req->tv_nsec/1000); }
 #endif