| 16 |
debug=0 |
debug=0 |
| 17 |
strip=1 |
strip=1 |
| 18 |
ftp=1 |
ftp=1 |
| 19 |
|
metalink=0 |
| 20 |
search=0 |
search=0 |
| 21 |
ssl=0 |
ssl=0 |
| 22 |
|
|
| 42 |
--debug=0/1 Disable/enable debugging $debug |
--debug=0/1 Disable/enable debugging $debug |
| 43 |
--strip=0/1 Disable/enable binary stripping $strip |
--strip=0/1 Disable/enable binary stripping $strip |
| 44 |
--ftp=0/1 Disable/enable FTP support $ftp |
--ftp=0/1 Disable/enable FTP support $ftp |
| 45 |
|
--metalink=0/1 Disable/enable Metalink support $metalink |
| 46 |
--search=0/1 Disable/enable filehosting.com support $search |
--search=0/1 Disable/enable filehosting.com support $search |
| 47 |
--ssl=0/1 Disable/enable HTTPS/FTPS support $ssl |
--ssl=0/1 Disable/enable HTTPS/FTPS support $ssl |
| 48 |
EOF |
EOF |
| 146 |
echo '#define FTP' >> config.h; |
echo '#define FTP' >> config.h; |
| 147 |
fi |
fi |
| 148 |
|
|
| 149 |
|
if [ "$metalink" = "1" ]; then |
| 150 |
|
echo '#define METALINK' >> config.h; |
| 151 |
|
fi |
| 152 |
|
|
| 153 |
if [ "$ssl" = "1" ]; then |
if [ "$ssl" = "1" ]; then |
| 154 |
echo '#define SSL' >> config.h; |
echo '#define SSL' >> config.h; |
| 155 |
fi |
fi |
| 253 |
else |
else |
| 254 |
echo ' FTP support disabled.'; |
echo ' FTP support disabled.'; |
| 255 |
fi |
fi |
| 256 |
|
if [ "$metalink" = "1" ]; then |
| 257 |
|
echo ' Metalink support enabled.'; |
| 258 |
|
else |
| 259 |
|
echo ' Metalink support disabled.'; |
| 260 |
|
fi |
| 261 |
if [ "$search" = "1" ]; then |
if [ "$search" = "1" ]; then |
| 262 |
echo ' filesearching.com support enabled.'; |
echo ' filesearching.com support enabled.'; |
| 263 |
else |
else |