From a8a188fc95860e53ff61f47ca155438b421791f1 Mon Sep 17 00:00:00 2001 From: Damien Fouilleul Date: Thu, 16 Aug 2007 13:59:11 +0000 Subject: [PATCH] fix dynamic plugins broken in r21118, not sure if this what courmisch had in mind, but it works --- include/vlc_modules_macros.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/vlc_modules_macros.h b/include/vlc_modules_macros.h index a267358801..ebf9be0e76 100644 --- a/include/vlc_modules_macros.h +++ b/include/vlc_modules_macros.h @@ -56,7 +56,7 @@ /* If the module is built-in, then we need to define foo_InitModule instead * of InitModule. Same for Activate- and DeactivateModule. */ -#if defined (HAVE_DYNAMIC_PLUGINS) && !defined (__LIBVLC__) +#if defined (HAVE_DYNAMIC_PLUGINS) && !defined (__BUILTIN__) # define E_( function ) CONCATENATE( function, MODULE_SYMBOL ) # define __VLC_SYMBOL( symbol ) CONCATENATE( symbol, MODULE_SYMBOL ) #else -- 2.39.5