From f47396a7db4bc03ef744220fe53cc9095707b0c7 Mon Sep 17 00:00:00 2001 From: Bram Matthys Date: Sat, 4 Apr 2026 07:54:48 +0200 Subject: [PATCH] Keep using geoip_classic on Windows for this rc1. geoip_mmdb doesn't compile on Windows, will look at it after rc1. Also almost forgot to set this GEOIP_ENGINE ;) --- Makefile.windows | 1 - include/windows/setup.h | 3 +++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile.windows b/Makefile.windows index 881e848ea..9251fc128 100644 --- a/Makefile.windows +++ b/Makefile.windows @@ -275,7 +275,6 @@ DLL_FILES=\ src/modules/geoip_base.dll \ src/modules/geoip_classic.dll \ src/modules/geoip_csv.dll \ - src/modules/geoip_mmdb.dll \ src/modules/geoip-tag.dll \ src/modules/globops.dll \ src/modules/help.dll \ diff --git a/include/windows/setup.h b/include/windows/setup.h index 6c9f25b5e..7decdef24 100644 --- a/include/windows/setup.h +++ b/include/windows/setup.h @@ -62,6 +62,9 @@ #define NTDDI_VERSION 0x06010000 #define _WIN32_WINNT 0x0601 +/* What geoip engine to use */ +#define GEOIP_ENGINE "classic" + /* Generation version number (e.g.: 3 for Unreal3*) */ #define UNREAL_VERSION_GENERATION 6