passagemath-gap-pkg-curlinterface 10.6.23__cp310-cp310-musllinux_1_2_aarch64.whl → 10.6.25__cp310-cp310-musllinux_1_2_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.

@@ -1,39 +0,0 @@
1
- #
2
- # curlInterface: Simple Web Access
3
- #
4
- # This file is part of the build system of a GAP kernel extension.
5
- # Requires GNU autoconf, GNU automake and GNU libtool.
6
- #
7
-
8
- dnl ##
9
- dnl ## Setup autoconf
10
- dnl ##
11
- AC_PREREQ([2.68])
12
- AC_INIT([curlInterface], [GAP package])
13
- AC_CONFIG_SRCDIR([src/curl.c])
14
- AC_CONFIG_HEADERS([gen/pkgconfig.h:src/pkgconfig.h.in])
15
- AC_CONFIG_MACRO_DIR([m4])
16
- m4_include([m4/find_gap.m4])
17
- m4_include([m4/libcurl.m4])
18
-
19
- dnl ##
20
- dnl ## Set the language
21
- dnl ##
22
- AC_PROG_CC
23
- AC_LANG([C])
24
-
25
- dnl ##
26
- dnl ## Locate the GAP root dir
27
- dnl ##
28
- FIND_GAP
29
-
30
- dnl ##
31
- dnl ## Check for libcurl
32
- dnl ##
33
- LIBCURL_CHECK_CONFIG([yes],[],[],[AC_MSG_ERROR([libcurl development files required])])
34
-
35
- dnl ##
36
- dnl ## Output everything
37
- dnl ##
38
- AC_CONFIG_FILES([Makefile])
39
- AC_OUTPUT