Ticket #592: libdvdread-4.2.0.patch
| File libdvdread-4.2.0.patch, 1.2 KB (added by cian, 3 years ago) |
|---|
-
libdvdread-4.2.
old new 148 148 *os2*) 149 149 LDFLAGS="-no-undefined -Zbin-files $LDFLAGS" 150 150 ;; 151 *haiku*) 152 ;; 151 153 *) 152 154 AC_CHECK_LIB(c, dlopen, 153 155 DYNAMIC_LD_LIBS="", -
libdvdread-4.2.
old new 37 37 #include <sys/param.h> 38 38 #endif 39 39 40 #if defined(__linux__) || defined(__GLIBC__) 40 #if defined(__linux__) || defined(__GLIBC__) 41 41 #include <byteswap.h> 42 42 #define B2N_16(x) x = bswap_16(x) 43 43 #define B2N_32(x) x = bswap_32(x) … … 73 73 * functionality! 74 74 */ 75 75 76 #elif defined(__FreeBSD__) || defined(__sun) || defined(__bsdi__) || defined(WIN32) || defined(__CYGWIN__) || defined(__BEOS__) || defined(__OS2__) 76 #elif defined(__FreeBSD__) || defined(__sun) || defined(__bsdi__) || defined(WIN32) || defined(__CYGWIN__) || defined(__BEOS__) || defined(__OS2__)|| defined(__HAIKU__) 77 77 #define B2N_16(x) \ 78 78 x = ((((x) & 0xff00) >> 8) | \ 79 79 (((x) & 0x00ff) << 8))
