~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: Bazaar Package Importer
  • Author(s): Luigi Gangitano
  • Date: 2010-05-04 11:15:49 UTC
  • mfrom: (1.3.1 upstream)
  • mto: (20.3.1 squeeze) (21.2.1 sid)
  • mto: This revision was merged to the branch mainline in revision 21.
  • Revision ID: james.westby@ubuntu.com-20100504111549-1apjh2g5sndki4te
Tags: upstream-3.1.3
ImportĀ upstreamĀ versionĀ 3.1.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
 
9
        if [ -f /usr/lib/libsasl.so -o -f /usr/lib/libsasl2.so ]; then
 
10
                exit 0
 
11
        fi
 
12
fi
 
13
exit 1