1
0
mirror of https://github.com/wine-mirror/wine synced 2024-07-08 03:45:57 +00:00

localspl: Add workaround for old versions of cups.h.

Recent versions of cups.h have HTTP_STATUS_CONTINUE as enum,
so defining it doesn't hurt

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=54166
This commit is contained in:
Fabian Maurer 2023-06-30 18:14:26 +02:00 committed by Alexandre Julliard
parent f9bd79dce2
commit cc3f61e7dd

View File

@ -44,6 +44,9 @@
WINE_DEFAULT_DEBUG_CHANNEL(localspl);
/* cups.h before version 1.7.0 doesn't have HTTP_STATUS_CONTINUE */
#define HTTP_STATUS_CONTINUE 100
#ifdef SONAME_LIBCUPS
static void *libcups_handle;