Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Xiph.Org
Icecast-Server
Commits
60bce31e
Commit
60bce31e
authored
May 28, 2003
by
brendan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Check whether CURLOPT_NOSIGNAL is available, or disable YP (hopefully).
svn path=/trunk/icecast/; revision=4825
parent
871f3cba
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
4 deletions
+8
-4
configure.in
configure.in
+8
-4
No files found.
configure.in
View file @
60bce31e
...
...
@@ -164,10 +164,14 @@ fi
AM_PATH_OGG(, AC_MSG_ERROR(must have Ogg installed!(Perhaps you need --with-ogg-prefix=/usr/local)))
AM_PATH_VORBIS(, AC_MSG_ERROR(must have Vorbis installed!(Perhaps you need --with-vorbis-prefix=/usr/local)))
AM_PATH_CURL(
AM_PATH_CURL([
AC_CHECK_DECL([CURLOPT_NOSIGNAL],
[ICECAST_OBJECTS="$ICECAST_OBJECTS geturl.o yp.o"],
[AC_MSG_NOTICE([libcurl not found, YP disabled])])
ACX_PTHREAD(, AC_MSG_ERROR(POSIX threads missing))
[AC_MSG_NOTICE([Your libcurl is too old (7.10 or above required), YP disabled])],
[#include <curl/curl.h>])], [
AC_MSG_NOTICE([libcurl not found, YP disabled])
])
ACX_PTHREAD(, AC_MSG_ERROR([POSIX threads missing]))
dnl Make substitutions
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment