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

Fixed benny's mistakes :pp

parent 10c6c8c9
...@@ -167,11 +167,9 @@ LCFLAGS += -Wall ...@@ -167,11 +167,9 @@ LCFLAGS += -Wall
# #
# Debugging and profiling support (unless optimisations are active) # Debugging and profiling support (unless optimisations are active)
# #
ifeq ($(DEBUG),1)
ifneq ($(OPTIMS),1) ifneq ($(OPTIMS),1)
CFLAGS += -g CFLAGS += -g
endif endif
endif
################################################################################# #################################################################################
# Objects and files # Objects and files
...@@ -479,7 +477,7 @@ ifeq ($(SYS),beos) ...@@ -479,7 +477,7 @@ ifeq ($(SYS),beos)
rm -f ./plugins/_APP_ rm -f ./plugins/_APP_
ln -s ../vlc ./plugins/_APP_ ln -s ../vlc ./plugins/_APP_
else 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 endif
lib/beos.so: $(PLUGIN_BEOS) lib/beos.so: $(PLUGIN_BEOS)
......
...@@ -178,7 +178,7 @@ char * TestPlugin ( plugin_id_t *p_plugin_id, char * psz_name ) ...@@ -178,7 +178,7 @@ char * TestPlugin ( plugin_id_t *p_plugin_id, char * psz_name )
#ifndef SYS_BEOS #ifndef SYS_BEOS
else else
{ {
intf_DbgMsg( "%s\n", dlerror() ); intf_WarnMsg( 1, "dlerror: %s\n", dlerror() );
} }
#endif #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