1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-20 00:15:31 +00:00
elinks/contrib/wipe-out-ssl

11 lines
480 B
Plaintext
Raw Normal View History

#!/bin/sh
for i in src/*/*/*.c src/*/*/*.h src/*/*.c src/*/*.h src/*.c src/*.h configure.in configure; do
awk -f wipe-out-ssl.awk <$i >wipe-out-ssl.tmp
mv wipe-out-ssl.tmp $i
done
sed 's/^\(AM_INIT_AUTOMAKE(.*, .*\))/\1-no-ssl)/' <configure.in | sed 's/-no-ssl-no-ssl/-no-ssl/g' >wipe-out-ssl.tmp
mv wipe-out-ssl.tmp configure.in
sed 's/^\(VERSION=.*\)/\1-no-ssl/' <configure | sed 's/-no-ssl-no-ssl/-no-ssl/g' >wipe-out-ssl.tmp
mv wipe-out-ssl.tmp configure
chmod +x configure