wok annotate lsdvd/stuff/lsdvd-0.16-configure.patch @ rev 24676
updated iptstate (2.2.6 -> 2.2.7)
author | Hans-G?nter Theisgen |
---|---|
date | Sat Mar 12 08:53:57 2022 +0100 (2022-03-12) |
parents | |
children |
rev | line source |
---|---|
erjo@621 | 1 --- lsdvd-0.16-ori/configure Mon Dec 12 21:22:45 2005 |
erjo@621 | 2 +++ lsdvd-0.16/configure Sat Apr 19 17:20:11 2008 |
erjo@621 | 3 @@ -2887,8 +2887,9 @@ |
erjo@621 | 4 cat confdefs.h >>conftest.$ac_ext |
erjo@621 | 5 cat >>conftest.$ac_ext <<_ACEOF |
erjo@621 | 6 /* end confdefs.h. */ |
erjo@621 | 7 +#include <stdint.h> |
erjo@621 | 8 #include <dvdread/ifo_read.h> |
erjo@621 | 9 - #include <stdint.h> |
erjo@621 | 10 + |
erjo@621 | 11 int |
erjo@621 | 12 main () |
erjo@621 | 13 { |
erjo@621 | 14 --- lsdvd-0.16-ori/configure.in Mon Dec 12 21:11:01 2005 |
erjo@621 | 15 +++ lsdvd-0.16/configure.in Sat Apr 19 17:19:36 2008 |
erjo@621 | 16 @@ -10,8 +10,8 @@ |
erjo@621 | 17 |
erjo@621 | 18 AC_CHECK_LIB(dvdread, DVDOpen, , AC_MSG_ERROR([libdvdread not found!])) |
erjo@621 | 19 AC_MSG_CHECKING([for dvdread/ifo_read.h]) |
erjo@621 | 20 -AC_TRY_COMPILE([#include <dvdread/ifo_read.h> |
erjo@621 | 21 - #include <stdint.h>], , |
erjo@621 | 22 +AC_TRY_COMPILE([#include <stdint.h> |
erjo@621 | 23 + #include <dvdread/ifo_read.h>], , |
erjo@621 | 24 AC_MSG_RESULT([yes]), |
erjo@621 | 25 AC_MSG_RESULT([no]) |
erjo@621 | 26 AC_MSG_ERROR([Header files for dvdread not found])) |
erjo@621 | 27 --- lsdvd-0.16-ori/lsdvd.c Thu Mar 2 14:48:11 2006 |
erjo@621 | 28 +++ lsdvd-0.16/lsdvd.c Sat Apr 19 17:26:06 2008 |
erjo@621 | 29 @@ -13,13 +13,13 @@ |
erjo@621 | 30 * 2003-04-19 Cleanups get_title_name, added dvdtime2msec, added helper macros, |
erjo@621 | 31 * output info structures in form of a Perl module, by Henk Vergonet. |
erjo@621 | 32 */ |
erjo@621 | 33 -#include <dvdread/ifo_read.h> |
erjo@621 | 34 #include <string.h> |
erjo@621 | 35 #include <sys/stat.h> |
erjo@621 | 36 #include <stdio.h> |
erjo@621 | 37 #include <stdlib.h> |
erjo@621 | 38 #include <unistd.h> |
erjo@621 | 39 #include <stdint.h> |
erjo@621 | 40 +#include <dvdread/ifo_read.h> |
erjo@621 | 41 #include "lsdvd.h" |
erjo@621 | 42 #include "ocode.h" |
erjo@621 | 43 |