diff options
| author | Akinori Ito <aito@eie.yz.yamagata-u.ac.jp> | 2001-11-15 00:32:13 +0000 | 
|---|---|---|
| committer | Akinori Ito <aito@eie.yz.yamagata-u.ac.jp> | 2001-11-15 00:32:13 +0000 | 
| commit | 85da7ee692072c643939e9f4b24fbd1e74e64e70 (patch) | |
| tree | 9fc63298cf968fa560a9e3cf9b6c84516032fca8 /configure | |
| parent | Updates from 0.2.1 into 0.2.1-inu-1.5 (diff) | |
| download | w3m-85da7ee692072c643939e9f4b24fbd1e74e64e70.tar.gz w3m-85da7ee692072c643939e9f4b24fbd1e74e64e70.zip | |
Update to w3m-0.2.1-inu-1.6.
Diffstat (limited to '')
| -rwxr-xr-x | configure | 28 | 
1 files changed, 27 insertions, 1 deletions
| @@ -1316,6 +1316,23 @@ else    srandom_flg="#undef HAVE_SRANDOM"  fi +####### getpassphrase +cat > _zmachdep.c << EOF +#include <unistd.h> +main() +{ +  getpassphrase(""); +} +EOF +if $cc $cflags -o _zmachdep _zmachdep.c > /dev/null 2>&1 +then +  echo "You have getpassphrase()." +  getpassphrase_flg="#define HAVE_GETPASSPHRASE" +else +  echo "You don't have getpassphrase()." +  getpassphrase_flg="#undef HAVE_GETPASSPHRASE" +fi +  ####### fclose  cat > _zmachdep.c << EOF  #include <stdio.h> @@ -1750,6 +1767,11 @@ $def_ansi_color   */  #undef NEXTPAGE_TOPLINE +/* +   Use alarm function. + */ +#undef USE_ALARM +  /**********************************************************/  #ifdef makefile_parameter @@ -1840,7 +1862,7 @@ $setenv_flg  $putenv_flg  $srand48_flg  $srandom_flg -$readlink_flg +$getpassphrase_flg  $fclose_dcl  $pclose_dcl  $setjmp_def @@ -1882,6 +1904,10 @@ $no_float_h  #define SUPPORT_DOS_DRIVE_PREFIX 1  #endif +#if defined( __CYGWIN__ ) +#define SUPPORT_NETBIOS_SHARE 1 +#endif +  #endif /* makefile_parameter */  #endif /* _CONFIGURED_ */ | 
