passagemath-gap-pkg-curlinterface 10.6.22__cp312-cp312-macosx_13_0_x86_64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of passagemath-gap-pkg-curlinterface might be problematic. Click here for more details.

Files changed (42) hide show
  1. gap/pkg/curlinterface/CHANGES +73 -0
  2. gap/pkg/curlinterface/GPL +339 -0
  3. gap/pkg/curlinterface/LICENSE +16 -0
  4. gap/pkg/curlinterface/Makefile +17 -0
  5. gap/pkg/curlinterface/Makefile.gappkg +220 -0
  6. gap/pkg/curlinterface/Makefile.in +17 -0
  7. gap/pkg/curlinterface/PackageInfo.g +144 -0
  8. gap/pkg/curlinterface/README.md +8 -0
  9. gap/pkg/curlinterface/autogen.sh +7 -0
  10. gap/pkg/curlinterface/bin/x86_64-apple-darwin22-default64-kv9/curl.so +0 -0
  11. gap/pkg/curlinterface/config.log +358 -0
  12. gap/pkg/curlinterface/config.status +1031 -0
  13. gap/pkg/curlinterface/configure +5134 -0
  14. gap/pkg/curlinterface/configure.ac +39 -0
  15. gap/pkg/curlinterface/gap/curl.gd +169 -0
  16. gap/pkg/curlinterface/gap/curl.gi +67 -0
  17. gap/pkg/curlinterface/init.g +15 -0
  18. gap/pkg/curlinterface/makedoc.g +10 -0
  19. gap/pkg/curlinterface/read.g +6 -0
  20. gap/pkg/curlinterface/tst/basic.tst +198 -0
  21. gap/pkg/curlinterface/tst/errors.tst +65 -0
  22. gap/pkg/curlinterface/tst/testall.g +12 -0
  23. passagemath_gap_pkg_curlinterface-10.6.22.dist-info/METADATA +92 -0
  24. passagemath_gap_pkg_curlinterface-10.6.22.dist-info/METADATA.bak +93 -0
  25. passagemath_gap_pkg_curlinterface-10.6.22.dist-info/RECORD +42 -0
  26. passagemath_gap_pkg_curlinterface-10.6.22.dist-info/WHEEL +6 -0
  27. passagemath_gap_pkg_curlinterface-10.6.22.dist-info/top_level.txt +1 -0
  28. passagemath_gap_pkg_curlinterface.dylibs/libbrotlicommon.1.1.0.dylib +0 -0
  29. passagemath_gap_pkg_curlinterface.dylibs/libbrotlidec.1.1.0.dylib +0 -0
  30. passagemath_gap_pkg_curlinterface.dylibs/libcrypto.3.dylib +0 -0
  31. passagemath_gap_pkg_curlinterface.dylibs/libcurl.4.dylib +0 -0
  32. passagemath_gap_pkg_curlinterface.dylibs/libnghttp2.14.dylib +0 -0
  33. passagemath_gap_pkg_curlinterface.dylibs/libnghttp3.9.3.0.dylib +0 -0
  34. passagemath_gap_pkg_curlinterface.dylibs/libngtcp2.16.dylib +0 -0
  35. passagemath_gap_pkg_curlinterface.dylibs/libngtcp2_crypto_ossl.0.dylib +0 -0
  36. passagemath_gap_pkg_curlinterface.dylibs/librtmp.1.dylib +0 -0
  37. passagemath_gap_pkg_curlinterface.dylibs/libssh2.1.dylib +0 -0
  38. passagemath_gap_pkg_curlinterface.dylibs/libssl.3.dylib +0 -0
  39. passagemath_gap_pkg_curlinterface.dylibs/libzstd.1.5.7.dylib +0 -0
  40. sage/all__sagemath_gap_pkg_curlinterface.py +1 -0
  41. sage/libs/all__sagemath_gap_pkg_curlinterface.py +1 -0
  42. sage/libs/gap_pkg_curlinterface.cpython-312-darwin.so +0 -0
