summaryrefslogtreecommitdiff
path: root/tests/fake-curl/curl-config-ssl-feature-only
blob: 3999f117488707c5b3f2fc1654eef95d51cbc6b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh

# A curl-config that indicates SSL is supported but does not say
# which SSL library is being used

output=

while test -n "$1"; do
  case "$1" in
  --libs)
    echo '-lcurl'
    ;;
  --features)
    echo 'SSL'
    ;;
  esac
  shift
done