Commit 0edb8726 authored by Christophe Massiot's avatar Christophe Massiot

Fixed benny's mistakes :pp

parent 10c6c8c9
......@@ -167,11 +167,9 @@ LCFLAGS += -Wall
#
# Debugging and profiling support (unless optimisations are active)
#
ifeq ($(DEBUG),1)
ifneq ($(OPTIMS),1)
CFLAGS += -g
endif
endif
#################################################################################
# Objects and files
......@@ -479,7 +477,7 @@ ifeq ($(SYS),beos)
rm -f ./plugins/_APP_
ln -s ../vlc ./plugins/_APP_
else
$(CC) $(CFLAGS) $(LCFLAGS) --export-dynamic -o $@ $(C_OBJ) $(CPP_OBJ) $(ASM_OBJ)
$(CC) $(CFLAGS) $(LCFLAGS) --export-dynamic -rdynamic -o $@ $(C_OBJ) $(CPP_OBJ) $(ASM_OBJ)
endif
lib/beos.so: $(PLUGIN_BEOS)
......
......@@ -128,7 +128,7 @@ intf_thread_t* intf_Create( void )
if( i_best_score == 0 )
{
free( p_intf );
intf_ErrMsg( "error: no suitable plugin to create interface\n" );
intf_ErrMsg( "error: no suitable plugin to create interface\n" );
return( NULL );
}
......
......@@ -178,7 +178,7 @@ char * TestPlugin ( plugin_id_t *p_plugin_id, char * psz_name )
#ifndef SYS_BEOS
else
{
intf_DbgMsg( "%s\n", dlerror() );
intf_WarnMsg( 1, "dlerror: %s\n", dlerror() );
}
#endif
......
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