diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | configure.ac | 12 |
2 files changed, 10 insertions, 7 deletions
@@ -1,3 +1,6 @@ | |||
1 | 20020923 | ||
2 | - (tim) [configure.ac] s/return/exit/ patch by dtucker@zip.com.au | ||
3 | |||
1 | 20020922 | 4 | 20020922 |
2 | - (djm) OpenBSD CVS Sync | 5 | - (djm) OpenBSD CVS Sync |
3 | - stevesk@cvs.openbsd.org 2002/09/19 14:53:14 | 6 | - stevesk@cvs.openbsd.org 2002/09/19 14:53:14 |
@@ -693,4 +696,4 @@ | |||
693 | save auth method before monitor_reset_key_state(); bugzilla bug #284; | 696 | save auth method before monitor_reset_key_state(); bugzilla bug #284; |
694 | ok provos@ | 697 | ok provos@ |
695 | 698 | ||
696 | $Id: ChangeLog,v 1.2475 2002/09/21 15:26:51 djm Exp $ | 699 | $Id: ChangeLog,v 1.2476 2002/09/23 23:54:10 tim Exp $ |
diff --git a/configure.ac b/configure.ac index 84e6adec4..f88d993e6 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -1,4 +1,4 @@ | |||
1 | # $Id: configure.ac,v 1.87 2002/09/12 00:33:00 djm Exp $ | 1 | # $Id: configure.ac,v 1.88 2002/09/23 23:54:12 tim Exp $ |
2 | 2 | ||
3 | AC_INIT | 3 | AC_INIT |
4 | AC_CONFIG_SRCDIR([ssh.c]) | 4 | AC_CONFIG_SRCDIR([ssh.c]) |
@@ -497,7 +497,7 @@ AC_TRY_RUN( | |||
497 | [ | 497 | [ |
498 | #include <sys/types.h> | 498 | #include <sys/types.h> |
499 | #include <dirent.h> | 499 | #include <dirent.h> |
500 | int main(void){struct dirent d;return(sizeof(d.d_name)<=sizeof(char));} | 500 | int main(void){struct dirent d;exit(sizeof(d.d_name)<=sizeof(char));} |
501 | ], | 501 | ], |
502 | [AC_MSG_RESULT(yes)], | 502 | [AC_MSG_RESULT(yes)], |
503 | [ | 503 | [ |
@@ -528,7 +528,7 @@ AC_ARG_WITH(skey, | |||
528 | [ | 528 | [ |
529 | #include <stdio.h> | 529 | #include <stdio.h> |
530 | #include <skey.h> | 530 | #include <skey.h> |
531 | int main() { char *ff = skey_keyinfo(""); ff=""; return 0; } | 531 | int main() { char *ff = skey_keyinfo(""); ff=""; exit(0); } |
532 | ], | 532 | ], |
533 | [AC_MSG_RESULT(yes)], | 533 | [AC_MSG_RESULT(yes)], |
534 | [ | 534 | [ |
@@ -668,7 +668,7 @@ if test "x$ac_cv_func_snprintf" = "xyes" ; then | |||
668 | AC_TRY_RUN( | 668 | AC_TRY_RUN( |
669 | [ | 669 | [ |
670 | #include <stdio.h> | 670 | #include <stdio.h> |
671 | int main(void){char b[5];snprintf(b,5,"123456789");return(b[4]!='\0');} | 671 | int main(void){char b[5];snprintf(b,5,"123456789");exit(b[4]!='\0');} |
672 | ], | 672 | ], |
673 | [AC_MSG_RESULT(yes)], | 673 | [AC_MSG_RESULT(yes)], |
674 | [ | 674 | [ |
@@ -851,7 +851,7 @@ AC_TRY_RUN( | |||
851 | [ | 851 | [ |
852 | #include <string.h> | 852 | #include <string.h> |
853 | #include <openssl/opensslv.h> | 853 | #include <openssl/opensslv.h> |
854 | int main(void) { return(SSLeay() == OPENSSL_VERSION_NUMBER ? 0 : 1); } | 854 | int main(void) { exit(SSLeay() == OPENSSL_VERSION_NUMBER ? 0 : 1); } |
855 | ], | 855 | ], |
856 | [ | 856 | [ |
857 | AC_MSG_RESULT(yes) | 857 | AC_MSG_RESULT(yes) |
@@ -877,7 +877,7 @@ AC_TRY_RUN( | |||
877 | [ | 877 | [ |
878 | #include <string.h> | 878 | #include <string.h> |
879 | #include <openssl/rand.h> | 879 | #include <openssl/rand.h> |
880 | int main(void) { return(RAND_status() == 1 ? 0 : 1); } | 880 | int main(void) { exit(RAND_status() == 1 ? 0 : 1); } |
881 | ], | 881 | ], |
882 | [ | 882 | [ |
883 | OPENSSL_SEEDS_ITSELF=yes | 883 | OPENSSL_SEEDS_ITSELF=yes |