Skip to content
Snippets Groups Projects
  1. Sep 04, 2021
  2. Aug 27, 2021
  3. Aug 20, 2021
  4. Aug 13, 2021
    • KO Myung-Hun's avatar
      logger/console: print messages in system locale on OS/2 · 871bb903
      KO Myung-Hun authored and Steve Lhomme's avatar Steve Lhomme committed
      
      Signed-off-by: default avatarThomas Guillem <thomas@gllm.fr>
      (cherry picked from commit 0adb6dc6)
      871bb903
    • KO Myung-Hun's avatar
      vlc_fixups.h: define INET6_ADDRSTRLEN for OS/2 · 5290585d
      KO Myung-Hun authored and Steve Lhomme's avatar Steve Lhomme committed
      This fixes the following compilation errors of access/rist.[ch] on OS/2:
      
      -----
        CC       access/librist_plugin_la-rist.lo
      In file included from access/rist.c:41:
      access/rist.h: In function 'populate_cname':
      access/rist.h:161:22: error: 'INET6_ADDRSTRLEN' undeclared (first use in this function); did you mean 'INET_ADDRSTRLEN'?
        161 |             char str[INET6_ADDRSTRLEN];
            |                      ^~~~~~~~~~~~~~~~
            |                      INET_ADDRSTRLEN
      access/rist.h:161:22: note: each undeclared identifier is reported only once for each function it appears in
      access/rist.h:161:18: warning: unused variable 'str' [-Wunused-variable]
        161 |             char str[INET6_ADDRSTRLEN];
            |                  ^~~
      access/rist.c: In function 'print_sockaddr_info_change':
      access/rist.c:448:21: error: 'INET6_ADDRSTRLEN' undeclared (first use in this function); did you mean 'INET_ADDRSTRLEN'?
        448 |         char oldstr[INET6_ADDRSTRLEN];
            |                     ^~~~~~~~~~~~~~~~
            |                     INET_ADDRSTRLEN
      access/rist.c:449:14: warning: unused variable 'newstr' [-Wunused-variable]
        449 |         char newstr[INET6_ADDRSTRLEN];
            |              ^~~~~~
      access/rist.c:448:14: warning: unused variable 'oldstr' [-Wunused-variable]
        448 |         char oldstr[INET6_ADDRSTRLEN];
            |              ^~~~~~
      access/rist.c: In function 'print_sockaddr_info':
      access/rist.c:467:18: error: 'INET6_ADDRSTRLEN' undeclared (first use in this function); did you mean 'INET_ADDRSTRLEN'?
        467 |         char str[INET6_ADDRSTRLEN];
            |                  ^~~~~~~~~~~~~~~~
            |                  INET_ADDRSTRLEN
      access/rist.c:467:14: warning: unused variable 'str' [-Wunused-variable]
        467 |         char str[INET6_ADDRSTRLEN];
            |              ^~~
      -----
      5290585d
  5. Aug 12, 2021
  6. Aug 09, 2021
    • KO Myung-Hun's avatar
      freetype: use UCS-4 encoding on OS/2, too · 10e0c8e1
      KO Myung-Hun authored
      This fixes subtitle texts are not shown correctly on OS/2.
      
      Freetype module expects UCS-4 string. However, OS/2 iconv() does not
      support UCS-4 encoding, so UCS-2 encoding is used on OS/2. Because of
      this mis-match, subtitle texts on OS/2 are mis-interpreted. As a result,
      subtitle texts are not shown correctly.
      
      (cherry picked from commit 89b561ea)
      
        Conflicts:
          modules/text_renderer/freetype/freetype.c
          modules/text_renderer/freetype/text_layout.c
      10e0c8e1
  7. Aug 08, 2021
  8. Jul 29, 2021
  9. Jul 28, 2021
  10. Jul 26, 2021
    • Alexandre Janniaux's avatar
      contrib: lua: rewrite prefix in pkg-config file · 8eb32da6
      Alexandre Janniaux authored and Hugo Beauzée-Luyssen's avatar Hugo Beauzée-Luyssen committed
      
      This patch enable the writing of the pkg-config file for all platforms
      and enforce the correct prefix= value in the file. Previously the
      pkg-config file was never installed for linux platforms so it was using
      the file detection in the configure.ac, which is the last method of
      detection.
      
      If a newer lua was detected that was not in the contrib file
      autodetection, it would build the lua contrib but still configure with
      the newer one, which means that contrib includes will be used and then
      it will be linked to the detected external lua.
      
      In particular, on Archlinux, when using the default lua (5.3) version,
      the contrib would be built but it will still link lua5.3 which has no
      symbol for the luaL_register function used when header version is less
      than or equal to 5.2.
      
      With previous change, as `lua >= 5.1` is tested first, contrib will be
      used first if built whatever the version of lua on the platform, so in
      the worst case we only build lua from the contrib too often (like
      previously) instead of failing link on some platforms too.
      
      (cherry picked from commit 40174356)
      Signed-off-by: default avatarHugo Beauzée-Luyssen <hugo@beauzee.fr>
      8eb32da6
    • Hugo Beauzée-Luyssen's avatar
  11. Jul 21, 2021
  12. Jul 18, 2021
  13. Jul 10, 2021
  14. Jul 09, 2021
Loading