X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fmisc%2Fwin32_specific.c;h=ff3c5e47dd8b26f9b20e87b8baaf2b19ca75136d;hb=6ee1e193fd896ab9a4729fde14f009d9ce629815;hp=c318c7d46e7a6b5dc912cd9c74559b21eafbb10c;hpb=85ff1461a28b5ec29f881aaaa960a242750704fb;p=vlc diff --git a/src/misc/win32_specific.c b/src/misc/win32_specific.c index c318c7d46e..ff3c5e47dd 100644 --- a/src/misc/win32_specific.c +++ b/src/misc/win32_specific.c @@ -21,10 +21,9 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/ -#include /* strdup() */ -#include /* free() */ #include +#include "../libvlc.h" #include #include @@ -72,7 +71,20 @@ void system_Init( libvlc_int_t *p_this, int *pi_argc, char *ppsz_argv[] ) if( (psz_vlc = strrchr( psz_path, '\\' )) ) *psz_vlc = '\0'; - p_this->p_libvlc_global->psz_vlcpath = strdup( psz_path ); +#ifndef HAVE_RELEASE + { + /* remove trailing \.libs from executable dir path if seen, + we assume we are running vlc through libtool wrapper in build dir */ + int offset = strlen(psz_path)-sizeof("\\.libs")+1; + if( offset > 0 ) + { + psz_vlc = psz_path+offset; + if( ! strcmp(psz_vlc, "\\.libs") ) *psz_vlc = '\0'; + } + } +#endif + + vlc_global()->psz_vlcpath = strdup( psz_path ); /* Set the default file-translation mode */ #if !defined( UNDER_CE ) @@ -120,9 +132,6 @@ LRESULT CALLBACK WMCOPYWNDPROC( HWND, UINT, WPARAM, LPARAM ); void system_Configure( libvlc_int_t *p_this, int *pi_argc, char *ppsz_argv[] ) { #if !defined( UNDER_CE ) - p_this->p_libvlc_global->b_fast_mutex = config_GetInt( p_this, "fast-mutex" ); - p_this->p_libvlc_global->i_win9x_cv = config_GetInt( p_this, "win9x-cv-method" ); - /* Raise default priority of the current process */ #ifndef ABOVE_NORMAL_PRIORITY_CLASS # define ABOVE_NORMAL_PRIORITY_CLASS 0x00008000 @@ -351,10 +360,10 @@ LRESULT CALLBACK WMCOPYWNDPROC( HWND hwnd, UINT uMsg, WPARAM wParam, *****************************************************************************/ void system_End( libvlc_int_t *p_this ) { - if( p_this && p_this->p_libvlc_global && p_this->p_libvlc_global->psz_vlcpath ) + if( p_this && vlc_global() ) { - free( p_this->p_libvlc_global->psz_vlcpath ); - p_this->p_libvlc_global->psz_vlcpath = NULL; + free( vlc_global()->psz_vlcpath ); + vlc_global()->psz_vlcpath = NULL; } WSACleanup();