diff options
author | Leo <thinkabit.ukim@gmail.com> | 2020-03-27 07:55:49 -0300 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2020-03-29 15:55:32 +0000 |
commit | 3d69d14c425b8ae6bc28d5936cd602c0e5e977ab (patch) | |
tree | 886da516c972fad64b33f8482f563837b8d1589a /community/libdvdcss/replace-error.patch | |
parent | aaebd10e3a3225c2720dad72e6481c9646b2beb4 (diff) | |
download | aports-3d69d14c425b8ae6bc28d5936cd602c0e5e977ab.tar.bz2 aports-3d69d14c425b8ae6bc28d5936cd602c0e5e977ab.tar.xz |
community/libdvdcss: move from main
Diffstat (limited to 'community/libdvdcss/replace-error.patch')
-rw-r--r-- | community/libdvdcss/replace-error.patch | 101 |
1 files changed, 101 insertions, 0 deletions
diff --git a/community/libdvdcss/replace-error.patch b/community/libdvdcss/replace-error.patch new file mode 100644 index 0000000000..194fef0054 --- /dev/null +++ b/community/libdvdcss/replace-error.patch @@ -0,0 +1,101 @@ +--- a/src/ioctl.c ++++ b/src/ioctl.c +@@ -220,7 +220,7 @@ + *pi_copyright = p_buffer[ 4 ]; + + #else +-# error "DVD ioctls are unavailable on this system" ++ printf("DVD ioctls are unavailable on this system\n"); + + #endif + return i_ret; +@@ -353,7 +353,7 @@ + memcpy( p_key, p_buffer + 4, DVD_DISCKEY_SIZE ); + + #else +-# error "DVD ioctls are unavailable on this system" ++ printf("DVD ioctls are unavailable on this system\n"); + + #endif + return i_ret; +@@ -483,7 +483,7 @@ + memcpy( p_key, p_buffer + 5, DVD_KEY_SIZE ); + + #else +-# error "DVD ioctls are unavailable on this system" ++ printf("DVD ioctls are unavailable on this system\n"); + + #endif + +@@ -580,7 +580,7 @@ + *pi_agid = p_buffer[ 7 ] >> 6; + + #else +-# error "DVD ioctls are unavailable on this system" ++ printf("DVD ioctls are unavailable on this system\n"); + + #endif + return i_ret; +@@ -688,7 +688,7 @@ + memcpy( p_challenge, p_buffer + 4, DVD_CHALLENGE_SIZE ); + + #else +-# error "DVD ioctls are unavailable on this system" ++ printf("DVD ioctls are unavailable on this system\n"); + + #endif + return i_ret; +@@ -798,7 +798,7 @@ + *pi_asf = p_buffer[ 7 ] & 1; + + #else +-# error "DVD ioctls are unavailable on this system" ++ printf("DVD ioctls are unavailable on this system\n"); + + #endif + return i_ret; +@@ -901,7 +901,7 @@ + memcpy( p_key, p_buffer + 4, DVD_KEY_SIZE ); + + #else +-# error "DVD ioctls are unavailable on this system" ++ printf("DVD ioctls are unavailable on this system\n"); + + #endif + return i_ret; +@@ -984,7 +984,7 @@ + &sdc, sizeof(sdc), &ulParamLen, + NULL, 0, &ulDataLen); + #else +-# error "DVD ioctls are unavailable on this system" ++ printf("DVD ioctls are unavailable on this system\n"); + + #endif + return i_ret; +@@ -1093,7 +1093,7 @@ + p_buffer, sizeof(p_buffer), &ulDataLen ); + + #else +-# error "DVD ioctls are unavailable on this system" ++ printf("DVD ioctls are unavailable on this system\n"); + + #endif + return i_ret; +@@ -1202,7 +1202,7 @@ + p_buffer, sizeof(p_buffer), &ulDataLen ); + + #else +-# error "DVD ioctls are unavailable on this system" ++ printf("DVD ioctls are unavailable on this system\n"); + + #endif + return i_ret; +@@ -1329,7 +1329,7 @@ + *p_scheme = p_buffer[ 6 ]; + + #else +-# error "DVD ioctls are unavailable on this system" ++ printf("DVD ioctls are unavailable on this system\n"); + + #endif + return i_ret; |