From 025a3b5ff945e3e5c20320d52dd602b9b79ec6dd Mon Sep 17 00:00:00 2001 From: Martin Pulec Date: Tue, 9 Jan 2024 16:33:55 +0100 Subject: [PATCH] configure: default prefix /usr/local for lib555 --with-live555 must have been set always, anyways (unless installed in /), so we may add a default value to /usr/local, which is the usual place. --- configure.ac | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 862deea21..ab51616f2 100644 --- a/configure.ac +++ b/configure.ac @@ -1387,8 +1387,9 @@ AC_ARG_ENABLE(rtsp_server, AC_ARG_WITH(live555, [ --with-live555=DIR specify location of live555], - [livemedia_prefix=$withval - ]) + [livemedia_prefix=$withval], + [livemedia_prefix=/usr/local], + ) if test $rtsp_server_req != no; then AC_LANG_PUSH(C++)