From: Jean-Paul Saman Date: Wed, 28 May 2008 12:23:33 +0000 (+0200) Subject: Revert "live555: Don't put any INT64_C related hack here. We need to fix that properly." X-Git-Tag: 0.9.0-test0~620 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=b8d7dae428bc149d70633f044d335be611187609;p=vlc Revert "live555: Don't put any INT64_C related hack here. We need to fix that properly." Don't break the build in the mean time !!! This reverts commit d682e91e10f9ceabfb52385e0956e1fabba9928c. --- diff --git a/modules/demux/live555.cpp b/modules/demux/live555.cpp index ffed8fe809..575de2744d 100644 --- a/modules/demux/live555.cpp +++ b/modules/demux/live555.cpp @@ -59,6 +59,14 @@ extern "C" { #include "../access/mms/asf.h" /* Who said ugly ? */ } +/* XXX Ugly workaround: Buggy Mac OS X headers fail to define them */ +#ifndef INT64_C +# define INT64_C(v) (v ## LL) +#endif +#ifndef UINT64_C +# define UINT64_C(v) (v ## ULL) +#endif + using namespace std; /*****************************************************************************