~clint-fewbar/ubuntu/precise/squid3/ignore-sighup-early

« back to all changes in this revision

Viewing changes to helpers/basic_auth/SASL/config.test

  • Committer: Package Import Robot
  • Author(s): Luigi Gangitano
  • Date: 2011-09-02 13:33:41 UTC
  • mto: (21.2.8 sid)
  • mto: This revision was merged to the branch mainline in revision 30.
  • Revision ID: package-import@ubuntu.com-20110902133341-56p01dh4mh6e308v
Tags: upstream-3.1.15
ImportĀ upstreamĀ versionĀ 3.1.15

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/bin/sh
2
 
if [ -f /usr/include/sasl.h -o -f /usr/include/sasl/sasl.h ]; then
3
 
        if [ -f /usr/lib/libsasl.a -o -f /usr/lib/libsasl2.a ]; then
4
 
                exit 0
5
 
        fi
6
 
        if [ -f /usr/lib/libsasl.la -o -f /usr/lib/libsasl2.la ]; then
7
 
                exit 0
8
 
        fi
 
2
if [ -f /usr/include/sasl.h ]; then
 
3
        exit 0
 
4
fi
 
5
if [ -f /usr/include/sasl/sasl.h ]; then
 
6
        exit 0
9
7
fi
10
8
exit 1