diff Makefile @ 301:2facccc60523

Remove optionality of QtHttp.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 15 May 2023 14:04:33 +0300
parents 3dc88d3814b3
children 52f0da883469
line wrap: on
line diff
--- a/Makefile	Thu May 11 13:58:28 2023 +0300
+++ b/Makefile	Mon May 15 14:04:33 2023 +0300
@@ -2,8 +2,6 @@
 ### Configuration settings for Linux and generic UNIX
 ### See other Makefile.* files for more options.
 ###
-USE_QTHTTP ?= yes
-
 
 # Miscellaneous
 ifneq ($(QT6),)
@@ -20,13 +18,9 @@
 OBJPATH = obj/unix/
 BINEXT =
 
-QT_MODULES = Core Gui Widgets Sql PrintSupport
+QT_MODULES = Core Gui Widgets Sql PrintSupport Network
 
 # Compiler flags and linker flags
-ifeq ($(USE_QTHTTP),yes)
-QT_MODULES += Network
-QT_FLAGS += -DUSE_QTHTTP
-endif
 QT_FLAGS += 
 QT_INCLUDES = -I. $(shell pkg-config --cflags $(addprefix $(QT_VERSION_PREFIX),$(QT_MODULES)))