From 6c6944be14c6c2d80ca29e5c735487c8ce392f7d Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Thu, 2 May 2024 20:07:03 +0200 Subject: [PATCH] os: utils: drop unused VENDORSUPPORT This doesn't seem to be used anymore for two decades now, so there's probably no need to keep it any longer. Signed-off-by: Enrico Weigelt, metux IT consult Part-of: --- hw/xfree86/common/xf86Init.c | 5 ----- os/utils.c | 4 +--- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/hw/xfree86/common/xf86Init.c b/hw/xfree86/common/xf86Init.c index 1a4da4eb8..97c691975 100644 --- a/hw/xfree86/common/xf86Init.c +++ b/hw/xfree86/common/xf86Init.c @@ -856,13 +856,8 @@ ddxGiveUp(enum ExitCode error) void OsVendorFatalError(const char *f, va_list args) { -#ifdef VENDORSUPPORT - ErrorFSigSafe("\nPlease refer to your Operating System Vendor support " - "pages\nat %s for support on this crash.\n", VENDORSUPPORT); -#else ErrorFSigSafe("\nPlease consult the " XVENDORNAME " support \n\t at " __VENDORDWEBSUPPORT__ "\n for help. \n"); -#endif if (xf86LogFile && xf86LogFileWasOpened) ErrorFSigSafe("Please also check the log file at \"%s\" for additional " "information.\n", xf86LogFile); diff --git a/os/utils.c b/os/utils.c index 78fe246fc..79fcb5f77 100644 --- a/os/utils.c +++ b/os/utils.c @@ -1463,9 +1463,7 @@ enum BadCode { InternalError }; -#if defined(VENDORSUPPORT) -#define BUGADDRESS VENDORSUPPORT -#elif defined(BUILDERADDR) +#if defined(BUILDERADDR) #define BUGADDRESS BUILDERADDR #else #define BUGADDRESS "xorg@freedesktop.org"