mirror of
https://github.com/curl/curl.git
synced 2024-12-21 06:50:10 +08:00
4d73854462
Most of them feature guards:
- `CURL_INCLUDES_SYS_UIO` [1]
- `HAVE_ALLOCA_H` [2]
- `HAVE_CRYPTO_CLEANUP_ALL_EX_DATA` (unused since de71e68000
)
- `HAVE_DLFCN_H`
- `HAVE_DLOPEN`
- `HAVE_DOPRNT`
- `HAVE_FCNTL`
- `HAVE_GETHOSTBYNAME` [3]
- `HAVE_GETOPT_H`
- `HAVE_GETPASS`
- `HAVE_GETPROTOBYNAME`
- `HAVE_GETSERVBYNAME`
- `HAVE_IDN_FREE*`
- `HAVE_INET_ADDR`
- `HAVE_IOCTL`
- `HAVE_KRB4`
- `HAVE_KRB_GET_OUR_IP_FOR_REALM`
- `HAVE_KRB_H`
- `HAVE_LDAPSSL_H`
- `HAVE_LDAP_INIT_FD`
- `HAVE_LIBDL`
- `HAVE_LIBNSL`
- `HAVE_LIBRESOLV*`
- `HAVE_LIBUCB`
- `HAVE_LL`
- `HAVE_LOCALTIME_R`
- `HAVE_MALLOC_H`
- `HAVE_MEMCPY`
- `HAVE_MEMORY_H`
- `HAVE_NETINET_IF_ETHER_H`
- `HAVE_NI_WITHSCOPEID`
- `HAVE_OPENSSL_CRYPTO_H`
- `HAVE_OPENSSL_ERR_H`
- `HAVE_OPENSSL_PEM_H`
- `HAVE_OPENSSL_PKCS12_H`
- `HAVE_OPENSSL_RAND_H`
- `HAVE_OPENSSL_RSA_H`
- `HAVE_OPENSSL_SSL_H`
- `HAVE_OPENSSL_X509_H`
- `HAVE_PEM_H`
- `HAVE_POLL`
- `HAVE_RAND_SCREEN`
- `HAVE_RAND_STATUS`
- `HAVE_RECVFROM`
- `HAVE_SETSOCKOPT`
- `HAVE_SETVBUF`
- `HAVE_SIZEOF_LONG_DOUBLE`
- `HAVE_SOCKIO_H`
- `HAVE_SOCK_OPTS`
- `HAVE_STDIO_H`
- `HAVE_STRCASESTR`
- `HAVE_STRFTIME`
- `HAVE_STRLCAT`
- `HAVE_STRNCMPI`
- `HAVE_STRNICMP`
- `HAVE_STRSTR`
- `HAVE_STRUCT_IN6_ADDR`
- `HAVE_TLD_H`
- `HAVE_TLD_STRERROR`
- `HAVE_UNAME`
- `HAVE_USLEEP`
- `HAVE_WINBER_H`
- `HAVE_WRITEV`
- `HAVE_X509_H`
- `LT_OBJDIR`
- `NEED_BASENAME_PROTO`
- `NOT_NEED_LIBNSL`
- `OPENSSL_NO_KRB5`
- `RECVFROM_TYPE*`
- `SIZEOF_LONG_DOUBLE`
- `STRERROR_R_TYPE_ARG3`
- `USE_YASSLEMUL`
- `_USRDLL` (from CMake) [4]
[1] Related parts in `m4/curl-functions.m4` and `configure.ac` might
also be deleted.
[2] Related comment can possibly be deleted in
`packages/vms/generate_config_vms_h_curl.com`.
[3] There are more instances of this in autotools, but I did not dare to
touch those. Looked like it's used to detect socket support.
[4] This is necessary for MFC (Microsoft Foundation Class) DLLs to
force linking MFC components statically to the DLL. `libcurl.dll`
does not use MFC, so we can delete this define.
Ref: https://docs.microsoft.com/cpp/build/regular-dlls-statically-linked-to-mfc
Script that can help finding unused settings like above:
```shell
autoheader configure.ac # generate lib/curl_config.h.in
{
grep -o -E 'set\([A-Z][A-Z0-9_]{3,}' CMake/Platforms/WindowsCache.cmake | sed -E 's|set\(||g'
grep -o -E -h '#define +[A-Z][A-Z0-9_]{3,}' lib/config-*.h | sed -E 's|#define +||g'
grep -o -E '#cmakedefine +[A-Z][A-Z0-9_]{3,}' lib/curl_config.h.cmake | sed -E 's|#cmakedefine +||g'
grep -o -E '#undef +[A-Z][A-Z0-9_]{3,}' lib/curl_config.h.in | sed -E 's|#undef +||g'
} | sort -u | grep -v -F 'HEADER_CURL_' | while read -r def; do
c="$(git grep -w -F "${def}" | grep -v -E -c '(/libcurl\.tmpl|^lib/config-|^lib/curl_config\.h\.cmake|^CMakeLists\.txt|^CMake/Platforms/WindowsCache\.cmake|^packages/vms/config_h\.com|^m4/curl-functions\.m4|^acinclude\.m4|^configure\.ac)')"
if [ "${c}" = '0' ]; then
echo "${def}"
fi
done
```
Reviewed-by: Daniel Stenberg
Closes #9044
224 lines
5.3 KiB
Plaintext
224 lines
5.3 KiB
Plaintext
#***************************************************************************
|
|
# _ _ ____ _
|
|
# Project ___| | | | _ \| |
|
|
# / __| | | | |_) | |
|
|
# | (__| |_| | _ <| |___
|
|
# \___|\___/|_| \_\_____|
|
|
#
|
|
# Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
|
|
#
|
|
# This software is licensed as described in the file COPYING, which
|
|
# you should have received as part of this distribution. The terms
|
|
# are also available at https://curl.se/docs/copyright.html.
|
|
#
|
|
# You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
# copies of the Software, and permit persons to whom the Software is
|
|
# furnished to do so, under the terms of the COPYING file.
|
|
#
|
|
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
# KIND, either express or implied.
|
|
#
|
|
# SPDX-License-Identifier: curl
|
|
#
|
|
###########################################################################
|
|
#
|
|
# Common defines for curl (djgpp/Watt-32)
|
|
#
|
|
# Assumes you've unpacked curl with long-file names
|
|
# I.e use "set LFN=y" before untaring on Win9x/XP.
|
|
# Requires sed, rm and the usual stuff.
|
|
#
|
|
# Define TOPDIR before including this file.
|
|
|
|
MAKEFILE = Makefile.dj
|
|
OBJ_DIR = djgpp
|
|
|
|
#
|
|
# Find out if using a Unix-like shell or a DOS command interpreter
|
|
#
|
|
ifneq ($(findstring COMMAND.COM,$(SHELL)),COMMAND.COM)
|
|
ifneq ($(findstring CMD.EXE,$(SHELL)),CMD.EXE)
|
|
ifneq ($(findstring 4DOS.COM,$(SHELL)),4DOS.COM)
|
|
IS_UNIX_SHELL = 1
|
|
endif
|
|
endif
|
|
endif
|
|
|
|
#
|
|
# Define shell dependent commands and vars
|
|
#
|
|
ifeq ($(IS_UNIX_SHELL),1)
|
|
COPY = cp -f
|
|
DELETE = rm -f
|
|
MKDIR = mkdir
|
|
RMDIR = rm -f -r
|
|
DS = /
|
|
else
|
|
COPY = copy
|
|
DELETE = del
|
|
MKDIR = mkdir
|
|
RMDIR = rmdir
|
|
DS = \$(NOTHING)
|
|
endif
|
|
|
|
ifeq ($(OS),Windows_NT)
|
|
#
|
|
# Windows hosted djgpp cross compiler. Get it from:
|
|
# https://github.com/andrewwutw/build-djgpp/releases
|
|
#
|
|
DJ_PREFIX ?= c:/some-path/djgpp/bin/i586-pc-msdosdjgpp-
|
|
CC = $(DJ_PREFIX)gcc
|
|
|
|
else
|
|
#
|
|
# The normal djgpp 'gcc' for MSDOS.
|
|
#
|
|
CC = gcc
|
|
endif
|
|
|
|
#
|
|
# OpenSSL is available from www.openssl.org and builds okay
|
|
# with djgpp/Watt-32. Set to 0 if you don't need https URLs
|
|
# (reduces curl.exe with approx 700 kB)
|
|
#
|
|
USE_OPENSSL ?= 0
|
|
|
|
#
|
|
# Use zlib for contents encoding. Needed for 'USE_OPENSSL=1' too.
|
|
#
|
|
USE_ZLIB ?= 0
|
|
|
|
#
|
|
# Use libidn for international domain names
|
|
#
|
|
USE_IDNA ?= 0
|
|
|
|
#
|
|
# Use Watt-32 IPv6 stack (only IPv6 name resolution working at the moment)
|
|
#
|
|
USE_IPV6 ?= 0
|
|
|
|
#
|
|
# Use C-Ares resolver library
|
|
#
|
|
USE_ARES ?= 0
|
|
|
|
#
|
|
# Enable debug code in libcurl/curl
|
|
#
|
|
USE_DEBUG ?= 0
|
|
|
|
#
|
|
# Enable memory tracking code in libcurl/curl
|
|
#
|
|
USE_CURLDEBUG ?= 0
|
|
|
|
#
|
|
# Generate a .map file in 'link_EXE' macro
|
|
#
|
|
MAKE_MAP_FILE ?= 0
|
|
|
|
default: all
|
|
|
|
#
|
|
# Root directory for Waterloo tcp/ip etc. Change to suite.
|
|
# WATT_ROOT should be set during Watt-32 install.
|
|
#
|
|
WATT32_ROOT = $(realpath $(WATT_ROOT))
|
|
OPENSSL_ROOT ?= $(TOPDIR)/../crypto/OpenSSL
|
|
ZLIB_ROOT ?= e:/djgpp/contrib/zlib
|
|
LIBIDN_ROOT ?= $(TOPDIR)/../IDN/libidn
|
|
ARES_ROOT ?= $(TOPDIR)/../DNS/c-ares
|
|
|
|
CFLAGS = -g -O2 -I. -I$(TOPDIR)/include -I$(TOPDIR)/lib \
|
|
-I$(WATT32_ROOT)/inc -Wall -DHAVE_CONFIG_H
|
|
|
|
ifeq ($(USE_OPENSSL),1)
|
|
CFLAGS += -DUSE_OPENSSL -I$(OPENSSL_ROOT)/include
|
|
|
|
#
|
|
# Squelch the warnings on deprecated functions.
|
|
#
|
|
CFLAGS += -DOPENSSL_SUPPRESS_DEPRECATED
|
|
|
|
#
|
|
# Use some of these too?
|
|
#
|
|
# CFLAGS += -DUSE_TLS_SRP=1 \
|
|
# -DHAVE_ENGINE_LOAD_BUILTIN_ENGINES \
|
|
# -DHAVE_SSLV2_CLIENT_METHOD \
|
|
# -DOPENSSL_NO_DEPRECATED
|
|
|
|
#
|
|
# 'libcomm.a' is normally 'libcommon.a'. But to keep it 8+3 clean, it's
|
|
# shortened to 'libcomm.a'. The official OpenSSL build was recently changed
|
|
# and this "Common" library was added for several of the Crypto Providers.
|
|
#
|
|
OPENSSL_LIBS = $(OPENSSL_ROOT)/lib/libssl.a \
|
|
$(OPENSSL_ROOT)/lib/libcrypt.a \
|
|
$(OPENSSL_ROOT)/lib/libcomm.a
|
|
endif
|
|
|
|
ifeq ($(USE_ZLIB),1)
|
|
CFLAGS += -DUSE_ZLIB -I$(ZLIB_ROOT)
|
|
endif
|
|
|
|
ifeq ($(USE_IPV6),1)
|
|
CFLAGS += -DENABLE_IPV6
|
|
endif
|
|
|
|
ifeq ($(USE_ARES),1)
|
|
CFLAGS += -DUSE_ARES -I$(ARES_ROOT)/include
|
|
endif
|
|
|
|
ifeq ($(USE_IDNA),1)
|
|
CFLAGS += -DHAVE_LIBIDN -I$(LIBIDN_ROOT)/lib
|
|
endif
|
|
|
|
ifeq ($(USE_DEBUG),1)
|
|
CFLAGS += -DDEBUG=1 -DDEBUGBUILD
|
|
endif
|
|
|
|
ifeq ($(USE_CURLDEBUG),1)
|
|
CFLAGS += -DCURLDEBUG
|
|
endif
|
|
|
|
$(OBJ_DIR):
|
|
$(MKDIR) $(OBJ_DIR)
|
|
|
|
$(OBJ_DIR)/%.o: %.c
|
|
$(CC) $(CFLAGS) -o $@ -c $<
|
|
@echo
|
|
|
|
#
|
|
# Link-EXE macro:
|
|
# $(1): the .exe
|
|
# $(2): the .o-files and libraries
|
|
#
|
|
ifeq ($(MAKE_MAP_FILE),1)
|
|
define link_EXE
|
|
$(CC) -o $(1) $(LDFLAGS) -Wl,--print-map,--sort-common $(2) > $(1:.exe=.map)
|
|
endef
|
|
else
|
|
define link_EXE
|
|
$(CC) $(LDFLAGS) -o $(1) $(2)
|
|
endef
|
|
endif
|
|
|
|
$(TOPDIR)/docs/curl.1: $(wildcard $(TOPDIR)/docs/cmdline-opts/*.d)
|
|
cd $(TOPDIR)/docs/cmdline-opts; \
|
|
perl gen.pl mainpage > ../$(TOPDIR)/docs/curl.1
|
|
|
|
DEP_REPLACE = sed -e 's@\(.*\)\.o: @\n$$(OBJ_DIR)\/\1.o: @' \
|
|
-e 's@$(ARES_ROOT)@$$(ARES_ROOT)@g' \
|
|
-e 's@$(OPENSSL_ROOT)@$$(OPENSSL_ROOT)@g' \
|
|
-e 's@$(WATT32_ROOT)@$$(WATT32_ROOT)@g' \
|
|
-e 's@$(ZLIB_ROOT)@$$(ZLIB_ROOT)@g'
|
|
|
|
#
|
|
# One may have to do 'make -f Makefile.dj clean' first in case
|
|
# a foreign 'curl_config.h' is making trouble.
|
|
#
|
|
depend: $(DEPEND_PREREQ) $(MAKEFILE)
|
|
$(CC) -MM $(CFLAGS) $(CSOURCES) | $(DEP_REPLACE) > depend.dj
|