Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Timothy B. Terriberry
Opusfile
Commits
8a52a14d
Commit
8a52a14d
authored
Oct 24, 2012
by
Ralph Giles
Browse files
Print a warning when disabling http support for dependencies.
This should make mingw32-configure --enable-http less confusing.
parent
35fda4d7
Changes
1
Hide whitespace changes
Inline
Side-by-side
configure.ac
View file @
8a52a14d
...
...
@@ -40,7 +40,12 @@ AC_ARG_ENABLE([http],
AS_HELP_STRING([--disable-http], [Disable HTTP support]),,
enable_http=yes)
AC_CHECK_HEADER([sys/socket.h],,[enable_http=no])
AS_IF([test "x$enable_http" != "xno"],
AC_CHECK_HEADER([sys/socket.h],,
AC_MSG_WARN([HTTP support requires a posix socket library.])
enable_http=no
)
)
AS_IF([test "x$enable_http" != "xno"], [
openssl="openssl"
...
...
Write
Preview
Supports
Markdown
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