% tar -zxvf wget-1.8.2.tar.gz
% cd wget-1.8.2
% ./configure --with-ssl --disable-nls
% vi src/config.h
260 #ifdef solaris
261 # define NAMESPACE_TWEAKS
262 #endif
263
264 #ifdef __linux__
265 # define NAMESPACE_TWEAKS
266 #endif
267 #undef NAMESPACE_TWEAKS (<- 追加)
268 #ifdef NAMESPACE_TWEAKS
269
270 /* Request the "Unix 98 compilation environment". */
271 #define _XOPEN_SOURCE 500
% make
% make check
# make install