]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
configure: delete unused `CURL_DEFINE_UNQUOTED` function
authorViktor Szakats <commit@vsz.me>
Sat, 24 Aug 2024 00:10:02 +0000 (02:10 +0200)
committerViktor Szakats <commit@vsz.me>
Mon, 26 Aug 2024 09:01:14 +0000 (11:01 +0200)
Unused since ee6992c66a3dd7a1a1e2fbf66ba8d446a28acc8c #12502

Closes #14673

acinclude.m4

index d0da0ee709c0d5976d53d9cf94267487c28c08ae..6d0ea50d907a5a482bf54e8c04eab6d1bf6b4606 100644 (file)
@@ -1089,26 +1089,6 @@ AC_DEFUN([CURL_CHECK_LIBS_CONNECT], [
 ])
 
 
-dnl CURL_DEFINE_UNQUOTED (VARIABLE, [VALUE])
-dnl -------------------------------------------------
-dnl Like AC_DEFINE_UNQUOTED this macro will define a C preprocessor
-dnl symbol that can be further used in custom template configuration
-dnl files. This macro, unlike AC_DEFINE_UNQUOTED, does not use a third
-dnl argument for the description. Symbol definitions done with this
-dnl macro are intended to be exclusively used in handcrafted *.h.in
-dnl template files. Contrary to what AC_DEFINE_UNQUOTED does, this one
-dnl prevents autoheader generation and insertion of symbol template
-dnl stub and definition into the first configuration header file. Do
-dnl not use this macro as a replacement for AC_DEFINE_UNQUOTED, each
-dnl one serves different functional needs.
-
-AC_DEFUN([CURL_DEFINE_UNQUOTED], [
-cat >>confdefs.h <<_EOF
-[@%:@define] $1 ifelse($#, 2, [$2], 1)
-_EOF
-])
-
-
 dnl CURL_CHECK_FUNC_SELECT
 dnl -------------------------------------------------
 dnl Test if the socket select() function is available.