From ac999d8f4b50345ffa37c7a69d2591973fd6871e Mon Sep 17 00:00:00 2001 From: Matthew Kilgore Date: Fri, 25 Nov 2022 23:37:25 -0500 Subject: [PATCH] Add DEP_HTTP to the dependency list for QB64-PE Fairly straight forward, QB64-PE's dependency list has to be built into the Makefile for when we're building straight from ./internal/source. Recently it gained a HTTP dependency, so that now needs to be included. Fixes: #255 --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 22f1002e1..9e6f7f7cc 100644 --- a/Makefile +++ b/Makefile @@ -175,6 +175,7 @@ endif DEP_ICON := y DEP_ICON_RC := y DEP_SOCKETS := y + DEP_HTTP := y endif include $(PATH_INTERNAL_C)/libqb/build.mk