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