Commit b8d7dae4 authored by Jean-Paul Saman's avatar Jean-Paul Saman

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 d682e91e.
parent b3983d35
No related merge requests found
......@@ -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;
/*****************************************************************************
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment