Subversion Repositories Tewi

Rev

Rev 79 | Rev 128 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 79 Rev 80
Line 1... Line 1...
1
#!/bin/sh
1
#!/bin/sh
2
# $Id: installer.sh 79 2024-09-19 11:11:55Z nishi $
2
# $Id: installer.sh 80 2024-09-19 11:13:18Z nishi $
3
 
3
 
4
fail() {
4
fail() {
5
	rm -f tewi-service.exe
5
	rm -f tewi-service.exe
6
	rm -f tewi.exe
6
	rm -f tewi.exe
7
	mv config.h.bak config.h
7
	mv config.h.bak config.h
8
	exit 1
8
	exit 1
9
}
9
}
10
 
10
 
-
 
11
rm -f install-nossl.exe install-ssl.exe
-
 
12
 
11
VERSION=`make get-version`
13
VERSION=`make get-version`
12
 
14
 
13
sed "s/undef NO_SSL/define NO_SSL/g" config.h.tmpl > config.h
15
sed "s/undef NO_SSL/define NO_SSL/g" config.h.tmpl > config.h
14
 
16
 
15
make clean || fail
17
make clean || fail