mirror of
https://github.com/curl/curl.git
synced 2026-04-11 12:01:42 +08:00
Also: - support per-directory and per-upper-directory whitelist entries. - convert badlist input grep tweak into the above format. (except for 'And' which had just a few hits.) - fix many code exceptions, but do not enforce. (there also remain about 350 'will' uses in lib) - fix badwords in example code, drop exceptions. - badwords-all: convert to Perl. To make it usable from CMake. - FAQ: reword to not use 'will'. Drop exception. Closes #20886
44 lines
1.7 KiB
Makefile
44 lines
1.7 KiB
Makefile
#***************************************************************************
|
|
# _ _ ____ _
|
|
# Project ___| | | | _ \| |
|
|
# / __| | | | |_) | |
|
|
# | (__| |_| | _ <| |___
|
|
# \___|\___/|_| \_\_____|
|
|
#
|
|
# Copyright (C) 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
|
|
#
|
|
###########################################################################
|
|
# Shared between CMakeLists.txt and Makefile.am
|
|
|
|
# Keep in sync with CURL_LIBCURL_VERSIONED_SYMBOLS_SONAME in configure.ac
|
|
VERSIONCHANGE=12
|
|
VERSIONADD=0
|
|
VERSIONDEL=8
|
|
|
|
# libtool version:
|
|
VERSIONINFO=-version-info $(VERSIONCHANGE):$(VERSIONADD):$(VERSIONDEL)
|
|
# This flag accepts an argument of the form current[:revision[:age]]. It means
|
|
# passing -version-info 3:12:1 sets current to 3, revision to 12, and age to 1.
|
|
#
|
|
# Here's the simplified rule guide on how to change -version-info:
|
|
# (current version is C:R:A)
|
|
#
|
|
# 1. if there are only source changes, use C:R+1:A
|
|
# 2. if interfaces were added use C+1:0:A+1
|
|
# 3. if interfaces were removed, then use C+1:0:0
|
|
#
|
|
# For the full guide on libcurl ABI rules, see docs/libcurl/ABI
|