From 0edb872610514564d6676a61a3df1d8ce5e1c4a1 Mon Sep 17 00:00:00 2001 From: Christophe Massiot Date: Mon, 11 Dec 2000 14:34:31 +0000 Subject: [PATCH] Fixed benny's mistakes :pp --- Makefile.in | 4 +--- src/interface/interface.c | 2 +- src/misc/plugins.c | 2 +- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/Makefile.in b/Makefile.in index 6f12a0ec25..4cc4ed2a88 100644 --- a/Makefile.in +++ b/Makefile.in @@ -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) diff --git a/src/interface/interface.c b/src/interface/interface.c index 01741b34de..9fcc08f862 100644 --- a/src/interface/interface.c +++ b/src/interface/interface.c @@ -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 ); } diff --git a/src/misc/plugins.c b/src/misc/plugins.c index ccb34a6a75..2c5cf9524c 100644 --- a/src/misc/plugins.c +++ b/src/misc/plugins.c @@ -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 -- 2.39.2