2011-08-05 19:20:22 +08:00
|
|
|
#ifndef HEADER_CURL_CONFIG_WIN32_H
|
|
|
|
#define HEADER_CURL_CONFIG_WIN32_H
|
2011-03-10 18:48:02 +08:00
|
|
|
/***************************************************************************
|
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2023-01-02 20:51:48 +08:00
|
|
|
* Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
2011-03-10 18:48:02 +08:00
|
|
|
*
|
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
2020-11-04 21:02:01 +08:00
|
|
|
* are also available at https://curl.se/docs/copyright.html.
|
2011-03-10 18:48:02 +08:00
|
|
|
*
|
|
|
|
* 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
|
2022-05-17 17:16:50 +08:00
|
|
|
*
|
2011-03-10 18:48:02 +08:00
|
|
|
***************************************************************************/
|
1999-12-29 22:20:26 +08:00
|
|
|
|
2005-12-18 05:20:35 +08:00
|
|
|
/* ================================================================ */
|
2011-08-05 19:20:22 +08:00
|
|
|
/* Hand crafted config file for Windows */
|
2005-12-18 05:20:35 +08:00
|
|
|
/* ================================================================ */
|
2004-06-02 19:36:07 +08:00
|
|
|
|
2005-12-18 05:20:35 +08:00
|
|
|
/* ---------------------------------------------------------------- */
|
|
|
|
/* HEADER FILES */
|
|
|
|
/* ---------------------------------------------------------------- */
|
1999-12-29 22:20:26 +08:00
|
|
|
|
2011-08-07 01:18:43 +08:00
|
|
|
/* Define if you have the <arpa/inet.h> header file. */
|
2005-12-18 05:20:35 +08:00
|
|
|
/* #define HAVE_ARPA_INET_H 1 */
|
1999-12-29 22:20:26 +08:00
|
|
|
|
2011-08-07 01:18:43 +08:00
|
|
|
/* Define if you have the <fcntl.h> header file. */
|
2005-12-18 05:20:35 +08:00
|
|
|
#define HAVE_FCNTL_H 1
|
2001-03-14 16:28:54 +08:00
|
|
|
|
2011-08-07 01:18:43 +08:00
|
|
|
/* Define if you have the <io.h> header file. */
|
2005-12-18 05:20:35 +08:00
|
|
|
#define HAVE_IO_H 1
|
|
|
|
|
2011-08-07 01:18:43 +08:00
|
|
|
/* Define if you have the <locale.h> header file. */
|
2011-08-05 19:20:22 +08:00
|
|
|
#define HAVE_LOCALE_H 1
|
|
|
|
|
2011-08-07 01:18:43 +08:00
|
|
|
/* Define if you need <malloc.h> header even with <stdlib.h> header file. */
|
2006-07-12 05:34:23 +08:00
|
|
|
#define NEED_MALLOC_H 1
|
|
|
|
|
2011-08-07 01:18:43 +08:00
|
|
|
/* Define if you have the <netdb.h> header file. */
|
2005-12-18 05:20:35 +08:00
|
|
|
/* #define HAVE_NETDB_H 1 */
|
|
|
|
|
2011-08-07 01:18:43 +08:00
|
|
|
/* Define if you have the <netinet/in.h> header file. */
|
2005-12-19 00:50:33 +08:00
|
|
|
/* #define HAVE_NETINET_IN_H 1 */
|
2005-12-18 05:20:35 +08:00
|
|
|
|
2014-06-05 15:10:54 +08:00
|
|
|
/* Define to 1 if you have the <stdbool.h> header file. */
|
2023-08-08 19:00:36 +08:00
|
|
|
#if (defined(_MSC_VER) && (_MSC_VER >= 1800)) || defined(__MINGW32__)
|
2014-06-05 15:10:54 +08:00
|
|
|
#define HAVE_STDBOOL_H 1
|
|
|
|
#endif
|
|
|
|
|
2011-08-07 01:18:43 +08:00
|
|
|
/* Define if you have the <sys/param.h> header file. */
|
cmake: pre-fill rest of detection values for Windows
The goal of this patch is to avoid unnecessary feature detection work
when doing Windows builds with CMake. Do this by pre-filling well-known
detection results for Windows and specifically for mingw-w64 and MSVC
compilers. Also limit feature checks to platforms where the results are
actually used. Drop a few redundant ones. And some tidying up.
- pre-fill remaining detection values in Windows CMake builds.
Based on actual detection results observed in CI runs, preceding
similar work over libssh2 and matching up values with
`lib/config-win32.h`.
This brings down CMake configuration time from 58 to 14 seconds on the
same local machine.
On AppVeyor CI this translates to:
- 128 seconds -> 50 seconds VS2022 MSVC with OpenSSL (per CMake job):
https://ci.appveyor.com/project/curlorg/curl/builds/48208419/job/4gw66ecrjpy7necb#L296
https://ci.appveyor.com/project/curlorg/curl/builds/48217440/job/8m4fwrr2fe249uo8#L186
- 62 seconds -> 16 seconds VS2017 MINGW (per CMake job):
https://ci.appveyor.com/project/curlorg/curl/builds/48208419/job/s1y8q5ivlcs7ub29?fullLog=true#L290
https://ci.appveyor.com/project/curlorg/curl/builds/48217440/job/pchpxyjsyc9kl13a?fullLog=true#L194
The formula is about 1-3 seconds delay for each detection. Almost all
of these trigger a full compile-link cycle behind the scenes, slow
even today, both cross and native, mingw-w64 and apparently MSVC too.
Enabling .map files or other custom build features slows it down
further. (Similar is expected for autotools configure.)
- stop detecting `idn2.h` if idn2 was deselected.
autotools does this.
- stop detecting `idn2.h` if idn2 was not found.
This deviates from autotools. Source code requires both header and
lib, so this is still correct, but faster.
- limit `ADDRESS_FAMILY` detection to Windows.
- normalize `HAVE_WIN32_WINNT` value to lowercase `0x0a12` format.
- pre-fill `HAVE_WIN32_WINNT`-dependent detection results.
Saving 4 (slow) feature-detections in most builds: `getaddrinfo`,
`freeaddrinfo`, `inet_ntop`, `inet_pton`
- fix pre-filled `HAVE_SYS_TIME_H`, `HAVE_SYS_PARAM_H`,
`HAVE_GETTIMEOFDAY` for mingw-w64.
Luckily this do not change build results, as `WIN32` took
priority over `HAVE_GETTIMEOFDAY` with the current source
code.
- limit `HAVE_CLOCK_GETTIME_MONOTONIC_RAW` and
`HAVE_CLOCK_GETTIME_MONOTONIC` detections to non-Windows.
We're not using these in the source code for Windows.
- reduce compiler warning noise in CMake internal logs:
- fix to include `winsock2.h` before `windows.h`.
Apply it to autotools test snippets too.
- delete previous `-D_WINSOCKAPI_=` hack that aimed to fix the above.
- cleanup `CMake/CurlTests.c` to emit less warnings.
- delete redundant `HAVE_MACRO_SIGSETJMP` feature check.
It was the same check as `HAVE_SIGSETJMP`.
- delete 'experimental' marking from `CURL_USE_OPENSSL`.
- show CMake version via `CMakeLists.txt`.
Credit to the `zlib-ng` project for the idea:
https://github.com/zlib-ng/zlib-ng/blob/61e181c8ae93dbf56040336179c9954078bd1399/CMakeLists.txt#L7
- make `CMake/CurlTests.c` pass `checksrc`.
- `CMake/WindowsCache.cmake` tidy-ups.
- replace `WIN32` guard with `_WIN32` in `CMake/CurlTests.c`.
Closes #12044
2023-10-06 07:38:59 +08:00
|
|
|
#if defined(__MINGW32__)
|
|
|
|
#define HAVE_SYS_PARAM_H 1
|
|
|
|
#endif
|
2005-12-18 05:20:35 +08:00
|
|
|
|
2011-08-07 01:18:43 +08:00
|
|
|
/* Define if you have the <sys/select.h> header file. */
|
2005-12-18 05:20:35 +08:00
|
|
|
/* #define HAVE_SYS_SELECT_H 1 */
|
|
|
|
|
2011-08-07 01:18:43 +08:00
|
|
|
/* Define if you have the <sys/socket.h> header file. */
|
2005-12-19 00:50:33 +08:00
|
|
|
/* #define HAVE_SYS_SOCKET_H 1 */
|
2005-12-18 05:20:35 +08:00
|
|
|
|
2011-08-07 01:18:43 +08:00
|
|
|
/* Define if you have the <sys/sockio.h> header file. */
|
2005-12-18 05:20:35 +08:00
|
|
|
/* #define HAVE_SYS_SOCKIO_H 1 */
|
|
|
|
|
2011-08-07 01:18:43 +08:00
|
|
|
/* Define if you have the <sys/stat.h> header file. */
|
2005-12-18 05:20:35 +08:00
|
|
|
#define HAVE_SYS_STAT_H 1
|
|
|
|
|
2011-08-07 01:18:43 +08:00
|
|
|
/* Define if you have the <sys/time.h> header file. */
|
cmake: pre-fill rest of detection values for Windows
The goal of this patch is to avoid unnecessary feature detection work
when doing Windows builds with CMake. Do this by pre-filling well-known
detection results for Windows and specifically for mingw-w64 and MSVC
compilers. Also limit feature checks to platforms where the results are
actually used. Drop a few redundant ones. And some tidying up.
- pre-fill remaining detection values in Windows CMake builds.
Based on actual detection results observed in CI runs, preceding
similar work over libssh2 and matching up values with
`lib/config-win32.h`.
This brings down CMake configuration time from 58 to 14 seconds on the
same local machine.
On AppVeyor CI this translates to:
- 128 seconds -> 50 seconds VS2022 MSVC with OpenSSL (per CMake job):
https://ci.appveyor.com/project/curlorg/curl/builds/48208419/job/4gw66ecrjpy7necb#L296
https://ci.appveyor.com/project/curlorg/curl/builds/48217440/job/8m4fwrr2fe249uo8#L186
- 62 seconds -> 16 seconds VS2017 MINGW (per CMake job):
https://ci.appveyor.com/project/curlorg/curl/builds/48208419/job/s1y8q5ivlcs7ub29?fullLog=true#L290
https://ci.appveyor.com/project/curlorg/curl/builds/48217440/job/pchpxyjsyc9kl13a?fullLog=true#L194
The formula is about 1-3 seconds delay for each detection. Almost all
of these trigger a full compile-link cycle behind the scenes, slow
even today, both cross and native, mingw-w64 and apparently MSVC too.
Enabling .map files or other custom build features slows it down
further. (Similar is expected for autotools configure.)
- stop detecting `idn2.h` if idn2 was deselected.
autotools does this.
- stop detecting `idn2.h` if idn2 was not found.
This deviates from autotools. Source code requires both header and
lib, so this is still correct, but faster.
- limit `ADDRESS_FAMILY` detection to Windows.
- normalize `HAVE_WIN32_WINNT` value to lowercase `0x0a12` format.
- pre-fill `HAVE_WIN32_WINNT`-dependent detection results.
Saving 4 (slow) feature-detections in most builds: `getaddrinfo`,
`freeaddrinfo`, `inet_ntop`, `inet_pton`
- fix pre-filled `HAVE_SYS_TIME_H`, `HAVE_SYS_PARAM_H`,
`HAVE_GETTIMEOFDAY` for mingw-w64.
Luckily this do not change build results, as `WIN32` took
priority over `HAVE_GETTIMEOFDAY` with the current source
code.
- limit `HAVE_CLOCK_GETTIME_MONOTONIC_RAW` and
`HAVE_CLOCK_GETTIME_MONOTONIC` detections to non-Windows.
We're not using these in the source code for Windows.
- reduce compiler warning noise in CMake internal logs:
- fix to include `winsock2.h` before `windows.h`.
Apply it to autotools test snippets too.
- delete previous `-D_WINSOCKAPI_=` hack that aimed to fix the above.
- cleanup `CMake/CurlTests.c` to emit less warnings.
- delete redundant `HAVE_MACRO_SIGSETJMP` feature check.
It was the same check as `HAVE_SIGSETJMP`.
- delete 'experimental' marking from `CURL_USE_OPENSSL`.
- show CMake version via `CMakeLists.txt`.
Credit to the `zlib-ng` project for the idea:
https://github.com/zlib-ng/zlib-ng/blob/61e181c8ae93dbf56040336179c9954078bd1399/CMakeLists.txt#L7
- make `CMake/CurlTests.c` pass `checksrc`.
- `CMake/WindowsCache.cmake` tidy-ups.
- replace `WIN32` guard with `_WIN32` in `CMake/CurlTests.c`.
Closes #12044
2023-10-06 07:38:59 +08:00
|
|
|
#if defined(__MINGW32__)
|
|
|
|
#define HAVE_SYS_TIME_H 1
|
|
|
|
#endif
|
2006-10-14 20:01:44 +08:00
|
|
|
|
2011-08-07 01:18:43 +08:00
|
|
|
/* Define if you have the <sys/types.h> header file. */
|
2005-12-18 05:20:35 +08:00
|
|
|
#define HAVE_SYS_TYPES_H 1
|
|
|
|
|
2011-08-07 01:18:43 +08:00
|
|
|
/* Define if you have the <sys/utime.h> header file. */
|
2005-12-18 05:20:35 +08:00
|
|
|
#define HAVE_SYS_UTIME_H 1
|
2004-02-27 00:23:28 +08:00
|
|
|
|
2011-08-07 01:18:43 +08:00
|
|
|
/* Define if you have the <termio.h> header file. */
|
2005-12-18 05:20:35 +08:00
|
|
|
/* #define HAVE_TERMIO_H 1 */
|
|
|
|
|
2011-08-07 01:18:43 +08:00
|
|
|
/* Define if you have the <termios.h> header file. */
|
2005-12-18 05:20:35 +08:00
|
|
|
/* #define HAVE_TERMIOS_H 1 */
|
|
|
|
|
2011-08-07 01:18:43 +08:00
|
|
|
/* Define if you have the <unistd.h> header file. */
|
2023-10-28 09:10:01 +08:00
|
|
|
#if defined(__MINGW32__)
|
2005-12-18 05:20:35 +08:00
|
|
|
#define HAVE_UNISTD_H 1
|
2004-07-15 09:08:08 +08:00
|
|
|
#endif
|
2004-02-23 19:59:28 +08:00
|
|
|
|
2022-10-13 23:43:31 +08:00
|
|
|
/* Define to 1 if you have the <libgen.h> header file. */
|
2023-08-08 19:00:36 +08:00
|
|
|
#if defined(__MINGW32__)
|
2022-10-13 23:43:31 +08:00
|
|
|
#define HAVE_LIBGEN_H 1
|
|
|
|
#endif
|
|
|
|
|
2005-12-18 05:20:35 +08:00
|
|
|
/* ---------------------------------------------------------------- */
|
|
|
|
/* OTHER HEADER INFO */
|
|
|
|
/* ---------------------------------------------------------------- */
|
|
|
|
|
2011-08-07 01:18:43 +08:00
|
|
|
/* Define if you have the ANSI C header files. */
|
1999-12-29 22:20:26 +08:00
|
|
|
#define STDC_HEADERS 1
|
|
|
|
|
2014-06-05 15:10:54 +08:00
|
|
|
/* Define to 1 if bool is an available type. */
|
2023-08-08 19:00:36 +08:00
|
|
|
#if (defined(_MSC_VER) && (_MSC_VER >= 1800)) || defined(__MINGW32__)
|
2014-06-05 15:10:54 +08:00
|
|
|
#define HAVE_BOOL_T 1
|
|
|
|
#endif
|
|
|
|
|
2005-12-18 05:20:35 +08:00
|
|
|
/* ---------------------------------------------------------------- */
|
|
|
|
/* FUNCTIONS */
|
|
|
|
/* ---------------------------------------------------------------- */
|
1999-12-29 22:20:26 +08:00
|
|
|
|
2011-08-07 01:18:43 +08:00
|
|
|
/* Define if you have the closesocket function. */
|
2005-12-18 05:20:35 +08:00
|
|
|
#define HAVE_CLOSESOCKET 1
|
1999-12-29 22:20:26 +08:00
|
|
|
|
2011-08-07 01:18:43 +08:00
|
|
|
/* Define if you have the ftruncate function. */
|
2023-08-08 19:00:36 +08:00
|
|
|
#if defined(__MINGW32__)
|
2022-10-13 23:43:31 +08:00
|
|
|
#define HAVE_FTRUNCATE 1
|
|
|
|
#endif
|
2011-08-05 19:20:22 +08:00
|
|
|
|
2019-05-05 23:08:22 +08:00
|
|
|
/* Define to 1 if you have the `getpeername' function. */
|
|
|
|
#define HAVE_GETPEERNAME 1
|
|
|
|
|
2019-05-22 17:11:36 +08:00
|
|
|
/* Define to 1 if you have the getsockname function. */
|
|
|
|
#define HAVE_GETSOCKNAME 1
|
|
|
|
|
2011-08-07 01:18:43 +08:00
|
|
|
/* Define if you have the gethostname function. */
|
1999-12-29 22:20:26 +08:00
|
|
|
#define HAVE_GETHOSTNAME 1
|
|
|
|
|
2011-08-07 01:18:43 +08:00
|
|
|
/* Define if you have the gettimeofday function. */
|
cmake: pre-fill rest of detection values for Windows
The goal of this patch is to avoid unnecessary feature detection work
when doing Windows builds with CMake. Do this by pre-filling well-known
detection results for Windows and specifically for mingw-w64 and MSVC
compilers. Also limit feature checks to platforms where the results are
actually used. Drop a few redundant ones. And some tidying up.
- pre-fill remaining detection values in Windows CMake builds.
Based on actual detection results observed in CI runs, preceding
similar work over libssh2 and matching up values with
`lib/config-win32.h`.
This brings down CMake configuration time from 58 to 14 seconds on the
same local machine.
On AppVeyor CI this translates to:
- 128 seconds -> 50 seconds VS2022 MSVC with OpenSSL (per CMake job):
https://ci.appveyor.com/project/curlorg/curl/builds/48208419/job/4gw66ecrjpy7necb#L296
https://ci.appveyor.com/project/curlorg/curl/builds/48217440/job/8m4fwrr2fe249uo8#L186
- 62 seconds -> 16 seconds VS2017 MINGW (per CMake job):
https://ci.appveyor.com/project/curlorg/curl/builds/48208419/job/s1y8q5ivlcs7ub29?fullLog=true#L290
https://ci.appveyor.com/project/curlorg/curl/builds/48217440/job/pchpxyjsyc9kl13a?fullLog=true#L194
The formula is about 1-3 seconds delay for each detection. Almost all
of these trigger a full compile-link cycle behind the scenes, slow
even today, both cross and native, mingw-w64 and apparently MSVC too.
Enabling .map files or other custom build features slows it down
further. (Similar is expected for autotools configure.)
- stop detecting `idn2.h` if idn2 was deselected.
autotools does this.
- stop detecting `idn2.h` if idn2 was not found.
This deviates from autotools. Source code requires both header and
lib, so this is still correct, but faster.
- limit `ADDRESS_FAMILY` detection to Windows.
- normalize `HAVE_WIN32_WINNT` value to lowercase `0x0a12` format.
- pre-fill `HAVE_WIN32_WINNT`-dependent detection results.
Saving 4 (slow) feature-detections in most builds: `getaddrinfo`,
`freeaddrinfo`, `inet_ntop`, `inet_pton`
- fix pre-filled `HAVE_SYS_TIME_H`, `HAVE_SYS_PARAM_H`,
`HAVE_GETTIMEOFDAY` for mingw-w64.
Luckily this do not change build results, as `WIN32` took
priority over `HAVE_GETTIMEOFDAY` with the current source
code.
- limit `HAVE_CLOCK_GETTIME_MONOTONIC_RAW` and
`HAVE_CLOCK_GETTIME_MONOTONIC` detections to non-Windows.
We're not using these in the source code for Windows.
- reduce compiler warning noise in CMake internal logs:
- fix to include `winsock2.h` before `windows.h`.
Apply it to autotools test snippets too.
- delete previous `-D_WINSOCKAPI_=` hack that aimed to fix the above.
- cleanup `CMake/CurlTests.c` to emit less warnings.
- delete redundant `HAVE_MACRO_SIGSETJMP` feature check.
It was the same check as `HAVE_SIGSETJMP`.
- delete 'experimental' marking from `CURL_USE_OPENSSL`.
- show CMake version via `CMakeLists.txt`.
Credit to the `zlib-ng` project for the idea:
https://github.com/zlib-ng/zlib-ng/blob/61e181c8ae93dbf56040336179c9954078bd1399/CMakeLists.txt#L7
- make `CMake/CurlTests.c` pass `checksrc`.
- `CMake/WindowsCache.cmake` tidy-ups.
- replace `WIN32` guard with `_WIN32` in `CMake/CurlTests.c`.
Closes #12044
2023-10-06 07:38:59 +08:00
|
|
|
#if defined(__MINGW32__)
|
|
|
|
#define HAVE_GETTIMEOFDAY 1
|
|
|
|
#endif
|
1999-12-29 22:20:26 +08:00
|
|
|
|
2008-11-14 02:56:55 +08:00
|
|
|
/* Define if you have the ioctlsocket function. */
|
2005-12-19 00:50:33 +08:00
|
|
|
#define HAVE_IOCTLSOCKET 1
|
2005-12-18 05:20:35 +08:00
|
|
|
|
2008-11-14 02:56:55 +08:00
|
|
|
/* Define if you have a working ioctlsocket FIONBIO function. */
|
|
|
|
#define HAVE_IOCTLSOCKET_FIONBIO 1
|
|
|
|
|
2011-08-07 01:18:43 +08:00
|
|
|
/* Define if you have the select function. */
|
1999-12-29 22:20:26 +08:00
|
|
|
#define HAVE_SELECT 1
|
|
|
|
|
2011-08-07 01:18:43 +08:00
|
|
|
/* Define if you have the setlocale function. */
|
2011-08-05 19:20:22 +08:00
|
|
|
#define HAVE_SETLOCALE 1
|
|
|
|
|
|
|
|
/* Define if you have the setmode function. */
|
|
|
|
#define HAVE_SETMODE 1
|
|
|
|
|
2011-08-07 01:18:43 +08:00
|
|
|
/* Define if you have the socket function. */
|
1999-12-29 22:20:26 +08:00
|
|
|
#define HAVE_SOCKET 1
|
|
|
|
|
2011-08-07 01:18:43 +08:00
|
|
|
/* Define if you have the strcasecmp function. */
|
2023-08-08 19:00:36 +08:00
|
|
|
#if defined(__MINGW32__)
|
2021-02-23 20:06:55 +08:00
|
|
|
#define HAVE_STRCASECMP 1
|
|
|
|
#endif
|
1999-12-29 22:20:26 +08:00
|
|
|
|
2011-08-07 01:18:43 +08:00
|
|
|
/* Define if you have the strdup function. */
|
1999-12-29 22:20:26 +08:00
|
|
|
#define HAVE_STRDUP 1
|
|
|
|
|
2008-09-15 22:57:56 +08:00
|
|
|
/* Define if you have the stricmp function. */
|
|
|
|
#define HAVE_STRICMP 1
|
|
|
|
|
2011-08-07 01:18:43 +08:00
|
|
|
/* Define if you have the strtoll function. */
|
2023-10-28 09:10:01 +08:00
|
|
|
#if (defined(_MSC_VER) && (_MSC_VER >= 1800)) || defined(__MINGW32__)
|
2004-01-22 22:25:19 +08:00
|
|
|
#define HAVE_STRTOLL 1
|
|
|
|
#endif
|
|
|
|
|
2011-08-07 01:18:43 +08:00
|
|
|
/* Define if you have the utime function. */
|
2003-10-14 20:00:45 +08:00
|
|
|
#define HAVE_UTIME 1
|
|
|
|
|
Platforms that don't have/run configure need default values in their config files for:
HAVE_GETNAMEINFO, GETNAMEINFO_QUAL_ARG1, GETNAMEINFO_TYPE_ARG1, GETNAMEINFO_TYPE_ARG2, GETNAMEINFO_TYPE_ARG46, GETNAMEINFO_TYPE_ARG7
HAVE_RECV, RECV_TYPE_ARG1, RECV_TYPE_ARG2, RECV_TYPE_ARG3, RECV_TYPE_ARG4, RECV_TYPE_RETV
HAVE_SEND, SEND_TYPE_ARG1, SEND_TYPE_ARG2, SEND_TYPE_ARG3, SEND_TYPE_ARG4, SEND_TYPE_RETV
2006-07-05 00:10:13 +08:00
|
|
|
/* Define if you have the recv function. */
|
|
|
|
#define HAVE_RECV 1
|
|
|
|
|
|
|
|
/* Define to the type of arg 1 for recv. */
|
|
|
|
#define RECV_TYPE_ARG1 SOCKET
|
|
|
|
|
|
|
|
/* Define to the type of arg 2 for recv. */
|
|
|
|
#define RECV_TYPE_ARG2 char *
|
|
|
|
|
|
|
|
/* Define to the type of arg 3 for recv. */
|
|
|
|
#define RECV_TYPE_ARG3 int
|
|
|
|
|
|
|
|
/* Define to the type of arg 4 for recv. */
|
|
|
|
#define RECV_TYPE_ARG4 int
|
|
|
|
|
|
|
|
/* Define to the function return type for recv. */
|
|
|
|
#define RECV_TYPE_RETV int
|
|
|
|
|
|
|
|
/* Define if you have the send function. */
|
|
|
|
#define HAVE_SEND 1
|
|
|
|
|
|
|
|
/* Define to the type of arg 1 for send. */
|
|
|
|
#define SEND_TYPE_ARG1 SOCKET
|
|
|
|
|
2006-07-05 00:54:10 +08:00
|
|
|
/* Define to the type qualifier of arg 2 for send. */
|
|
|
|
#define SEND_QUAL_ARG2 const
|
|
|
|
|
Platforms that don't have/run configure need default values in their config files for:
HAVE_GETNAMEINFO, GETNAMEINFO_QUAL_ARG1, GETNAMEINFO_TYPE_ARG1, GETNAMEINFO_TYPE_ARG2, GETNAMEINFO_TYPE_ARG46, GETNAMEINFO_TYPE_ARG7
HAVE_RECV, RECV_TYPE_ARG1, RECV_TYPE_ARG2, RECV_TYPE_ARG3, RECV_TYPE_ARG4, RECV_TYPE_RETV
HAVE_SEND, SEND_TYPE_ARG1, SEND_TYPE_ARG2, SEND_TYPE_ARG3, SEND_TYPE_ARG4, SEND_TYPE_RETV
2006-07-05 00:10:13 +08:00
|
|
|
/* Define to the type of arg 2 for send. */
|
|
|
|
#define SEND_TYPE_ARG2 char *
|
|
|
|
|
|
|
|
/* Define to the type of arg 3 for send. */
|
|
|
|
#define SEND_TYPE_ARG3 int
|
|
|
|
|
|
|
|
/* Define to the type of arg 4 for send. */
|
|
|
|
#define SEND_TYPE_ARG4 int
|
|
|
|
|
|
|
|
/* Define to the function return type for send. */
|
|
|
|
#define SEND_TYPE_RETV int
|
|
|
|
|
2022-09-22 17:52:08 +08:00
|
|
|
/* Define to 1 if you have the snprintf function. */
|
2023-11-15 10:54:43 +08:00
|
|
|
#if (defined(_MSC_VER) && (_MSC_VER >= 1900)) || defined(__MINGW32__)
|
2022-09-22 17:52:08 +08:00
|
|
|
#define HAVE_SNPRINTF 1
|
|
|
|
#endif
|
|
|
|
|
2022-10-13 23:43:31 +08:00
|
|
|
#if defined(_WIN32_WINNT) && _WIN32_WINNT >= 0x600 /* Vista */
|
|
|
|
/* Define to 1 if you have a IPv6 capable working inet_ntop function. */
|
|
|
|
#define HAVE_INET_NTOP 1
|
|
|
|
/* Define to 1 if you have a IPv6 capable working inet_pton function. */
|
|
|
|
#define HAVE_INET_PTON 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Define to 1 if you have the `basename' function. */
|
2023-08-08 19:00:36 +08:00
|
|
|
#if defined(__MINGW32__)
|
2022-10-13 23:43:31 +08:00
|
|
|
#define HAVE_BASENAME 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Define to 1 if you have the strtok_r function. */
|
2023-08-08 19:00:36 +08:00
|
|
|
#if defined(__MINGW32__)
|
2022-10-13 23:43:31 +08:00
|
|
|
#define HAVE_STRTOK_R 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Define to 1 if you have the signal function. */
|
|
|
|
#define HAVE_SIGNAL 1
|
|
|
|
|
2005-12-18 05:20:35 +08:00
|
|
|
/* ---------------------------------------------------------------- */
|
|
|
|
/* TYPEDEF REPLACEMENTS */
|
|
|
|
/* ---------------------------------------------------------------- */
|
1999-12-29 22:20:26 +08:00
|
|
|
|
2011-08-07 01:18:43 +08:00
|
|
|
/* Define if in_addr_t is not an available 'typedefed' type. */
|
2005-12-18 05:20:35 +08:00
|
|
|
#define in_addr_t unsigned long
|
1999-12-29 22:20:26 +08:00
|
|
|
|
2011-08-07 01:18:43 +08:00
|
|
|
/* Define if ssize_t is not an available 'typedefed' type. */
|
2007-09-19 02:18:34 +08:00
|
|
|
#ifndef _SSIZE_T_DEFINED
|
2023-10-28 09:10:01 +08:00
|
|
|
# if defined(__MINGW32__)
|
2009-10-28 00:38:42 +08:00
|
|
|
# elif defined(_WIN64)
|
|
|
|
# define _SSIZE_T_DEFINED
|
|
|
|
# define ssize_t __int64
|
|
|
|
# else
|
|
|
|
# define _SSIZE_T_DEFINED
|
|
|
|
# define ssize_t int
|
|
|
|
# endif
|
2007-09-19 02:18:34 +08:00
|
|
|
#endif
|
2003-10-14 20:00:45 +08:00
|
|
|
|
2005-12-18 05:20:35 +08:00
|
|
|
/* ---------------------------------------------------------------- */
|
|
|
|
/* TYPE SIZES */
|
|
|
|
/* ---------------------------------------------------------------- */
|
2003-10-14 20:00:45 +08:00
|
|
|
|
2011-08-07 01:18:43 +08:00
|
|
|
/* Define to the size of `int', as computed by sizeof. */
|
2010-02-27 02:32:46 +08:00
|
|
|
#define SIZEOF_INT 4
|
|
|
|
|
2011-08-07 01:18:43 +08:00
|
|
|
/* Define to the size of `long long', as computed by sizeof. */
|
2005-12-18 05:20:35 +08:00
|
|
|
/* #define SIZEOF_LONG_LONG 8 */
|
2002-08-20 19:42:35 +08:00
|
|
|
|
2017-08-22 06:14:33 +08:00
|
|
|
/* Define to the size of `long', as computed by sizeof. */
|
|
|
|
#define SIZEOF_LONG 4
|
|
|
|
|
2011-08-07 01:18:43 +08:00
|
|
|
/* Define to the size of `size_t', as computed by sizeof. */
|
2010-12-03 04:41:23 +08:00
|
|
|
#if defined(_WIN64)
|
|
|
|
# define SIZEOF_SIZE_T 8
|
|
|
|
#else
|
|
|
|
# define SIZEOF_SIZE_T 4
|
|
|
|
#endif
|
|
|
|
|
2017-08-12 21:54:06 +08:00
|
|
|
/* Define to the size of `curl_off_t', as computed by sizeof. */
|
|
|
|
#define SIZEOF_CURL_OFF_T 8
|
|
|
|
|
2005-12-18 05:20:35 +08:00
|
|
|
/* ---------------------------------------------------------------- */
|
|
|
|
/* COMPILER SPECIFIC */
|
|
|
|
/* ---------------------------------------------------------------- */
|
2001-12-02 20:07:36 +08:00
|
|
|
|
2011-08-07 01:18:43 +08:00
|
|
|
/* Define to nothing if compiler does not support 'const' qualifier. */
|
|
|
|
/* #define const */
|
|
|
|
|
|
|
|
/* Define to nothing if compiler does not support 'volatile' qualifier. */
|
|
|
|
/* #define volatile */
|
2004-03-09 16:35:33 +08:00
|
|
|
|
2007-02-15 09:58:37 +08:00
|
|
|
/* Windows should not have HAVE_GMTIME_R defined */
|
|
|
|
/* #undef HAVE_GMTIME_R */
|
2006-12-05 23:00:14 +08:00
|
|
|
|
2008-08-21 03:29:00 +08:00
|
|
|
/* Define if the compiler supports the 'long long' data type. */
|
2023-10-28 09:10:01 +08:00
|
|
|
#if (defined(_MSC_VER) && (_MSC_VER >= 1310)) || defined(__MINGW32__)
|
2007-08-08 01:40:56 +08:00
|
|
|
#define HAVE_LONGLONG 1
|
|
|
|
#endif
|
|
|
|
|
2011-08-07 01:18:43 +08:00
|
|
|
/* Define to avoid VS2005 complaining about portable C functions. */
|
2007-11-08 02:18:42 +08:00
|
|
|
#if defined(_MSC_VER) && (_MSC_VER >= 1400)
|
|
|
|
#define _CRT_SECURE_NO_DEPRECATE 1
|
|
|
|
#define _CRT_NONSTDC_NO_DEPRECATE 1
|
|
|
|
#endif
|
|
|
|
|
2023-08-08 19:00:36 +08:00
|
|
|
/* mingw-w64 and visual studio >= 2005 (MSVCR80)
|
2021-02-21 10:00:36 +08:00
|
|
|
all default to 64-bit time_t unless _USE_32BIT_TIME_T is defined */
|
2023-08-08 19:00:36 +08:00
|
|
|
#if (defined(_MSC_VER) && (_MSC_VER >= 1400)) || defined(__MINGW32__)
|
2008-03-07 10:49:14 +08:00
|
|
|
# ifndef _USE_32BIT_TIME_T
|
|
|
|
# define SIZEOF_TIME_T 8
|
|
|
|
# else
|
|
|
|
# define SIZEOF_TIME_T 4
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2014-11-17 01:18:19 +08:00
|
|
|
/* Define some minimum and default build targets for Visual Studio */
|
|
|
|
#if defined(_MSC_VER)
|
|
|
|
/* Officially, Microsoft's Windows SDK versions 6.X does not support Windows
|
|
|
|
2000 as a supported build target. VS2008 default installations provides
|
|
|
|
an embedded Windows SDK v6.0A along with the claim that Windows 2000 is a
|
|
|
|
valid build target for VS2008. Popular belief is that binaries built with
|
|
|
|
VS2008 using Windows SDK versions v6.X and Windows 2000 as a build target
|
|
|
|
are functional. */
|
2011-08-07 01:18:43 +08:00
|
|
|
# define VS2008_MIN_TARGET 0x0500
|
2009-02-20 19:30:11 +08:00
|
|
|
|
2014-11-17 01:18:19 +08:00
|
|
|
/* The minimum build target for VS2012 is Vista unless Update 1 is installed
|
2017-03-26 23:02:22 +08:00
|
|
|
and the v110_xp toolset is chosen. */
|
2014-11-18 08:01:27 +08:00
|
|
|
# if defined(_USING_V110_SDK71_)
|
|
|
|
# define VS2012_MIN_TARGET 0x0501
|
|
|
|
# else
|
|
|
|
# define VS2012_MIN_TARGET 0x0600
|
|
|
|
# endif
|
2014-11-17 01:18:19 +08:00
|
|
|
|
|
|
|
/* VS2008 default build target is Windows Vista. We override default target
|
|
|
|
to be Windows XP. */
|
2014-11-18 08:01:27 +08:00
|
|
|
# define VS2008_DEF_TARGET 0x0501
|
2014-11-17 01:18:19 +08:00
|
|
|
|
2014-11-18 08:01:27 +08:00
|
|
|
/* VS2012 default build target is Windows Vista unless Update 1 is installed
|
2017-03-26 23:02:22 +08:00
|
|
|
and the v110_xp toolset is chosen. */
|
2014-11-18 08:01:27 +08:00
|
|
|
# if defined(_USING_V110_SDK71_)
|
|
|
|
# define VS2012_DEF_TARGET 0x0501
|
|
|
|
# else
|
|
|
|
# define VS2012_DEF_TARGET 0x0600
|
|
|
|
# endif
|
2009-02-20 19:30:11 +08:00
|
|
|
#endif
|
|
|
|
|
2011-08-07 01:18:43 +08:00
|
|
|
/* VS2008 default target settings and minimum build target check. */
|
2014-11-17 01:18:19 +08:00
|
|
|
#if defined(_MSC_VER) && (_MSC_VER >= 1500) && (_MSC_VER <= 1600)
|
2007-12-19 02:08:19 +08:00
|
|
|
# ifndef _WIN32_WINNT
|
2011-08-07 01:18:43 +08:00
|
|
|
# define _WIN32_WINNT VS2008_DEF_TARGET
|
2007-12-19 02:08:19 +08:00
|
|
|
# endif
|
|
|
|
# ifndef WINVER
|
2011-08-07 01:18:43 +08:00
|
|
|
# define WINVER VS2008_DEF_TARGET
|
2007-12-19 02:08:19 +08:00
|
|
|
# endif
|
2011-08-07 01:18:43 +08:00
|
|
|
# if (_WIN32_WINNT < VS2008_MIN_TARGET) || (WINVER < VS2008_MIN_TARGET)
|
2009-02-20 19:30:11 +08:00
|
|
|
# error VS2008 does not support Windows build targets prior to Windows 2000
|
2007-12-19 02:08:19 +08:00
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2014-11-17 01:18:19 +08:00
|
|
|
/* VS2012 default target settings and minimum build target check. */
|
|
|
|
#if defined(_MSC_VER) && (_MSC_VER >= 1700)
|
|
|
|
# ifndef _WIN32_WINNT
|
|
|
|
# define _WIN32_WINNT VS2012_DEF_TARGET
|
|
|
|
# endif
|
|
|
|
# ifndef WINVER
|
|
|
|
# define WINVER VS2012_DEF_TARGET
|
|
|
|
# endif
|
|
|
|
# if (_WIN32_WINNT < VS2012_MIN_TARGET) || (WINVER < VS2012_MIN_TARGET)
|
2014-11-18 08:01:27 +08:00
|
|
|
# if defined(_USING_V110_SDK71_)
|
|
|
|
# error VS2012 does not support Windows build targets prior to Windows XP
|
|
|
|
# else
|
2014-12-25 00:33:28 +08:00
|
|
|
# error VS2012 does not support Windows build targets prior to Windows \
|
|
|
|
Vista
|
2014-11-18 08:01:27 +08:00
|
|
|
# endif
|
2014-11-17 01:18:19 +08:00
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2023-10-28 18:52:23 +08:00
|
|
|
/* Windows XP is required for freeaddrinfo, getaddrinfo */
|
|
|
|
#define HAVE_FREEADDRINFO 1
|
|
|
|
#define HAVE_GETADDRINFO 1
|
|
|
|
#define HAVE_GETADDRINFO_THREADSAFE 1
|
2008-11-02 00:52:57 +08:00
|
|
|
|
2013-09-29 05:18:19 +08:00
|
|
|
/* ---------------------------------------------------------------- */
|
|
|
|
/* STRUCT RELATED */
|
|
|
|
/* ---------------------------------------------------------------- */
|
|
|
|
|
|
|
|
/* Define if you have struct sockaddr_storage. */
|
|
|
|
#define HAVE_STRUCT_SOCKADDR_STORAGE 1
|
|
|
|
|
|
|
|
/* Define if you have struct timeval. */
|
|
|
|
#define HAVE_STRUCT_TIMEVAL 1
|
|
|
|
|
|
|
|
/* Define if struct sockaddr_in6 has the sin6_scope_id member. */
|
|
|
|
#define HAVE_SOCKADDR_IN6_SIN6_SCOPE_ID 1
|
|
|
|
|
2008-08-23 02:09:03 +08:00
|
|
|
/* ---------------------------------------------------------------- */
|
|
|
|
/* LARGE FILE SUPPORT */
|
|
|
|
/* ---------------------------------------------------------------- */
|
|
|
|
|
|
|
|
#if defined(_MSC_VER) && !defined(_WIN32_WCE)
|
|
|
|
# if (_MSC_VER >= 900) && (_INTEGRAL_MAX_BITS >= 64)
|
|
|
|
# define USE_WIN32_LARGE_FILES
|
|
|
|
# else
|
|
|
|
# define USE_WIN32_SMALL_FILES
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2008-09-05 06:04:53 +08:00
|
|
|
#if defined(__MINGW32__) && !defined(USE_WIN32_LARGE_FILES)
|
|
|
|
# define USE_WIN32_LARGE_FILES
|
|
|
|
#endif
|
|
|
|
|
2008-08-23 02:09:03 +08:00
|
|
|
#if !defined(USE_WIN32_LARGE_FILES) && !defined(USE_WIN32_SMALL_FILES)
|
|
|
|
# define USE_WIN32_SMALL_FILES
|
|
|
|
#endif
|
|
|
|
|
2022-10-13 23:43:31 +08:00
|
|
|
/* Number of bits in a file offset, on hosts where this is settable. */
|
2023-08-08 19:00:36 +08:00
|
|
|
#if defined(USE_WIN32_LARGE_FILES) && defined(__MINGW32__)
|
2022-10-13 23:43:31 +08:00
|
|
|
# ifndef _FILE_OFFSET_BITS
|
|
|
|
# define _FILE_OFFSET_BITS 64
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2023-09-26 06:22:25 +08:00
|
|
|
#ifdef USE_WIN32_LARGE_FILES
|
|
|
|
#define HAVE__FSEEKI64
|
|
|
|
#endif
|
|
|
|
|
2022-11-12 04:12:15 +08:00
|
|
|
/* Define to the size of `off_t', as computed by sizeof. */
|
2023-08-08 19:00:36 +08:00
|
|
|
#if defined(__MINGW32__) && \
|
2022-11-12 04:12:15 +08:00
|
|
|
defined(_FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64)
|
|
|
|
# define SIZEOF_OFF_T 8
|
|
|
|
#else
|
|
|
|
# define SIZEOF_OFF_T 4
|
|
|
|
#endif
|
|
|
|
|
2010-01-26 20:13:39 +08:00
|
|
|
/* ---------------------------------------------------------------- */
|
|
|
|
/* DNS RESOLVER SPECIALTY */
|
|
|
|
/* ---------------------------------------------------------------- */
|
|
|
|
|
|
|
|
/*
|
2011-08-07 01:18:43 +08:00
|
|
|
* Undefine both USE_ARES and USE_THREADS_WIN32 for synchronous DNS.
|
2010-01-26 20:13:39 +08:00
|
|
|
*/
|
|
|
|
|
2011-08-07 01:18:43 +08:00
|
|
|
/* Define to enable c-ares asynchronous DNS lookups. */
|
2010-01-26 20:13:39 +08:00
|
|
|
/* #define USE_ARES 1 */
|
|
|
|
|
2013-04-11 20:05:08 +08:00
|
|
|
/* Default define to enable threaded asynchronous DNS lookups. */
|
|
|
|
#if !defined(USE_SYNC_DNS) && !defined(USE_ARES) && \
|
|
|
|
!defined(USE_THREADS_WIN32)
|
2013-04-09 23:44:51 +08:00
|
|
|
# define USE_THREADS_WIN32 1
|
|
|
|
#endif
|
2010-01-26 20:13:39 +08:00
|
|
|
|
|
|
|
#if defined(USE_ARES) && defined(USE_THREADS_WIN32)
|
|
|
|
# error "Only one DNS lookup specialty may be defined at most"
|
|
|
|
#endif
|
|
|
|
|
2005-12-18 05:20:35 +08:00
|
|
|
/* ---------------------------------------------------------------- */
|
2007-08-12 04:57:54 +08:00
|
|
|
/* LDAP SUPPORT */
|
2005-12-18 05:20:35 +08:00
|
|
|
/* ---------------------------------------------------------------- */
|
2005-11-13 21:32:19 +08:00
|
|
|
|
2022-09-30 05:29:53 +08:00
|
|
|
#if defined(CURL_HAS_NOVELL_LDAPSDK)
|
2015-01-19 04:25:37 +08:00
|
|
|
#undef USE_WIN32_LDAP
|
2007-08-20 20:50:44 +08:00
|
|
|
#define HAVE_LDAP_SSL_H 1
|
|
|
|
#define HAVE_LDAP_URL_PARSE 1
|
2007-08-25 01:08:49 +08:00
|
|
|
#elif defined(CURL_HAS_OPENLDAP_LDAPSDK)
|
2015-01-19 04:25:37 +08:00
|
|
|
#undef USE_WIN32_LDAP
|
2007-08-25 01:08:49 +08:00
|
|
|
#define HAVE_LDAP_URL_PARSE 1
|
2007-08-20 20:50:44 +08:00
|
|
|
#else
|
2007-08-12 04:57:54 +08:00
|
|
|
#undef HAVE_LDAP_URL_PARSE
|
2018-10-14 22:00:39 +08:00
|
|
|
#define HAVE_LDAP_SSL 1
|
2015-01-19 04:25:37 +08:00
|
|
|
#define USE_WIN32_LDAP 1
|
2007-08-20 20:50:44 +08:00
|
|
|
#endif
|
2005-03-11 13:28:07 +08:00
|
|
|
|
2014-12-03 02:21:52 +08:00
|
|
|
/* Define to use the Windows crypto library. */
|
2020-02-19 15:46:22 +08:00
|
|
|
#if !defined(CURL_WINDOWS_APP)
|
2014-12-03 02:21:52 +08:00
|
|
|
#define USE_WIN32_CRYPTO
|
2020-02-19 15:46:22 +08:00
|
|
|
#endif
|
2014-12-03 02:21:52 +08:00
|
|
|
|
2018-02-08 05:33:57 +08:00
|
|
|
/* Define to use Unix sockets. */
|
2019-05-24 14:02:06 +08:00
|
|
|
#define USE_UNIX_SOCKETS
|
2018-02-08 05:33:57 +08:00
|
|
|
|
2005-12-18 05:20:35 +08:00
|
|
|
/* ---------------------------------------------------------------- */
|
|
|
|
/* ADDITIONAL DEFINITIONS */
|
|
|
|
/* ---------------------------------------------------------------- */
|
2000-03-23 18:39:00 +08:00
|
|
|
|
2005-12-18 05:20:35 +08:00
|
|
|
/* Define cpu-machine-OS */
|
2022-11-22 16:25:05 +08:00
|
|
|
#ifndef OS
|
2007-03-18 02:19:15 +08:00
|
|
|
#if defined(_M_IX86) || defined(__i386__) /* x86 (MSVC or gcc) */
|
2005-12-18 05:20:35 +08:00
|
|
|
#define OS "i386-pc-win32"
|
2011-09-20 18:32:04 +08:00
|
|
|
#elif defined(_M_X64) || defined(__x86_64__) /* x86_64 (MSVC >=2005 or gcc) */
|
|
|
|
#define OS "x86_64-pc-win32"
|
2019-11-13 11:24:35 +08:00
|
|
|
#elif defined(_M_IA64) || defined(__ia64__) /* Itanium */
|
2007-02-14 05:21:44 +08:00
|
|
|
#define OS "ia64-pc-win32"
|
2019-11-13 11:24:35 +08:00
|
|
|
#elif defined(_M_ARM_NT) || defined(__arm__) /* ARMv7-Thumb2 (Windows RT) */
|
|
|
|
#define OS "thumbv7a-pc-win32"
|
|
|
|
#elif defined(_M_ARM64) || defined(__aarch64__) /* ARM64 (Windows 10) */
|
|
|
|
#define OS "aarch64-pc-win32"
|
2007-02-14 05:21:44 +08:00
|
|
|
#else
|
|
|
|
#define OS "unknown-pc-win32"
|
|
|
|
#endif
|
2022-07-12 03:41:31 +08:00
|
|
|
#endif
|
2004-06-24 21:49:14 +08:00
|
|
|
|
2005-12-18 05:20:35 +08:00
|
|
|
/* Name of package */
|
|
|
|
#define PACKAGE "curl"
|
2004-06-02 19:36:07 +08:00
|
|
|
|
2011-08-05 19:20:22 +08:00
|
|
|
/* If you want to build curl with the built-in manual */
|
|
|
|
#define USE_MANUAL 1
|
|
|
|
|
|
|
|
#endif /* HEADER_CURL_CONFIG_WIN32_H */
|