diff options
author | althekiller <althekiller@svn> | 2010-01-18 04:32:38 +0000 |
---|---|---|
committer | althekiller <althekiller@svn> | 2010-01-18 04:32:38 +0000 |
commit | f1f432a161f99b7dc366ceec83e5e4bb6e446cca (patch) | |
tree | 49d7d53c5b53d1de7f5e30f2bbcf402f9455ba03 /Makefile.in | |
parent | afacd3f18fb63004c21dbc07a348c6c9c30fd83b (diff) |
fixed: Only linux needs posix.a ATM.
fixed: includes for renamed header
fixed: Damn C&P...
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@26969 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index 3d67c982b5..80a12bc6c3 100644 --- a/Makefile.in +++ b/Makefile.in @@ -390,8 +390,7 @@ OBJSXBMC= \ xbmc/lib/libsquish/libsquish-@ARCH@.a \ xbmc/screensavers/screensaver.a \ xbmc/settings/settings.a \ - xbmc/visualizations/visualization.a \ - xbmc/posix/posix.a + xbmc/visualizations/visualization.a ifeq (@HAVE_XBMC_NONFREE@,1) OBJSXBMC+= \ @@ -412,6 +411,9 @@ OBJSXBMC += \ xbmc/osx/osx.a \ lib/libSDL-OSX/libSDL-@ARCH@.a \ lib/libSDL-OSX/libSDL_mixer-@ARCH@.a +else +OBJSXBMC += \ + xbmc/posix/posix.a endif xbmc.bin: $(OBJSXBMC) $(DYNOBJSXBMC) |