1. 26 Nov, 2016 2 commits
  2. 24 Nov, 2016 1 commit
  3. 19 Nov, 2016 2 commits
  4. 16 Nov, 2016 2 commits
  5. 14 Nov, 2016 1 commit
  6. 12 Nov, 2016 2 commits
  7. 11 Nov, 2016 3 commits
  8. 05 Nov, 2016 8 commits
  9. 02 Nov, 2016 3 commits
  10. 01 Nov, 2016 2 commits
  11. 31 Oct, 2016 4 commits
  12. 29 Oct, 2016 2 commits
  13. 28 Oct, 2016 1 commit
  14. 27 Oct, 2016 7 commits
    • Jan Beich's avatar
      build: don't install freedesktop.org metadata for SDL2-only builds · 8b833d3a
      Jan Beich authored
      Citra SDL2 doesn't have a launcher, and citra.desktop tries to execute
      citra-qt which is N/A unless built with ENABLE_QT. Limiting installed
      files to one of the options also makes it easier to split them into
      separate non-conflicting packages downstream.
      8b833d3a
    • Jan Beich's avatar
      2240cb2e
    • Jan Beich's avatar
      build: clock_gettime() is in libc on BSDs · 52da9de5
      Jan Beich authored
      52da9de5
    • Jan Beich's avatar
      build: libc may not provide iconv() on Unix · 48b6c98d
      Jan Beich authored
      /usr/bin/ld: ../common/libcommon.a(string_util.cpp.o): undefined reference to symbol 'libiconv_open'
      48b6c98d
    • Jan Beich's avatar
      microprofile: unbreak on POSIX systems · 50ce19b3
      Jan Beich authored
      In file included from src/common/microprofile.cpp:7:
      In file included from src/./common/microprofile.h:23:
      externals/microprofile/microprofile.h:830:5: error: use of undeclared identifier 'MP_BREAK'
          MP_ASSERT(t == nBegin);
          ^
      externals/microprofile/microprofile.h:238:34: note: expanded from macro 'MP_ASSERT'
                                       ^
      externals/microprofile/microprofile.h:831:5: error: use of undeclared identifier 'MP_BREAK'
          MP_ASSERT(nTimerIndex == (nToken&0x3fff));
          ^
      externals/microprofile/microprofile.h:238:34: note: expanded from macro 'MP_ASSERT'
                                       ^
      [...]
      50ce19b3
    • Jan Beich's avatar
      core: some errno values are uncommon on Unix · 702439b5
      Jan Beich authored
      src/core/hle/service/soc_u.cpp:107:6: error: 'ENODATA' was not declared in this scope
           {ENODATA, 43},
            ^
      src/core/hle/service/soc_u.cpp:117:6: error: 'ENOSR' was not declared in this scope
           {ENOSR, 53},
            ^
      src/core/hle/service/soc_u.cpp:118:6: error: 'ENOSTR' was not declared in this scope
           {ENOSTR, 54},
            ^
      src/core/hle/service/soc_u.cpp:139:6: error: 'ETIME' was not declared in this scope
           {ETIME, 75},
            ^
      702439b5
    • Jan Beich's avatar
      94d23b48