From: Sam Hocevar Date: Sun, 24 Nov 2002 18:54:54 +0000 (+0000) Subject: * ./configure.ac.in: we no longer choke if libdvbpsi headers aren't here. X-Git-Tag: 0.5.0~660 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=1158db5fb5a16bb6e4988940b416d6a736546e18;p=vlc * ./configure.ac.in: we no longer choke if libdvbpsi headers aren't here. * ./include/vlc_common.h: we don't try to include inttypes.h with Borland. --- diff --git a/configure.ac.in b/configure.ac.in index 8415710b7c..f0dd5c06bd 100644 --- a/configure.ac.in +++ b/configure.ac.in @@ -961,7 +961,7 @@ then AC_CHECK_HEADERS(dvbpsi/dr.h, [ PLUGINS="${PLUGINS} ts_dvbpsi" LDFLAGS_ts_dvbpsi="${LDFLAGS_ts_dvbpsi} -ldvbpsi" ], - [ AC_MSG_ERROR([cannot find libdvbpsi headers]) ], + [ AC_MSG_WARN([cannot find libdvbpsi headers]) ], [#include #include #include diff --git a/doc/fortunes.txt b/doc/fortunes.txt index 99359e2db7..b1a4d7b5c8 100644 --- a/doc/fortunes.txt +++ b/doc/fortunes.txt @@ -373,3 +373,8 @@ the Boston strangler is to the woman home alone. -- #videolan % + hi I've got some nice xxx videos, and I'd like to exchange with + anyone + + -- #videolan +% diff --git a/include/vlc_common.h b/include/vlc_common.h index ea71aff7fb..6f6fce93ee 100644 --- a/include/vlc_common.h +++ b/include/vlc_common.h @@ -3,7 +3,7 @@ * Collection of useful common types and macros definitions ***************************************************************************** * Copyright (C) 1998, 1999, 2000 VideoLAN - * $Id: vlc_common.h,v 1.39 2002/11/20 08:58:20 sam Exp $ + * $Id: vlc_common.h,v 1.40 2002/11/24 18:54:54 sam Exp $ * * Authors: Samuel Hocevar * Vincent Seguin @@ -29,6 +29,7 @@ *****************************************************************************/ #if defined( __BORLANDC__ ) # undef PACKAGE +# undef HAVE_INTTYPES_H #endif #include "config.h"