Mercurial > dnsbl
comparison install.bash @ 8:dbe18921f741
integration work on url scanner
author | carl |
---|---|
date | Thu, 22 Apr 2004 11:25:45 -0700 |
parents | 793ac9cc114d |
children | 443aa0e8c6fa |
comparison
equal
deleted
inserted
replaced
7:93ff6d1ef647 | 8:dbe18921f741 |
---|---|
9 | 9 |
10 | 10 |
11 ##################### | 11 ##################### |
12 # build the milter | 12 # build the milter |
13 g++ -c dnsbl.cpp | 13 g++ -c dnsbl.cpp |
14 if [ $? -ne 0 ]; then | |
15 echo "compiler errors" | |
16 exit | |
17 fi | |
14 g++ -o dnsbl dnsbl.o /usr/lib/libresolv.a -lmilter -pthread | 18 g++ -o dnsbl dnsbl.o /usr/lib/libresolv.a -lmilter -pthread |
15 if [ "$1" == "comp" ]; then | 19 if [ $? -ne 0 ]; then |
20 echo "linker errors" | |
16 exit | 21 exit |
17 fi | 22 fi |
18 | 23 |
19 | 24 |
20 ##################### | 25 ##################### |