]> git.sesse.net Git - vlc/commitdiff
Revert "Revert "live555: Don't put any INT64_C related hack here. We need to fix...
authorPierre d'Herbemont <pdherbemont@videolan.org>
Wed, 28 May 2008 18:22:25 +0000 (20:22 +0200)
committerPierre d'Herbemont <pdherbemont@videolan.org>
Wed, 28 May 2008 18:22:25 +0000 (20:22 +0200)
This reverts commit b8d7dae428bc149d70633f044d335be611187609.

There was a reason for the removal of this hack. I introduced that hack while trying to fix that precise compile error, and decided that this fix was hiding a bigger problem. Would be nice to summon before reverting, that could prevent such mistake.

modules/demux/live555.cpp

index 575de2744d298a2a8e44e7dbf87f8a5915934ae4..ffed8fe809a7824148c697fb5b0fefc646c69a4c 100644 (file)
@@ -59,14 +59,6 @@ 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;
 
 /*****************************************************************************