Skip to content

Commit 56212a7

Browse files
committed
Removed unrecognized options when configuring libcurl
``` configure: WARNING: unrecognized options: --with-pthread, --without-axtls, --without-cyassl, --without-egd-socket, --without-libidn, --without-nss, --without-polarssl, --without-winssl ``` Signed-off-by: Lars Erik Wik <[email protected]>
1 parent 27c3655 commit 56212a7

4 files changed

Lines changed: 1 addition & 39 deletions

File tree

deps-packaging/libcurl-hub/debian/rules

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,6 @@
22

33
PREFIX=$(BUILDPREFIX)
44

5-
ifeq ($(DEB_BUILD_GNU_TYPE),$(DEB_HOST_GNU_TYPE))
6-
PTHREAD=
7-
else
8-
PTHREAD=--with-pthread=$(PREFIX)
9-
endif
10-
115
clean:
126
dh_testdir
137
dh_testroot
@@ -20,27 +14,19 @@ build-stamp:
2014

2115
./configure --with-sysroot=$(PREFIX) \
2216
--host=$(DEB_HOST_GNU_TYPE) \
23-
$(PTHREAD) \
2417
--with-ssl=$(PREFIX) \
2518
--with-zlib=$(PREFIX) \
2619
--prefix=$(PREFIX) \
2720
--disable-ldap \
2821
--disable-ldaps \
2922
--disable-ntlm \
30-
--without-axtls \
31-
--without-cyassl \
32-
--without-egd-socket \
3323
--without-gnutls \
3424
--without-gssapi \
35-
--without-libidn \
3625
--without-libpsl \
3726
--without-librtmp \
3827
--without-libssh2 \
3928
--without-nghttp2 \
40-
--without-nss \
41-
--without-polarssl \
4229
--without-winidn \
43-
--without-winssl \
4430
CPPFLAGS="-I$(PREFIX)/include" \
4531

4632
make

deps-packaging/libcurl/debian/rules

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,8 @@
33
PREFIX=$(BUILDPREFIX)
44

55
ifeq ($(DEB_BUILD_GNU_TYPE),$(DEB_HOST_GNU_TYPE))
6-
PTHREAD=
76
CC_OVERRIDE=
87
else
9-
PTHREAD=--with-pthread=$(PREFIX)
108
CC_OVERRIDE="CC=$(DEB_HOST_GNU_TYPE)-gcc -static-libgcc"
119
endif
1210

@@ -28,33 +26,25 @@ build-stamp:
2826

2927
./configure --with-sysroot=$(PREFIX) \
3028
--host=$(DEB_HOST_GNU_TYPE) \
31-
$(PTHREAD) \
3229
--with-ssl=$(SSL_PREFIX) \
3330
--with-zlib=$(PREFIX) \
3431
--prefix=$(PREFIX) \
3532
--disable-ldap \
3633
--disable-ldaps \
3734
--disable-ntlm \
38-
--without-axtls \
39-
--without-cyassl \
40-
--without-egd-socket \
4135
--without-gnutls \
4236
--without-gssapi \
43-
--without-libidn \
4437
--without-libpsl \
4538
--without-librtmp \
4639
--without-libssh2 \
4740
--without-nghttp2 \
48-
--without-nss \
49-
--without-polarssl \
5041
--without-winidn \
51-
--without-winssl \
5242
LDFLAGS="$(LDFLAGS)" \
5343
$(CC_OVERRIDE) \
5444
CPPFLAGS="-I$(PREFIX)/include" \
5545

5646
make
57-
47+
5848
touch build-stamp
5949

6050
install: build

deps-packaging/libcurl/hpux/build

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,20 +18,13 @@ TTD=${BUILD_ROOT}/cfbuild-libcurl-devel${PREFIX}
1818
--with-zlib=$PREFIX \
1919
--disable-ldap \
2020
--disable-ldaps \
21-
--without-axtls \
22-
--without-cyassl \
23-
--without-egd-socket \
2421
--without-gnutls \
2522
--without-gssapi \
26-
--without-libidn \
2723
--without-libpsl \
2824
--without-librtmp \
2925
--without-libssh2 \
3026
--without-nghttp2 \
31-
--without-nss \
32-
--without-polarssl \
3327
--without-winidn \
34-
--without-winssl \
3528
CPPFLAGS="-DAF_LOCAL=AF_UNIX -D_LARGEFILE_SOURCE"
3629
gmake
3730

deps-packaging/libcurl/solaris/build

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,20 +15,13 @@ TTD=${BUILD_ROOT}/cfbuild-libcurl-devel${PREFIX}
1515
--with-zlib=$PREFIX \
1616
--disable-ldap \
1717
--disable-ldaps \
18-
--without-axtls \
19-
--without-cyassl \
20-
--without-egd-socket \
2118
--without-gnutls \
2219
--without-gssapi \
23-
--without-libidn \
2420
--without-libpsl \
2521
--without-librtmp \
2622
--without-libssh2 \
2723
--without-nghttp2 \
28-
--without-nss \
29-
--without-polarssl \
3024
--without-winidn \
31-
--without-winssl \
3225
CPPFLAGS="-DAF_LOCAL=AF_UNIX"
3326
$MAKE
3427

0 commit comments

Comments
 (0)