Skip to content
Snippets Groups Projects
Commit be04be34 authored by Callum Prentice's avatar Callum Prentice
Browse files

Automated merge with tip of lindenlab/viewer64

parents 3c16beed e6b9174b
No related branches found
No related tags found
No related merge requests found
...@@ -284,7 +284,8 @@ class Server(ThreadingMixIn, HTTPServer): ...@@ -284,7 +284,8 @@ class Server(ThreadingMixIn, HTTPServer):
# to stderr which annoys some. Disable this override to get # to stderr which annoys some. Disable this override to get
# default behavior which *shouldn't* cause the program to return # default behavior which *shouldn't* cause the program to return
# a failure status. # a failure status.
def handle_error(self, request, client_address): if not VERBOSE:
def handle_error(self, request, client_address):
print '-'*40 print '-'*40
print 'Ignoring exception during processing of request from', print 'Ignoring exception during processing of request from',
print client_address print client_address
......
...@@ -61,7 +61,17 @@ target_link_libraries(media_plugin_libvlc ...@@ -61,7 +61,17 @@ target_link_libraries(media_plugin_libvlc
add_dependencies(media_plugin_libvlc add_dependencies(media_plugin_libvlc
${LLPLUGIN_LIBRARIES} ${LLPLUGIN_LIBRARIES}
${MEDIA_PLUGIN_BASE_LIBRARIES} ${MEDIA_PLUGIN_BASE_LIBRARIES}
${LLCOMMON_LIBRARIES} ##${LLCOMMON_LIBRARIES}
# Just say 'llcommon' here. LLCOMMON_LIBRARIES is specified for use in
# target_link_libraries: it includes several Boost libraries, which are
# absolutely NOT dependencies in the sense intended here. Those Boost
# library macros, in turn, specify 'debug' and 'optimized' and a different
# library name for each, producing several wordy errors:
# Policy CMP0046 is not set: Error on non-existent dependency in
# add_dependencies.
# Really, the only dependency we should mention from LLCOMMON_LIBRARIES is
# llcommon itself.
llcommon
) )
if (WINDOWS) if (WINDOWS)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment