Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-1.1
Commits
80def97f
Commit
80def97f
authored
Aug 15, 2007
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Continue fixing static builds
parent
7ca5e9c1
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
6 deletions
+8
-6
Makefile.am
Makefile.am
+1
-1
bootstrap
bootstrap
+2
-0
include/vlc_modules_macros.h
include/vlc_modules_macros.h
+5
-5
No files found.
Makefile.am
View file @
80def97f
...
...
@@ -278,7 +278,7 @@ vlc$(EXEEXT): $(vlc_OBJECTS) $(vlc_DEPENDENCIES)
objc
)
cmd
=
"
$(OBJCLINK)
"
;;
\
c|
*
)
cmd
=
"
$(LINK)
"
;;
\
esac
;
\
cmd
=
"
$$
cmd
$(vlc_OBJECTS)
$(vlc_LD
FLAGS)
$(vlc_LDADD
)
"
;
\
cmd
=
"
$$
cmd
$(vlc_OBJECTS)
$(vlc_LD
ADD)
$(vlc_LDFLAGS
)
"
;
\
echo
$$
cmd
;
\
eval
$$
cmd
...
...
bootstrap
View file @
80def97f
...
...
@@ -221,6 +221,7 @@ EXTRA_LTLIBRARIES = ${extra_ltlibs}
include Modules.am
if HAVE_PLUGINS
LTLIBVLC = -L
\$
(top_builddir)/src -lvlc
AM_LDFLAGS = -rpath '
\$
(libvlcdir)' -avoid-version
\\
...
...
@@ -231,6 +232,7 @@ else
AM_LDFLAGS += -export-symbol-regex ^
\$
(VLC_ENTRY)
\$\$
endif
AM_LIBADD =
\$
(LTLIBVLC)
endif
all: all-modules
...
...
include/vlc_modules_macros.h
View file @
80def97f
...
...
@@ -41,7 +41,7 @@
* if user has #defined MODULE_NAME foo, then we will need:
* #define MODULE_STRING "foo"
*
* and, if
__BUILTIN__ is
set, we will also need:
* and, if
HAVE_DYNAMIC_PLUGINS is NOT
set, we will also need:
* #define MODULE_FUNC( zog ) module_foo_zog
*
* this can't easily be done with the C preprocessor, thus a few ugly hacks.
...
...
@@ -56,12 +56,12 @@
/* If the module is built-in, then we need to define foo_InitModule instead
* of InitModule. Same for Activate- and DeactivateModule. */
#if defined( __BUILTIN__ )
# define E_( function ) CONCATENATE( function, MODULE_NAME )
# define __VLC_SYMBOL( symbol ) CONCATENATE( symbol, MODULE_NAME )
#elif defined( __PLUGIN__ )
#if defined (HAVE_DYNAMIC_PLUGINS)
# define E_( function ) CONCATENATE( function, MODULE_SYMBOL )
# define __VLC_SYMBOL( symbol ) CONCATENATE( symbol, MODULE_SYMBOL )
#else
# define E_( function ) CONCATENATE( function, MODULE_NAME )
# define __VLC_SYMBOL( symbol ) CONCATENATE( symbol, MODULE_NAME )
#endif
#if defined( __PLUGIN__ ) && ( defined( WIN32 ) || defined( UNDER_CE ) )
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment