]> git.sesse.net Git - vlc/commitdiff
Fixed benny's mistakes :pp
authorChristophe Massiot <massiot@videolan.org>
Mon, 11 Dec 2000 14:34:31 +0000 (14:34 +0000)
committerChristophe Massiot <massiot@videolan.org>
Mon, 11 Dec 2000 14:34:31 +0000 (14:34 +0000)
Makefile.in
src/interface/interface.c
src/misc/plugins.c

index 6f12a0ec250c69f98d4f586d2285d1e220840dd8..4cc4ed2a88d970c031816ed634dd419b6af52777 100644 (file)
@@ -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)
index 01741b34de6070e53c2b26b89da97bd38597a6b0..9fcc08f8622d9092ef27b2bdda6cdb3f6a562fa9 100644 (file)
@@ -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 );
     }
 
index ccb34a6a7535a98feeb7e902fa269660e70b82b3..2c5cf9524cc5044bbe310c28067d3e659a1aac44 100644 (file)
@@ -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