diff options
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_ */ | 
