You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
1.3 KiB

  1. --- a/src/libsox.c
  2. +++ b/src/libsox.c
  3. @@ -65,8 +65,6 @@ sox_version_info_t const * sox_version_i
  4. #else
  5. NULL,
  6. #endif
  7. - /* sox_time */
  8. - __DATE__ " " __TIME__,
  9. /* sox_distro */
  10. #ifdef DISTRO
  11. DISTRO,
  12. --- a/src/sox.h
  13. +++ b/src/sox.h
  14. @@ -1321,7 +1321,6 @@ typedef struct sox_version_info_t {
  15. sox_uint32_t version_code; /**< version number = 0x140400 */
  16. char const * version; /**< version string = sox_version(), for example, "14.4.0" */
  17. char const * version_extra;/**< version extra info or null = "PACKAGE_EXTRA", for example, "beta" */
  18. - char const * time; /**< build time = "__DATE__ __TIME__", for example, "Jan 7 2010 03:31:50" */
  19. char const * distro; /**< distro or null = "DISTRO", for example, "Debian" */
  20. char const * compiler; /**< compiler info or null, for example, "msvc 160040219" */
  21. char const * arch; /**< arch, for example, "1248 48 44 L OMP" */
  22. --- a/src/sox.c
  23. +++ b/src/sox.c
  24. @@ -1828,8 +1828,6 @@ static void display_SoX_version(FILE * f
  25. info->version_extra ? info->version_extra : "");
  26. if (sox_globals.verbosity > 3) {
  27. - if (info->time)
  28. - fprintf(file, "time: %s\n", info->time);
  29. if (info->distro)
  30. fprintf(file, "issue: %s\n", info->distro);
  31. #if HAVE_SYS_UTSNAME_H