passagemath-gap-pkg-curlinterface 10.6.22__cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.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 (33) 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/aarch64-unknown-linux-gnu-default64-kv9/curl.so +0 -0
  11. gap/pkg/curlinterface/config.log +325 -0
  12. gap/pkg/curlinterface/config.status +1018 -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 +33 -0
  26. passagemath_gap_pkg_curlinterface-10.6.22.dist-info/WHEEL +7 -0
  27. passagemath_gap_pkg_curlinterface-10.6.22.dist-info/top_level.txt +1 -0
  28. passagemath_gap_pkg_curlinterface.libs/libcrypto-3dc39733.so.1.1.1k +0 -0
  29. passagemath_gap_pkg_curlinterface.libs/libcurl-6f49eda2.so.4.8.0 +0 -0
  30. passagemath_gap_pkg_curlinterface.libs/libssl-b6e07dfa.so.1.1.1k +0 -0
  31. sage/all__sagemath_gap_pkg_curlinterface.py +1 -0
  32. sage/libs/all__sagemath_gap_pkg_curlinterface.py +1 -0
  33. sage/libs/gap_pkg_curlinterface.cpython-312-aarch64-linux-gnu.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,325 @@
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=/host/sage-manylinux_2_28_aarch64/lib/gap/
8
+
9
+ ## --------- ##
10
+ ## Platform. ##
11
+ ## --------- ##
12
+
13
+ hostname = c833daeb558c
14
+ uname -m = aarch64
15
+ uname -r = 6.11.0-1015-azure
16
+ uname -s = Linux
17
+ uname -v = #15~24.04.1-Ubuntu SMP Thu May 1 03:01:44 UTC 2025
18
+
19
+ /usr/bin/uname -p = aarch64
20
+ /bin/uname -X = unknown
21
+
22
+ /bin/arch = aarch64
23
+ /usr/bin/arch -k = unknown
24
+ /usr/convex/getsysinfo = unknown
25
+ /usr/bin/hostinfo = unknown
26
+ /bin/machine = unknown
27
+ /usr/bin/oslevel = unknown
28
+ /bin/universe = unknown
29
+
30
+ PATH: /host/sage-manylinux_2_28_aarch64/libexec/ccache/
31
+ PATH: /project/build/bin/
32
+ PATH: /project/tools/
33
+ PATH: /host/sage-manylinux_2_28_aarch64/var/lib/sage/venv-python3.9/bin/
34
+ PATH: /host/sage-manylinux_2_28_aarch64/bin/
35
+ PATH: /host/sage-manylinux_2_28_aarch64/libexec/ccache/
36
+ PATH: /project/build/bin/
37
+ PATH: /project/tools/
38
+ PATH: /host/sage-manylinux_2_28_aarch64/bin/
39
+ PATH: /project/src/bin/
40
+ PATH: /host/sage-manylinux_2_28_aarch64/bin/
41
+ PATH: /project/build/bin/
42
+ PATH: /project/src/bin/
43
+ PATH: /host/sage-manylinux_2_28_aarch64/bin/
44
+ PATH: /project/prefix/bin/
45
+ PATH: /opt/python/cp39-cp39/bin/
46
+ PATH: /opt/rh/gcc-toolset-14/root/usr/bin/
47
+ PATH: /usr/local/sbin/
48
+ PATH: /usr/local/bin/
49
+ PATH: /usr/sbin/
50
+ PATH: /usr/bin/
51
+ PATH: /sbin/
52
+ PATH: /bin/
53
+
54
+
55
+ ## ----------- ##
56
+ ## Core tests. ##
57
+ ## ----------- ##
58
+
59
+ configure:2365: checking for gcc
60
+ configure:2398: result: gcc
61
+ configure:2757: checking for C compiler version
62
+ configure:2766: gcc --version >&5
63
+ gcc (GCC) 14.2.1 20250110 (Red Hat 14.2.1-7)
64
+ Copyright (C) 2024 Free Software Foundation, Inc.
65
+ This is free software; see the source for copying conditions. There is NO
66
+ warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
67
+
68
+ configure:2777: $? = 0
69
+ configure:2766: gcc -v >&5
70
+ Using built-in specs.
71
+ COLLECT_GCC=/opt/rh/gcc-toolset-14/root/usr/bin/gcc
72
+ COLLECT_LTO_WRAPPER=/opt/rh/gcc-toolset-14/root/usr/libexec/gcc/aarch64-redhat-linux/14/lto-wrapper
73
+ Target: aarch64-redhat-linux
74
+ Configured with: ../configure --enable-bootstrap --enable-languages=c,c++,fortran,lto --prefix=/opt/rh/gcc-toolset-14/root/usr --mandir=/opt/rh/gcc-toolset-14/root/usr/share/man --infodir=/opt/rh/gcc-toolset-14/root/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-shared --enable-threads=posix --enable-checking=release --enable-multilib --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-gcc-major-version-only --enable-libstdcxx-backtrace --with-libstdcxx-zoneinfo=/usr/share/zoneinfo --with-linker-hash-style=gnu --enable-plugin --enable-initfini-array --with-isl=/builddir/build/BUILD/gcc-14.2.1-20250110/obj-aarch64-redhat-linux/isl-install --enable-gnu-indirect-function --build=aarch64-redhat-linux
75
+ Thread model: posix
76
+ Supported LTO compression algorithms: zlib zstd
77
+ gcc version 14.2.1 20250110 (Red Hat 14.2.1-7) (GCC)
78
+ configure:2777: $? = 0
79
+ configure:2766: gcc -V >&5
80
+ gcc: error: unrecognized command-line option '-V'
81
+ gcc: fatal error: no input files
82
+ compilation terminated.
83
+ configure:2777: $? = 1
84
+ configure:2766: gcc -qversion >&5
85
+ gcc: error: unrecognized command-line option '-qversion'; did you mean '--version'?
86
+ gcc: fatal error: no input files
87
+ compilation terminated.
88
+ configure:2777: $? = 1
89
+ configure:2766: gcc -version >&5
90
+ gcc: error: unrecognized command-line option '-version'
91
+ gcc: fatal error: no input files
92
+ compilation terminated.
93
+ configure:2777: $? = 1
94
+ configure:2797: checking whether the C compiler works
95
+ configure:2819: gcc -g -O2 -std=gnu17 -Wno-implicit-function-declaration -Wl,-rpath-link,/host/sage-manylinux_2_28_aarch64/lib -L/host/sage-manylinux_2_28_aarch64/lib -Wl,-rpath,/host/sage-manylinux_2_28_aarch64/lib -Wl,-rpath-link,/host/sage-manylinux_2_28_aarch64/lib -L/host/sage-manylinux_2_28_aarch64/lib -Wl,-rpath,/host/sage-manylinux_2_28_aarch64/lib conftest.c >&5
96
+ configure:2823: $? = 0
97
+ configure:2874: result: yes
98
+ configure:2878: checking for C compiler default output file name
99
+ configure:2880: result: a.out
100
+ configure:2886: checking for suffix of executables
101
+ configure:2893: gcc -o conftest -g -O2 -std=gnu17 -Wno-implicit-function-declaration -Wl,-rpath-link,/host/sage-manylinux_2_28_aarch64/lib -L/host/sage-manylinux_2_28_aarch64/lib -Wl,-rpath,/host/sage-manylinux_2_28_aarch64/lib -Wl,-rpath-link,/host/sage-manylinux_2_28_aarch64/lib -L/host/sage-manylinux_2_28_aarch64/lib -Wl,-rpath,/host/sage-manylinux_2_28_aarch64/lib conftest.c >&5
102
+ configure:2897: $? = 0
103
+ configure:2921: result:
104
+ configure:2945: checking whether we are cross compiling
105
+ configure:2953: gcc -o conftest -g -O2 -std=gnu17 -Wno-implicit-function-declaration -Wl,-rpath-link,/host/sage-manylinux_2_28_aarch64/lib -L/host/sage-manylinux_2_28_aarch64/lib -Wl,-rpath,/host/sage-manylinux_2_28_aarch64/lib -Wl,-rpath-link,/host/sage-manylinux_2_28_aarch64/lib -L/host/sage-manylinux_2_28_aarch64/lib -Wl,-rpath,/host/sage-manylinux_2_28_aarch64/lib conftest.c >&5
106
+ configure:2957: $? = 0
107
+ configure:2964: ./conftest
108
+ configure:2968: $? = 0
109
+ configure:2983: result: no
110
+ configure:2989: checking for suffix of object files
111
+ configure:3012: gcc -c -g -O2 -std=gnu17 -Wno-implicit-function-declaration conftest.c >&5
112
+ configure:3016: $? = 0
113
+ configure:3040: result: o
114
+ configure:3044: checking whether the compiler supports GNU C
115
+ configure:3064: gcc -c -g -O2 -std=gnu17 -Wno-implicit-function-declaration conftest.c >&5
116
+ configure:3064: $? = 0
117
+ configure:3076: result: yes
118
+ configure:3087: checking whether gcc accepts -g
119
+ configure:3108: gcc -c -g conftest.c >&5
120
+ configure:3108: $? = 0
121
+ configure:3155: result: yes
122
+ configure:3175: checking for gcc option to enable C11 features
123
+ configure:3190: gcc -c -g -O2 -std=gnu17 -Wno-implicit-function-declaration conftest.c >&5
124
+ configure:3190: $? = 0
125
+ configure:3209: result: none needed
126
+ configure:3350: checking for GAP root directory
127
+ configure:3367: result: /host/sage-manylinux_2_28_aarch64/lib/gap
128
+ configure:3391: checking for GAP architecture
129
+ configure:3398: result: aarch64-unknown-linux-gnu-default64-kv9
130
+ configure:3487: checking for gawk
131
+ configure:3508: found /usr/bin/gawk
132
+ configure:3520: result: gawk
133
+ configure:3588: checking for curl-config
134
+ configure:3611: found /host/sage-manylinux_2_28_aarch64/bin/curl-config
135
+ configure:3624: result: /host/sage-manylinux_2_28_aarch64/bin/curl-config
136
+ configure:3635: checking for the version of libcurl
137
+ configure:3644: result: 8.15.0
138
+ configure:3707: checking whether libcurl is usable
139
+ configure:3742: gcc -o conftest -g -O2 -std=gnu17 -Wno-implicit-function-declaration -I/host/sage-manylinux_2_28_aarch64/include -Wl,-rpath-link,/host/sage-manylinux_2_28_aarch64/lib -L/host/sage-manylinux_2_28_aarch64/lib -Wl,-rpath,/host/sage-manylinux_2_28_aarch64/lib -Wl,-rpath-link,/host/sage-manylinux_2_28_aarch64/lib -L/host/sage-manylinux_2_28_aarch64/lib -Wl,-rpath,/host/sage-manylinux_2_28_aarch64/lib conftest.c -L/host/sage-manylinux_2_28_aarch64/lib -lcurl >&5
140
+ configure:3742: $? = 0
141
+ configure:3759: result: yes
142
+ configure:3772: checking for curl_free
143
+ configure:3772: gcc -o conftest -g -O2 -std=gnu17 -Wno-implicit-function-declaration -I/host/sage-manylinux_2_28_aarch64/include -Wl,-rpath-link,/host/sage-manylinux_2_28_aarch64/lib -L/host/sage-manylinux_2_28_aarch64/lib -Wl,-rpath,/host/sage-manylinux_2_28_aarch64/lib -Wl,-rpath-link,/host/sage-manylinux_2_28_aarch64/lib -L/host/sage-manylinux_2_28_aarch64/lib -Wl,-rpath,/host/sage-manylinux_2_28_aarch64/lib conftest.c -L/host/sage-manylinux_2_28_aarch64/lib -lcurl >&5
144
+ configure:3772: $? = 0
145
+ configure:3772: result: yes
146
+ configure:3977: creating ./config.status
147
+
148
+ ## ---------------------- ##
149
+ ## Running config.status. ##
150
+ ## ---------------------- ##
151
+
152
+ This file was extended by curlInterface config.status GAP package, which was
153
+ generated by GNU Autoconf 2.72. Invocation command line was
154
+
155
+ CONFIG_FILES =
156
+ CONFIG_HEADERS =
157
+ CONFIG_LINKS =
158
+ CONFIG_COMMANDS =
159
+ $ ./config.status
160
+
161
+ on c833daeb558c
162
+
163
+ config.status:828: creating Makefile
164
+ config.status:828: creating gen/pkgconfig.h
165
+
166
+ ## ---------------- ##
167
+ ## Cache variables. ##
168
+ ## ---------------- ##
169
+
170
+ ac_cv_c_compiler_gnu=yes
171
+ ac_cv_env_CC_set=set
172
+ ac_cv_env_CC_value=gcc
173
+ ac_cv_env_CFLAGS_set=set
174
+ ac_cv_env_CFLAGS_value='-g -O2 -std=gnu17 -Wno-implicit-function-declaration'
175
+ ac_cv_env_CPPFLAGS_set=
176
+ ac_cv_env_CPPFLAGS_value=
177
+ ac_cv_env_LDFLAGS_set=set
178
+ ac_cv_env_LDFLAGS_value='-Wl,-rpath-link,/host/sage-manylinux_2_28_aarch64/lib -L/host/sage-manylinux_2_28_aarch64/lib -Wl,-rpath,/host/sage-manylinux_2_28_aarch64/lib -Wl,-rpath-link,/host/sage-manylinux_2_28_aarch64/lib -L/host/sage-manylinux_2_28_aarch64/lib -Wl,-rpath,/host/sage-manylinux_2_28_aarch64/lib '
179
+ ac_cv_env_LIBS_set=
180
+ ac_cv_env_LIBS_value=
181
+ ac_cv_env_build_alias_set=
182
+ ac_cv_env_build_alias_value=
183
+ ac_cv_env_host_alias_set=
184
+ ac_cv_env_host_alias_value=
185
+ ac_cv_env_target_alias_set=
186
+ ac_cv_env_target_alias_value=
187
+ ac_cv_func_curl_free=yes
188
+ ac_cv_objext=o
189
+ ac_cv_path__libcurl_config=/host/sage-manylinux_2_28_aarch64/bin/curl-config
190
+ ac_cv_prog_AWK=gawk
191
+ ac_cv_prog_ac_ct_CC=gcc
192
+ ac_cv_prog_cc_c11=
193
+ ac_cv_prog_cc_g=yes
194
+ ac_cv_prog_cc_stdc=
195
+ libcurl_cv_lib_curl_usable=yes
196
+ libcurl_cv_lib_curl_version=8.15.0
197
+
198
+ ## ----------------- ##
199
+ ## Output variables. ##
200
+ ## ----------------- ##
201
+
202
+ AWK='gawk'
203
+ CC='gcc'
204
+ CFLAGS='-g -O2 -std=gnu17 -Wno-implicit-function-declaration'
205
+ CPPFLAGS=''
206
+ DEFS='-DHAVE_CONFIG_H'
207
+ ECHO_C=''
208
+ ECHO_N='-n'
209
+ ECHO_T=''
210
+ EXEEXT=''
211
+ GAPARCH='aarch64-unknown-linux-gnu-default64-kv9'
212
+ GAPROOT='/host/sage-manylinux_2_28_aarch64/lib/gap'
213
+ GAP_CFLAGS=' -pthread -g -O2'
214
+ GAP_CPPFLAGS='-I/host/sage-manylinux_2_28_aarch64/include/gap -I/host/sage-manylinux_2_28_aarch64/include -DUSE_GASMAN=1 -I/src'
215
+ GAP_LDFLAGS=''
216
+ LDFLAGS='-Wl,-rpath-link,/host/sage-manylinux_2_28_aarch64/lib -L/host/sage-manylinux_2_28_aarch64/lib -Wl,-rpath,/host/sage-manylinux_2_28_aarch64/lib -Wl,-rpath-link,/host/sage-manylinux_2_28_aarch64/lib -L/host/sage-manylinux_2_28_aarch64/lib -Wl,-rpath,/host/sage-manylinux_2_28_aarch64/lib '
217
+ LIBCURL='-L/host/sage-manylinux_2_28_aarch64/lib -lcurl'
218
+ LIBCURL_CPPFLAGS=' -I/host/sage-manylinux_2_28_aarch64/include'
219
+ LIBOBJS=''
220
+ LIBS=''
221
+ LTLIBOBJS=''
222
+ OBJEXT='o'
223
+ PACKAGE_BUGREPORT=''
224
+ PACKAGE_NAME='curlInterface'
225
+ PACKAGE_STRING='curlInterface GAP package'
226
+ PACKAGE_TARNAME='curlinterface'
227
+ PACKAGE_URL=''
228
+ PACKAGE_VERSION='GAP package'
229
+ PATH_SEPARATOR=':'
230
+ SHELL='/bin/sh'
231
+ _libcurl_config=''
232
+ ac_ct_CC='gcc'
233
+ bindir='${exec_prefix}/bin'
234
+ build_alias=''
235
+ datadir='${datarootdir}'
236
+ datarootdir='${prefix}/share'
237
+ docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
238
+ dvidir='${docdir}'
239
+ exec_prefix='${prefix}'
240
+ host_alias=''
241
+ htmldir='${docdir}'
242
+ includedir='${prefix}/include'
243
+ infodir='${datarootdir}/info'
244
+ libdir='${exec_prefix}/lib'
245
+ libexecdir='${exec_prefix}/libexec'
246
+ localedir='${datarootdir}/locale'
247
+ localstatedir='${prefix}/var'
248
+ mandir='${datarootdir}/man'
249
+ oldincludedir='/usr/include'
250
+ pdfdir='${docdir}'
251
+ prefix='/usr/local'
252
+ program_transform_name='s,x,x,'
253
+ psdir='${docdir}'
254
+ runstatedir='${localstatedir}/run'
255
+ sbindir='${exec_prefix}/sbin'
256
+ sharedstatedir='${prefix}/com'
257
+ sysconfdir='${prefix}/etc'
258
+ target_alias=''
259
+
260
+ ## ----------- ##
261
+ ## confdefs.h. ##
262
+ ## ----------- ##
263
+
264
+ /* confdefs.h */
265
+ #define PACKAGE_NAME "curlInterface"
266
+ #define PACKAGE_TARNAME "curlinterface"
267
+ #define PACKAGE_VERSION "GAP package"
268
+ #define PACKAGE_STRING "curlInterface GAP package"
269
+ #define PACKAGE_BUGREPORT ""
270
+ #define PACKAGE_URL ""
271
+ #define HAVE_LIBCURL 1
272
+ #define LIBCURL_FEATURE_ALT_SVC 1
273
+ #define LIBCURL_FEATURE_ASYNCHDNS 1
274
+ #define LIBCURL_FEATURE_HSTS 1
275
+ #define LIBCURL_FEATURE_HTTPS_PROXY 1
276
+ #define LIBCURL_FEATURE_IPV6 1
277
+ #define LIBCURL_FEATURE_LARGEFILE 1
278
+ #define LIBCURL_FEATURE_LIBZ 1
279
+ #define LIBCURL_FEATURE_NTLM 1
280
+ #define LIBCURL_FEATURE_SSL 1
281
+ #define LIBCURL_FEATURE_THREADSAFE 1
282
+ #define LIBCURL_FEATURE_TLS_SRP 1
283
+ #define LIBCURL_FEATURE_UNIXSOCKETS 1
284
+ #define LIBCURL_PROTOCOL_DICT 1
285
+ #define LIBCURL_PROTOCOL_FILE 1
286
+ #define LIBCURL_PROTOCOL_FTP 1
287
+ #define LIBCURL_PROTOCOL_FTPS 1
288
+ #define LIBCURL_PROTOCOL_GOPHER 1
289
+ #define LIBCURL_PROTOCOL_GOPHERS 1
290
+ #define LIBCURL_PROTOCOL_HTTP 1
291
+ #define LIBCURL_PROTOCOL_HTTPS 1
292
+ #define LIBCURL_PROTOCOL_IMAP 1
293
+ #define LIBCURL_PROTOCOL_IMAPS 1
294
+ #define LIBCURL_PROTOCOL_IPFS 1
295
+ #define LIBCURL_PROTOCOL_IPNS 1
296
+ #define LIBCURL_PROTOCOL_MQTT 1
297
+ #define LIBCURL_PROTOCOL_POP3 1
298
+ #define LIBCURL_PROTOCOL_POP3S 1
299
+ #define LIBCURL_PROTOCOL_SMB 1
300
+ #define LIBCURL_PROTOCOL_SMBS 1
301
+ #define LIBCURL_PROTOCOL_SMTP 1
302
+ #define LIBCURL_PROTOCOL_SMTPS 1
303
+ #define LIBCURL_PROTOCOL_TELNET 1
304
+ #define LIBCURL_PROTOCOL_TFTP 1
305
+ #define LIBCURL_PROTOCOL_WS 1
306
+ #define LIBCURL_PROTOCOL_WSS 1
307
+
308
+ configure: exit 0
309
+
310
+ ## ---------------------- ##
311
+ ## Running config.status. ##
312
+ ## ---------------------- ##
313
+
314
+ This file was extended by curlInterface config.status GAP package, which was
315
+ generated by GNU Autoconf 2.72. Invocation command line was
316
+
317
+ CONFIG_FILES =
318
+ CONFIG_HEADERS =
319
+ CONFIG_LINKS =
320
+ CONFIG_COMMANDS =
321
+ $ ./config.status gen/pkgconfig.h
322
+
323
+ on c833daeb558c
324
+
325
+ config.status:828: creating gen/pkgconfig.h