diff options
author | theuni <theuni-nospam-@xbmc.org> | 2012-04-30 18:10:22 -0400 |
---|---|---|
committer | theuni <theuni-nospam-@xbmc.org> | 2012-04-30 18:30:49 -0400 |
commit | eb7ed3acca61bf889a839f6bfd264612add2527d (patch) | |
tree | 0bfb8505a9b138f84a2559761385a2f85382137b /Makefile.in | |
parent | 26e97629b2f87e4fac17afdc10aa6ddee8b29114 (diff) |
build: fix build when microhttpd isn't present
Diffstat (limited to 'Makefile.in')
-rwxr-xr-x | Makefile.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 354ec0bc93..757808c2cc 100755 --- a/Makefile.in +++ b/Makefile.in @@ -61,7 +61,6 @@ DIRECTORY_ARCHIVES=$(DVDPLAYER_ARCHIVES) \ xbmc/music/tags/musictags.a \ xbmc/music/windows/musicwindows.a \ xbmc/network/libscrobbler/scrobbler.a \ - xbmc/network/httprequesthandler/httprequesthandlers.a \ xbmc/network/websocket/websocket.a \ xbmc/network/network.a \ xbmc/peripherals/bus/peripheral-bus.a \ @@ -85,6 +84,10 @@ DIRECTORY_ARCHIVES=$(DVDPLAYER_ARCHIVES) \ xbmc/xbmc.a \ +ifeq (@USE_WEB_SERVER@,1) +DIRECTORY_ARCHIVES += xbmc/network/httprequesthandler/httprequesthandlers.a +endif + ifeq (@USE_OPENGL@,1) DIRECTORY_ARCHIVES += xbmc/rendering/gl/rendering_gl.a endif |