summaryrefslogtreecommitdiff
path: root/configure-gnurl
blob: 1c760f8593f50c226ba94e8fd0c92b97237e5108 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/sh
# intermediate solution until I have written a --enable-gnurl
# or something similar to be passed to 'configure'.

if [ ! -f './configure' ]; then
  echo 'Please run ./buildconf first'
  exit 1
fi

./configure --enable-ipv6 --with-gnutls --without-libssh2 \
            --without-libmetalink --without-winidn \
            --without-librtmp --without-nghttp2 \
            --without-nss --without-cyassl \
            --without-polarssl --without-ssl \
            --without-winssl --without-darwinssl \
            --disable-sspi --disable-ntlm-wb \
            --disable-ldap --disable-rtsp --disable-dict \
            --disable-telnet --disable-tftp --disable-pop3 \
            --disable-imap --disable-smtp --disable-gopher \
            --disable-file --disable-ftp --disable-smb \
            --without-libpsl \
	    --disable-valgrind \
            "$@"