From d129b7fe13f4abc13975f48b8ff005660ca9e00d Mon Sep 17 00:00:00 2001
From: "A. Maitland Bottoms" <bottoms@debian.org>
Date: Sun, 14 Aug 2022 10:35:22 -0400
Subject: [PATCH] avoid unreproducible date time embedding

by not using __DATE__ and __TIME__ compiler macros.
---
 src/sox/libsox.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/sox/libsox.c b/src/sox/libsox.c
index 8e9ebad..b561012 100644
--- a/src/sox/libsox.c
+++ b/src/sox/libsox.c
@@ -66,7 +66,7 @@ sox_version_info_t const * sox_version_info(void)
         NULL,
 #endif
         /* sox_time */
-        __DATE__ " " __TIME__,
+        NULL,
         /* sox_distro */
 #ifdef DISTRO
         DISTRO,
-- 
2.35.1

