You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-misc/icecast/files/icecast-2.3.3-fix-xiph_open...

14 lines
648 B

Index: icecast-2.3.3/m4/xiph_openssl.m4
===================================================================
--- icecast-2.3.3.orig/m4/xiph_openssl.m4
+++ icecast-2.3.3/m4/xiph_openssl.m4
@@ -10,7 +10,7 @@ AC_ARG_WITH(openssl,
AC_HELP_STRING([--with-openssl=PFX],[Prefix where openssl is installed (optional)]),
openssl_prefix="$withval", openssl_prefix="")
-if test "x$openssl_prefix" != "x" -a "x$openssl_prefix" != "xyes"; then
+if test "x$openssl_prefix" != "x" -a "x$openssl_prefix" != "xyes" -a "x$openssl_prefix" != "xno"; then
OPENSSL_LIBS="-L$openssl_prefix/lib -lssl"
OPENSSL_CFLAGS="-I$openssl_prefix/include"
else