]> git.ipfire.org Git - thirdparty/xz.git/commitdiff
Do not check for HAVE_CONFIG_H in tuklib_config.h.
authorLasse Collin <lasse.collin@tukaani.org>
Mon, 17 Feb 2020 21:37:20 +0000 (23:37 +0200)
committerLasse Collin <lasse.collin@tukaani.org>
Mon, 17 Feb 2020 21:37:20 +0000 (23:37 +0200)
In XZ Utils sysdefs.h takes care of it and the required headers.

src/common/tuklib_config.h

index 242092aff75c20919370a9e99460b1eeca3994ed..8f2e9618567769fd1dbf119ef5aab5f2f515cfa8 100644 (file)
@@ -1,8 +1,7 @@
-#ifdef HAVE_CONFIG_H
-#      include "sysdefs.h"
-#else
-#      include <stddef.h>
-#      include <stdbool.h>
-#      include <inttypes.h>
-#      include <limits.h>
-#endif
+#include "sysdefs.h"
+
+// sysdefs.h takes care of these.
+// #include <stddef.h>
+// #include <stdbool.h>
+// #include <inttypes.h>
+// #include <limits.h>