aboutsummaryrefslogtreecommitdiffstats
path: root/acinclude.m4
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2001-04-19 01:08:16 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2001-04-19 01:08:16 +0000
commit0ae502c028917da6785ce1b5ce2272f88f6c88a7 (patch)
treed11223c62c418f0070e262f28be11db6e0695a77 /acinclude.m4
parent4d20cd7e43bbec29abbfe50b3811261b653349bb (diff)
Fix up the messages printed for the SSL checks - AC_MSG_CHECKING without
AC_MSG_RESULT is an error (it produces a message without a newline at the end, as AC_MSG_RESULT is supposed to finish the message with the result of the test), and, according to the autoconf documentation, you're not supposed to use AC_MSG_RESULT without AC_MSG_CHECKING, either. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@3332 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'acinclude.m4')
-rw-r--r--acinclude.m43
1 files changed, 1 insertions, 2 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index cf7bbadcb7..7492e886dd 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.21 2001/01/18 09:54:09 guy Exp $
+dnl $Id: acinclude.m4,v 1.22 2001/04/19 01:08:16 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
@@ -385,7 +385,6 @@ AC_DEFUN(AC_ETHEREAL_SSL_CHECK,
if test x$ssldir != x
then
SSL_LIBS=-lcrypto
- AC_MSG_RESULT(added $d to paths)
CFLAGS="$CFLAGS -I${ssldir}/include"
CPPFLAGS="$CPPFLAGS -I${ssldir}/include"
AC_ETHEREAL_ADD_DASH_L(LDFLAGS, ${ssldir}/lib)