From 0065cad6f6c0cd18723b9d597dc202a44c4b29d6 Mon Sep 17 00:00:00 2001 From: Juergen Keil Date: Wed, 3 Oct 2001 15:08:06 +0000 Subject: Try to use ISO C99 __func__ macro (instead of __FUNCTION__), when xine is compiled with a non-gcc compiler CVS patchset: 720 CVS date: 2001/10/03 15:08:06 --- src/demuxers/demux_mpgaudio.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/demuxers/demux_mpgaudio.c') diff --git a/src/demuxers/demux_mpgaudio.c b/src/demuxers/demux_mpgaudio.c index 4b1101fa8..3b2e66517 100644 --- a/src/demuxers/demux_mpgaudio.c +++ b/src/demuxers/demux_mpgaudio.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: demux_mpgaudio.c,v 1.20 2001/09/10 13:39:33 jkeil Exp $ + * $Id: demux_mpgaudio.c,v 1.21 2001/10/03 15:08:06 jkeil Exp $ * * demultiplexer for mpeg audio (i.e. mp3) streams * @@ -38,6 +38,10 @@ #include "monitor.h" #include "demux.h" +#ifndef __GNUC__ +#define __FUNCTION__ __func__ +#endif + #define DEMUX_MPGAUDIO_IFACE_VERSION 3 typedef struct { -- cgit v1.2.3