summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorTerry Wilson <twilson@digium.com>2011-08-04 20:53:16 +0000
committerTerry Wilson <twilson@digium.com>2011-08-04 20:53:16 +0000
commit72eba1af2054632b54466a2e3ba91dc29f0813f8 (patch)
tree36e8914d2d09a5e68ea4953c0ece0a4989caca0e /configure.ac
parent276c7954861206732165ee6e95b411d962f597e0 (diff)
Merged revisions 330844 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/10 ................ r330844 | twilson | 2011-08-04 15:51:23 -0500 (Thu, 04 Aug 2011) | 11 lines Merged revisions 330843 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.8 ........ r330843 | twilson | 2011-08-04 15:29:19 -0500 (Thu, 04 Aug 2011) | 4 lines Make libsrtp instructions more explicit when linking fails (closes issue ASTERISK-18139) ........ ................ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@330845 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac18
1 files changed, 10 insertions, 8 deletions
diff --git a/configure.ac b/configure.ac
index cc3d73cb1..2c78a176c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2009,14 +2009,16 @@ then
[ AC_MSG_RESULT(yes) ],
[
AC_MSG_RESULT(no)
- AC_MSG_NOTICE(***)
- AC_MSG_NOTICE(*** libsrtp could not be linked as a shared object)
- AC_MSG_NOTICE(*** try compiling libsrtp manually and configuring with)
- AC_MSG_NOTICE(*** ./configure CFLAGS=-fPIC --prefix=/usr)
- AC_MSG_NOTICE(*** replacing /usr with the prefix of your choice)
- AC_MSG_NOTICE(***)
- AC_MSG_NOTICE(*** If you do not need SRTP support re-run configure)
- AC_MSG_NOTICE(*** with the --without-srtp option.)
+ AC_MSG_WARN(***)
+ AC_MSG_WARN(*** libsrtp could not be linked as a shared object.)
+ AC_MSG_WARN(*** Try compiling libsrtp manually. Configure libsrtp)
+ AC_MSG_WARN(*** with ./configure CFLAGS=-fPIC --prefix=/usr)
+ AC_MSG_WARN(*** replacing /usr with the prefix of your choice.)
+ AC_MSG_WARN(*** After re-installing libsrtp, re-run the Asterisk)
+ AC_MSG_WARN(*** configure script.)
+ AC_MSG_WARN(***)
+ AC_MSG_WARN(*** If you do not need SRTP support re-run configure)
+ AC_MSG_WARN(*** with the --without-srtp option.)
exit 1
]
)