@@ -0,0 +1,144 @@
1
+ #
2
+ # curlInterface: Simple Web Access
3
+ #
4
+ # This file contains package meta data. For additional information on
5
+ # the meaning and correct usage of these fields, please consult the
6
+ # manual of the "Example" package as well as the comments in its
7
+ # PackageInfo.g file.
8
+ #
9
+ SetPackageInfo( rec(
10
+
11
+ PackageName := "curlInterface",
12
+ Subtitle := "Simple Web Access",
13
+ Version := "2.4.0",
14
+ Date := "31/08/2024", # dd/mm/yyyy format
15
+ License := "GPL-2.0-or-later",
16
+
17
+ Persons := [
18
+ rec(
19
+ IsAuthor := true,
20
+ IsMaintainer := true,
21
+ FirstNames := "Christopher",
22
+ LastName := "Jefferson",
23
+ WWWHome := "http://caj.host.cs.st-andrews.ac.uk/",
24
+ Email := "caj21@st-andrews.ac.uk",
25
+ PostalAddress := Concatenation(
26
+ "School of Computer Science\n",
27
+ "University of St Andrews\n",
28
+ "Jack Cole Building, North Haugh\n",
29
+ "St Andrews, Fife, KY16 9SX\n",
30
+ "United Kingdom" ),
31
+ Place := "St Andrews",
32
+ Institution := "University of St Andrews",
33
+ ),
34
+
35
+ rec(
36
+ IsAuthor := false,
37
+ IsMaintainer := true,
38
+ FirstNames := "Max",
39
+ LastName := "Horn",
40
+ WWWHome := "https://www.quendi.de/math",
41
+ Email := "mhorn@rptu.de",
42
+ PostalAddress := Concatenation(
43
+ "Fachbereich Mathematik\n",
44
+ "RPTU Kaiserslautern-Landau\n",
45
+ "Gottlieb-Daimler-Straße 48\n",
46
+ "67663 Kaiserslautern\n",
47
+ "Germany" ),
48
+ Place := "Kaiserslautern, Germany",
49
+ Institution := "RPTU Kaiserslautern-Landau"
50
+ ),
51
+
52
+ rec(
53
+ IsAuthor := true,
54
+ IsMaintainer := true,
55
+ FirstNames := "Michael",
56
+ LastName := "Young",
57
+ WWWHome := "http://mct25.host.cs.st-andrews.ac.uk/",
58
+ Email := "mct25@st-andrews.ac.uk",
59
+ PostalAddress := Concatenation(
60
+ "School of Computer Science\n",
61
+ "University of St Andrews\n",
62
+ "Jack Cole Building, North Haugh\n",
63
+ "St Andrews, Fife, KY16 9SX\n",
64
+ "United Kingdom" ),
65
+ Place := "St Andrews",
66
+ Institution := "University of St Andrews",
67
+ ),
68
+ ],
69
+
70
+ SourceRepository := rec(
71
+ Type := "git",
72
+ URL := Concatenation( "https://github.com/gap-packages/", ~.PackageName ),
73
+ ),
74
+ IssueTrackerURL := Concatenation( ~.SourceRepository.URL, "/issues" ),
75
+ #SupportEmail := "TODO",
76
+ PackageWWWHome := "https://gap-packages.github.io/curlInterface/",
77
+ PackageInfoURL := Concatenation( ~.PackageWWWHome, "PackageInfo.g" ),
78
+ README_URL := Concatenation( ~.PackageWWWHome, "README.md" ),
79
+ ArchiveURL := Concatenation( ~.SourceRepository.URL,
80
+ "/releases/download/v", ~.Version,
81
+ "/", ~.PackageName, "-", ~.Version ),
82
+
83
+ ArchiveFormats := ".tar.gz",
84
+
85
+ ## Status information. Currently the following cases are recognized:
86
+ ## "accepted" for successfully refereed packages
87
+ ## "submitted" for packages submitted for the refereeing
88
+ ## "deposited" for packages for which the GAP developers agreed
89
+ ## to distribute them with the core GAP system
90
+ ## "dev" for development versions of packages
91
+ ## "other" for all other packages
92
+ ##
93
+ Status := "deposited",
94
+
95
+ AbstractHTML := "",
96
+
97
+ PackageDoc := rec(
98
+ BookName := "curl",
99
+ ArchiveURLSubset := ["doc"],
100
+ HTMLStart := "doc/chap0_mj.html",
101
+ PDFFile := "doc/manual.pdf",
102
+ SixFile := "doc/manual.six",
103
+ LongTitle := "Simple Web Access",
104
+ ),
105
+
106
+ Dependencies := rec(
107
+ GAP := ">= 4.12",
108
+ NeededOtherPackages := [ [ "GAPDoc", ">= 1.5" ] ],
109
+ SuggestedOtherPackages := [ ],
110
+ ExternalConditions := [ ],
111
+ ),
112
+
113
+ AvailabilityTest := function()
114
+ if not IsKernelExtensionAvailable("curlinterface", "curl") then
115
+ LogPackageLoadingMessage(PACKAGE_WARNING,
116
+ ["the kernel module is not compiled, ",
117
+ "the package cannot be loaded."]);
118
+ return fail;
119
+ fi;
120
+ return true;
121
+ end,
122
+
123
+ # Show the libcurl version number in the banner string.
124
+ # (We assume that this function gets called *after* the package has been
125
+ # loaded, in particular after libcurl has been loaded.)
126
+ BannerFunction := function( info )
127
+ local str, version;
128
+
129
+ str := DefaultPackageBannerString( info );
130
+ if not IsBoundGlobal( "CURL_VERSION" ) then
131
+ return str;
132
+ fi;
133
+ version := ValueGlobal( "CURL_VERSION" )();
134
+
135
+ return ReplacedString( str, "by Christopher",
136
+ Concatenation( "Using ", version, "\n", "by Christopher" ) );
137
+ end,
138
+
139
+
140
+ TestFile := "tst/testall.g",
141
+
142
+ #Keywords := [ "TODO" ],
143
+
144
+ ));
@@ -0,0 +1,8 @@
1
+ The GAP 4 package `curlInterface'
2
+ ==============================
3
+
4
+ [![Build Status](https://github.com/gap-packages/curlInterface/workflows/CI/badge.svg?branch=master)](https://github.com/gap-packages/curlInterface/actions?query=workflow%3ACI+branch%3Amaster)
5
+ [![Code Coverage](https://codecov.io/github/gap-packages/curlInterface/coverage.svg?branch=master&token=)](https://codecov.io/gh/gap-packages/curlInterface)
6
+
7
+ This Package provides a simple wrapper around libcurl, to allow downloading
8
+ files over http, ftp and https.
@@ -0,0 +1,7 @@
1
+ #!/bin/sh
2
+ #
3
+ # Regenerate configure from configure.ac. Requires GNU autoconf.
4
+ set -ex
5
+ mkdir -p gen
6
+ autoconf -Wall -f
7
+ autoheader -Wall -f
@@ -0,0 +1,358 @@
1
+ This file contains any messages produced by compilers while
2
+ running configure, to aid debugging if configure makes a mistake.
3
+
4
+ It was created by curlInterface configure GAP package, which was
5
+ generated by GNU Autoconf 2.72. Invocation command line was
6
+
7
+ $ ./configure --with-gaproot=/Users/runner/sage-local/lib/gap/
8
+
9
+ ## --------- ##
10
+ ## Platform. ##
11
+ ## --------- ##
12
+
13
+ hostname = iad01-dz252-39b8683a-b1c5-4f4c-adae-b3bf1c921f0d-9606251D95D6.local
14
+ uname -m = x86_64
15
+ uname -r = 22.6.0
16
+ uname -s = Darwin
17
+ uname -v = Darwin Kernel Version 22.6.0: Thu Apr 24 20:25:14 PDT 2025; root:xnu-8796.141.3.712.2~1/RELEASE_X86_64
18
+
19
+ /usr/bin/uname -p = i386
20
+ /bin/uname -X = unknown
21
+
22
+ /bin/arch = unknown
23
+ /usr/bin/arch -k = unknown
24
+ /usr/convex/getsysinfo = unknown
25
+ /usr/bin/hostinfo = Mach kernel version:
26
+ Darwin Kernel Version 22.6.0: Thu Apr 24 20:25:14 PDT 2025; root:xnu-8796.141.3.712.2~1/RELEASE_X86_64
27
+ Kernel configured for up to 4 processors.
28
+ 4 processors are physically available.
29
+ 4 processors are logically available.
30
+ Processor type: x86_64h (Intel x86-64h Haswell)
31
+ Processors active: 0 1 2 3
32
+ Primary memory available: 14.00 gigabytes
33
+ Default processor set: 444 tasks, 1248 threads, 4 processors
34
+ Load average: 9.90, Mach factor: 0.59
35
+ /bin/machine = unknown
36
+ /usr/bin/oslevel = unknown
37
+ /bin/universe = unknown
38
+
39
+ PATH: /Users/runner/sage-local/libexec/ccache/
40
+ PATH: /Users/runner/work/passagemath/passagemath/build/bin/
41
+ PATH: /Users/runner/work/passagemath/passagemath/tools/
42
+ PATH: /Users/runner/sage-local/var/lib/sage/venv-python3.13/bin/
43
+ PATH: /Users/runner/sage-local/bin/
44
+ PATH: /Users/runner/sage-local/libexec/ccache/
45
+ PATH: /Users/runner/work/passagemath/passagemath/build/bin/
46
+ PATH: /Users/runner/work/passagemath/passagemath/tools/
47
+ PATH: /Users/runner/sage-local/bin/
48
+ PATH: /Users/runner/work/passagemath/passagemath/src/bin/
49
+ PATH: /Users/runner/sage-local/bin/
50
+ PATH: /Users/runner/work/passagemath/passagemath/build/bin/
51
+ PATH: /Users/runner/work/passagemath/passagemath/src/bin/
52
+ PATH: /Users/runner/sage-local/bin/
53
+ PATH: /usr/local/opt/texinfo/bin/
54
+ PATH: /usr/local/opt/bzip2/bin/
55
+ PATH: /Users/runner/work/passagemath/passagemath/prefix/bin/
56
+ PATH: /usr/local/lib/ruby/gems/3.3.0/bin/
57
+ PATH: /usr/local/opt/ruby@3.3/bin/
58
+ PATH: /usr/local/opt/pipx_bin/
59
+ PATH: /Users/runner/.cargo/bin/
60
+ PATH: /usr/local/opt/curl/bin/
61
+ PATH: /usr/local/bin/
62
+ PATH: /usr/local/sbin/
63
+ PATH: /Users/runner/bin/
64
+ PATH: /Users/runner/.yarn/bin/
65
+ PATH: /Users/runner/Library/Android/sdk/tools/
66
+ PATH: /Users/runner/Library/Android/sdk/platform-tools/
67
+ PATH: /Library/Frameworks/Python.framework/Versions/Current/bin/
68
+ PATH: /Library/Frameworks/Mono.framework/Versions/Current/Commands/
69
+ PATH: /usr/bin/
70
+ PATH: /bin/
71
+ PATH: /usr/sbin/
72
+ PATH: /sbin/
73
+ PATH: /Users/runner/.dotnet/tools/
74
+
75
+
76
+ ## ----------- ##
77
+ ## Core tests. ##
78
+ ## ----------- ##
79
+
80
+ configure:2365: checking for gcc
81
+ configure:2398: result: gcc
82
+ configure:2757: checking for C compiler version
83
+ configure:2766: gcc --version >&5
84
+ Apple clang version 15.0.0 (clang-1500.1.0.2.5)
85
+ Target: x86_64-apple-darwin22.6.0
86
+ Thread model: posix
87
+ InstalledDir: /Applications/Xcode_15.2.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
88
+ configure:2777: $? = 0
89
+ configure:2766: gcc -v >&5
90
+ Apple clang version 15.0.0 (clang-1500.1.0.2.5)
91
+ Target: x86_64-apple-darwin22.6.0
92
+ Thread model: posix
93
+ InstalledDir: /Applications/Xcode_15.2.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
94
+ configure:2777: $? = 0
95
+ configure:2766: gcc -V >&5
96
+ clang: error: argument to '-V' is missing (expected 1 value)
97
+ clang: error: no input files
98
+ configure:2777: $? = 1
99
+ configure:2766: gcc -qversion >&5
100
+ clang: error: unknown argument '-qversion'; did you mean '--version'?
101
+ clang: error: no input files
102
+ configure:2777: $? = 1
103
+ configure:2766: gcc -version >&5
104
+ clang: error: unknown argument '-version'; did you mean '--version'?
105
+ clang: error: no input files
106
+ configure:2777: $? = 1
107
+ configure:2797: checking whether the C compiler works
108
+ configure:2819: gcc -g -O2 -std=gnu17 -Wno-implicit-function-declaration -L/Users/runner/sage-local/lib -L/Users/runner/sage-local/lib -Wl,-ld_classic -Wl,-headerpad_max_install_names -Wl,-ld_classic conftest.c >&5
109
+ configure:2823: $? = 0
110
+ configure:2874: result: yes
111
+ configure:2878: checking for C compiler default output file name
112
+ configure:2880: result: a.out
113
+ configure:2886: checking for suffix of executables
114
+ configure:2893: gcc -o conftest -g -O2 -std=gnu17 -Wno-implicit-function-declaration -L/Users/runner/sage-local/lib -L/Users/runner/sage-local/lib -Wl,-ld_classic -Wl,-headerpad_max_install_names -Wl,-ld_classic conftest.c >&5
115
+ configure:2897: $? = 0
116
+ configure:2921: result:
117
+ configure:2945: checking whether we are cross compiling
118
+ configure:2953: gcc -o conftest -g -O2 -std=gnu17 -Wno-implicit-function-declaration -L/Users/runner/sage-local/lib -L/Users/runner/sage-local/lib -Wl,-ld_classic -Wl,-headerpad_max_install_names -Wl,-ld_classic conftest.c >&5
119
+ configure:2957: $? = 0
120
+ configure:2964: ./conftest
121
+ configure:2968: $? = 0
122
+ configure:2983: result: no
123
+ configure:2989: checking for suffix of object files
124
+ configure:3012: gcc -c -g -O2 -std=gnu17 -Wno-implicit-function-declaration conftest.c >&5
125
+ configure:3016: $? = 0
126
+ configure:3040: result: o
127
+ configure:3044: checking whether the compiler supports GNU C
128
+ configure:3064: gcc -c -g -O2 -std=gnu17 -Wno-implicit-function-declaration conftest.c >&5
129
+ configure:3064: $? = 0
130
+ configure:3076: result: yes
131
+ configure:3087: checking whether gcc accepts -g
132
+ configure:3108: gcc -c -g conftest.c >&5
133
+ configure:3108: $? = 0
134
+ configure:3155: result: yes
135
+ configure:3175: checking for gcc option to enable C11 features
136
+ configure:3190: gcc -c -g -O2 -std=gnu17 -Wno-implicit-function-declaration conftest.c >&5
137
+ configure:3190: $? = 0
138
+ configure:3209: result: none needed
139
+ configure:3350: checking for GAP root directory
140
+ configure:3367: result: /Users/runner/sage-local/lib/gap
141
+ configure:3391: checking for GAP architecture
142
+ configure:3398: result: x86_64-apple-darwin22-default64-kv9
143
+ configure:3487: checking for gawk
144
+ configure:3523: result: no
145
+ configure:3487: checking for mawk
146
+ configure:3523: result: no
147
+ configure:3487: checking for nawk
148
+ configure:3523: result: no
149
+ configure:3487: checking for awk
150
+ configure:3508: found /usr/bin/awk
151
+ configure:3520: result: awk
152
+ configure:3588: checking for curl-config
153
+ configure:3611: found /usr/local/opt/curl/bin/curl-config
154
+ configure:3624: result: /usr/local/opt/curl/bin/curl-config
155
+ configure:3635: checking for the version of libcurl
156
+ configure:3644: result: 8.15.0
157
+ configure:3707: checking whether libcurl is usable
158
+ configure:3742: gcc -o conftest -g -O2 -std=gnu17 -Wno-implicit-function-declaration -I/usr/local/Cellar/curl/8.15.0/include -L/Users/runner/sage-local/lib -L/Users/runner/sage-local/lib -Wl,-ld_classic -Wl,-headerpad_max_install_names -Wl,-ld_classic conftest.c -L/usr/local/Cellar/curl/8.15.0/lib -lcurl >&5
159
+ configure:3742: $? = 0
160
+ configure:3759: result: yes
161
+ configure:3772: checking for curl_free
162
+ configure:3772: gcc -o conftest -g -O2 -std=gnu17 -Wno-implicit-function-declaration -I/usr/local/Cellar/curl/8.15.0/include -L/Users/runner/sage-local/lib -L/Users/runner/sage-local/lib -Wl,-ld_classic -Wl,-headerpad_max_install_names -Wl,-ld_classic conftest.c -L/usr/local/Cellar/curl/8.15.0/lib -lcurl >&5
163
+ configure:3772: $? = 0
164
+ configure:3772: result: yes
165
+ configure:3977: creating ./config.status
166
+
167
+ ## ---------------------- ##
168
+ ## Running config.status. ##
169
+ ## ---------------------- ##
170
+
171
+ This file was extended by curlInterface config.status GAP package, which was
172
+ generated by GNU Autoconf 2.72. Invocation command line was
173
+
174
+ CONFIG_FILES =
175
+ CONFIG_HEADERS =
176
+ CONFIG_LINKS =
177
+ CONFIG_COMMANDS =
178
+ $ ./config.status
179
+
180
+ on iad01-dz252-39b8683a-b1c5-4f4c-adae-b3bf1c921f0d-9606251D95D6.local
181
+
182
+ config.status:841: creating Makefile
183
+ config.status:841: creating gen/pkgconfig.h
184
+
185
+ ## ---------------- ##
186
+ ## Cache variables. ##
187
+ ## ---------------- ##
188
+
189
+ ac_cv_c_compiler_gnu=yes
190
+ ac_cv_env_CC_set=set
191
+ ac_cv_env_CC_value=gcc
192
+ ac_cv_env_CFLAGS_set=set
193
+ ac_cv_env_CFLAGS_value='-g -O2 -std=gnu17 -Wno-implicit-function-declaration'
194
+ ac_cv_env_CPPFLAGS_set=
195
+ ac_cv_env_CPPFLAGS_value=
196
+ ac_cv_env_LDFLAGS_set=set
197
+ ac_cv_env_LDFLAGS_value='-L/Users/runner/sage-local/lib -L/Users/runner/sage-local/lib -Wl,-ld_classic -Wl,-headerpad_max_install_names -Wl,-ld_classic'
198
+ ac_cv_env_LIBS_set=
199
+ ac_cv_env_LIBS_value=
200
+ ac_cv_env_build_alias_set=
201
+ ac_cv_env_build_alias_value=
202
+ ac_cv_env_host_alias_set=
203
+ ac_cv_env_host_alias_value=
204
+ ac_cv_env_target_alias_set=
205
+ ac_cv_env_target_alias_value=
206
+ ac_cv_func_curl_free=yes
207
+ ac_cv_objext=o
208
+ ac_cv_path__libcurl_config=/usr/local/opt/curl/bin/curl-config
209
+ ac_cv_prog_AWK=awk
210
+ ac_cv_prog_ac_ct_CC=gcc
211
+ ac_cv_prog_cc_c11=
212
+ ac_cv_prog_cc_g=yes
213
+ ac_cv_prog_cc_stdc=
214
+ libcurl_cv_lib_curl_usable=yes
215
+ libcurl_cv_lib_curl_version=8.15.0
216
+
217
+ ## ----------------- ##
218
+ ## Output variables. ##
219
+ ## ----------------- ##
220
+
221
+ AWK='awk'
222
+ CC='gcc'
223
+ CFLAGS='-g -O2 -std=gnu17 -Wno-implicit-function-declaration'
224
+ CPPFLAGS=''
225
+ DEFS='-DHAVE_CONFIG_H'
226
+ ECHO_C='\c'
227
+ ECHO_N=''
228
+ ECHO_T=''
229
+ EXEEXT=''
230
+ GAPARCH='x86_64-apple-darwin22-default64-kv9'
231
+ GAPROOT='/Users/runner/sage-local/lib/gap'
232
+ GAP_CFLAGS=' -pthread -g -O2'
233
+ GAP_CPPFLAGS='-I/Users/runner/sage-local/include/gap -I/Users/runner/sage-local/include -DUSE_GASMAN=1 -I/src'
234
+ GAP_LDFLAGS=''
235
+ LDFLAGS='-L/Users/runner/sage-local/lib -L/Users/runner/sage-local/lib -Wl,-ld_classic -Wl,-headerpad_max_install_names -Wl,-ld_classic'
236
+ LIBCURL='-L/usr/local/Cellar/curl/8.15.0/lib -lcurl'
237
+ LIBCURL_CPPFLAGS=' -I/usr/local/Cellar/curl/8.15.0/include'
238
+ LIBOBJS=''
239
+ LIBS=''
240
+ LTLIBOBJS=''
241
+ OBJEXT='o'
242
+ PACKAGE_BUGREPORT=''
243
+ PACKAGE_NAME='curlInterface'
244
+ PACKAGE_STRING='curlInterface GAP package'
245
+ PACKAGE_TARNAME='curlinterface'
246
+ PACKAGE_URL=''
247
+ PACKAGE_VERSION='GAP package'
248
+ PATH_SEPARATOR=':'
249
+ SHELL='/bin/sh'
250
+ _libcurl_config=''
251
+ ac_ct_CC='gcc'
252
+ bindir='${exec_prefix}/bin'
253
+ build_alias=''
254
+ datadir='${datarootdir}'
255
+ datarootdir='${prefix}/share'
256
+ docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
257
+ dvidir='${docdir}'
258
+ exec_prefix='${prefix}'
259
+ host_alias=''
260
+ htmldir='${docdir}'
261
+ includedir='${prefix}/include'
262
+ infodir='${datarootdir}/info'
263
+ libdir='${exec_prefix}/lib'
264
+ libexecdir='${exec_prefix}/libexec'
265
+ localedir='${datarootdir}/locale'
266
+ localstatedir='${prefix}/var'
267
+ mandir='${datarootdir}/man'
268
+ oldincludedir='/usr/include'
269
+ pdfdir='${docdir}'
270
+ prefix='/usr/local'
271
+ program_transform_name='s,x,x,'
272
+ psdir='${docdir}'
273
+ runstatedir='${localstatedir}/run'
274
+ sbindir='${exec_prefix}/sbin'
275
+ sharedstatedir='${prefix}/com'
276
+ sysconfdir='${prefix}/etc'
277
+ target_alias=''
278
+
279
+ ## ----------- ##
280
+ ## confdefs.h. ##
281
+ ## ----------- ##
282
+
283
+ /* confdefs.h */
284
+ #define PACKAGE_NAME "curlInterface"
285
+ #define PACKAGE_TARNAME "curlinterface"
286
+ #define PACKAGE_VERSION "GAP package"
287
+ #define PACKAGE_STRING "curlInterface GAP package"
288
+ #define PACKAGE_BUGREPORT ""
289
+ #define PACKAGE_URL ""
290
+ #define HAVE_LIBCURL 1
291
+ #define LIBCURL_FEATURE_ALT_SVC 1
292
+ #define LIBCURL_FEATURE_ASYNCHDNS 1
293
+ #define LIBCURL_FEATURE_BROTLI 1
294
+ #define LIBCURL_FEATURE_GSS_API 1
295
+ #define LIBCURL_FEATURE_HSTS 1
296
+ #define LIBCURL_FEATURE_HTTP2 1
297
+ #define LIBCURL_FEATURE_HTTP3 1
298
+ #define LIBCURL_FEATURE_HTTPS_PROXY 1
299
+ #define LIBCURL_FEATURE_IDN 1
300
+ #define LIBCURL_FEATURE_IPV6 1
301
+ #define LIBCURL_FEATURE_KERBEROS 1
302
+ #define LIBCURL_FEATURE_LARGEFILE 1
303
+ #define LIBCURL_FEATURE_LIBZ 1
304
+ #define LIBCURL_FEATURE_NTLM 1
305
+ #define LIBCURL_FEATURE_SPNEGO 1
306
+ #define LIBCURL_FEATURE_SSL 1
307
+ #define LIBCURL_FEATURE_THREADSAFE 1
308
+ #define LIBCURL_FEATURE_TLS_SRP 1
309
+ #define LIBCURL_FEATURE_UNIXSOCKETS 1
310
+ #define LIBCURL_FEATURE_ZSTD 1
311
+ #define LIBCURL_PROTOCOL_DICT 1
312
+ #define LIBCURL_PROTOCOL_FILE 1
313
+ #define LIBCURL_PROTOCOL_FTP 1
314
+ #define LIBCURL_PROTOCOL_FTPS 1
315
+ #define LIBCURL_PROTOCOL_GOPHER 1
316
+ #define LIBCURL_PROTOCOL_GOPHERS 1
317
+ #define LIBCURL_PROTOCOL_HTTP 1
318
+ #define LIBCURL_PROTOCOL_HTTPS 1
319
+ #define LIBCURL_PROTOCOL_IMAP 1
320
+ #define LIBCURL_PROTOCOL_IMAPS 1
321
+ #define LIBCURL_PROTOCOL_IPFS 1
322
+ #define LIBCURL_PROTOCOL_IPNS 1
323
+ #define LIBCURL_PROTOCOL_LDAP 1
324
+ #define LIBCURL_PROTOCOL_LDAPS 1
325
+ #define LIBCURL_PROTOCOL_MQTT 1
326
+ #define LIBCURL_PROTOCOL_POP3 1
327
+ #define LIBCURL_PROTOCOL_POP3S 1
328
+ #define LIBCURL_PROTOCOL_RTMP 1
329
+ #define LIBCURL_PROTOCOL_RTSP 1
330
+ #define LIBCURL_PROTOCOL_SCP 1
331
+ #define LIBCURL_PROTOCOL_SFTP 1
332
+ #define LIBCURL_PROTOCOL_SMB 1
333
+ #define LIBCURL_PROTOCOL_SMBS 1
334
+ #define LIBCURL_PROTOCOL_SMTP 1
335
+ #define LIBCURL_PROTOCOL_SMTPS 1
336
+ #define LIBCURL_PROTOCOL_TELNET 1
337
+ #define LIBCURL_PROTOCOL_TFTP 1
338
+ #define LIBCURL_PROTOCOL_WS 1
339
+ #define LIBCURL_PROTOCOL_WSS 1
340
+
341
+ configure: exit 0
342
+
343
+ ## ---------------------- ##
344
+ ## Running config.status. ##
345
+ ## ---------------------- ##
346
+
347
+ This file was extended by curlInterface config.status GAP package, which was
348
+ generated by GNU Autoconf 2.72. Invocation command line was
349
+
350
+ CONFIG_FILES =
351
+ CONFIG_HEADERS =
352
+ CONFIG_LINKS =
353
+ CONFIG_COMMANDS =
354
+ $ ./config.status gen/pkgconfig.h
355
+
356
+ on iad01-dz252-39b8683a-b1c5-4f4c-adae-b3bf1c921f0d-9606251D95D6.local
357
+
358
+ config.status:841: creating gen/pkgconfig.h