mirror of https://github.com/mpv-player/mpv
OpenBSD && ELF fix
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8250 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
a4113d89b4
commit
f1c44b1f65
2
mangle.h
2
mangle.h
|
@ -9,7 +9,7 @@
|
||||||
|
|
||||||
/* Feel free to add more to the list, eg. a.out IMO */
|
/* Feel free to add more to the list, eg. a.out IMO */
|
||||||
#if defined(__CYGWIN__) || defined(__OS2__) || \
|
#if defined(__CYGWIN__) || defined(__OS2__) || \
|
||||||
(defined(__OpenBSD__) && !defined(ELF))
|
(defined(__OpenBSD__) && !defined(__ELF__))
|
||||||
#define MANGLE(a) "_" #a
|
#define MANGLE(a) "_" #a
|
||||||
#else
|
#else
|
||||||
#define MANGLE(a) #a
|
#define MANGLE(a) #a
|
||||||
|
|
Loading…
Reference in New Issue