Commit b36c59c0edbd1c215737f16d4bb83feb035d785a

Guillem Jover 2011-02-23T12:39:58

Conditionalize <time.h> inclusion from <bsd/bsd.h> This was added long time ago to fix some software which was implicitly depending on the header through some other header, and to avoid having to modify such software. Conditionalize it on LIBBSD_CLEAN_INCLUDES, so that buildability can be tested for its future removal.

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/include/bsd/bsd.h b/include/bsd/bsd.h
index 8ebb12c..bba4ac8 100644
--- a/include/bsd/bsd.h
+++ b/include/bsd/bsd.h
@@ -42,6 +42,8 @@
 #include <bsd/md5.h>
 
 /* FIXME: Will be removed in the future. */
+#ifndef LIBBSD_CLEAN_INCLUDES
 #include <time.h>
+#endif
 
 #endif