diff options
author | Tor Lillqvist <tml@collabora.com> | 2013-10-12 09:26:17 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2013-10-12 09:26:17 +0300 |
commit | f1b956f5aaa83b53b1217d85be24d71d6379e97e (patch) | |
tree | 0a77f67324de6b31c3ae24607bc79b6d17d98e79 /avmedia | |
parent | b60ce8465c8f01242354abccebe00742d164af60 (diff) |
s/UNX/LINUX/, as that is what is meant here
Change-Id: I6b58f6f62bc304b29c336fc46f87bce8d2ce22fe
Diffstat (limited to 'avmedia')
-rw-r--r-- | avmedia/source/vlc/wrapper/SymbolLoader.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/avmedia/source/vlc/wrapper/SymbolLoader.hxx b/avmedia/source/vlc/wrapper/SymbolLoader.hxx index 7061fafc956d..e7db7a7cdbb6 100644 --- a/avmedia/source/vlc/wrapper/SymbolLoader.hxx +++ b/avmedia/source/vlc/wrapper/SymbolLoader.hxx @@ -34,7 +34,7 @@ struct ApiMap namespace { -#if defined( UNX ) +#if defined( LINUX ) const char LibName[] = "libvlc.so.5"; #elif defined( MACOSX ) const char LibName[] = "/Applications/VLC.app/Contents/MacOS/lib/libvlc.dylib"; @@ -92,7 +92,7 @@ namespace template<size_t N> bool InitApiMap( const ApiMap ( &pMap )[N] ) { -#if defined( UNX ) || defined( MACOSX ) +#if defined( LINUX ) || defined( MACOSX ) const OUString& fullPath = OUString::createFromAscii(LibName); #elif defined( WNT ) const OUString& fullPath = GetVLCPath() + OUString::createFromAscii(LibName); |