aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2001-05-22 06:43:24 +0000
committerGuy Harris <guy@alum.mit.edu>2001-05-22 06:43:24 +0000
commit1665ab7551392ea961c56509b654fe0c6c9846ab (patch)
treed6d17218a2e8961e095a6948131530b587ece94e
parent0e00be586977dec9409a7b69439a13f4718947ed (diff)
According to the autoconf documentation, you're not supposed to use
AC_MSG_RESULT without AC_MSG_CHECKING. svn path=/trunk/; revision=3434
-rw-r--r--acinclude.m47
1 files changed, 2 insertions, 5 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index b106ab8bc6..ceac3cd672 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -2,7 +2,7 @@ dnl Macros that test for specific features.
dnl This file is part of the Autoconf packaging for Ethereal.
dnl Copyright (C) 1998-2000 by Gerald Combs.
dnl
-dnl $Id: acinclude.m4,v 1.24 2001/05/22 06:33:04 guy Exp $
+dnl $Id: acinclude.m4,v 1.25 2001/05/22 06:43:24 guy Exp $
dnl
dnl This program is free software; you can redistribute it and/or modify
dnl it under the terms of the GNU General Public License as published by
@@ -368,10 +368,7 @@ AC_DEFUN(AC_ETHEREAL_SSL_CHECK,
[
SSL_LIBS=-lcrypto
AC_ETHEREAL_ADD_DASH_L(LDFLAGS, ${ssl_user_dir}/lib)
- AC_MSG_RESULT(found)
- ],[
- AC_MSG_RESULT(not found)
- ],
+ ],,
-L${ssl_user_dir}/lib -lcrypto
)