Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
5ac87d09
Commit
5ac87d09
authored
Mar 12, 2006
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Always link libintl through libvlc on Win32
parent
18b4556f
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
include/vlc_common.h
include/vlc_common.h
+4
-4
src/extras/libc.c
src/extras/libc.c
+1
-1
No files found.
include/vlc_common.h
View file @
5ac87d09
...
...
@@ -1110,7 +1110,7 @@ VLC_EXPORT( int, __vlc_execve, ( vlc_object_t *p_object, int i_argc, char **pp_a
/*****************************************************************************
* I18n stuff
*****************************************************************************/
#if
ndef HAVE_SHARED_LIBVLC
#if
defined (WIN32) || !defined (HAVE_SHARED_LIBVLC)
VLC_EXPORT
(
char
*
,
vlc_dgettext
,
(
const
char
*
package
,
const
char
*
msgid
)
);
#endif
...
...
@@ -1126,10 +1126,10 @@ VLC_EXPORT( char *, vlc_dgettext, ( const char *package, const char *msgid ) );
# include <libintl.h>
# endif
# undef _
# if
def HAVE_SHARED_LIBVLC
# define _(String) dgettext (PACKAGE_NAME, String)
# if
defined (WIN32) || !defined (HAVE_SHARED_LIBVLC)
# define _(String)
vlc_
dgettext (PACKAGE_NAME, String)
# else
# define _(String)
vlc_
dgettext(PACKAGE_NAME, String)
# define _(String) dgettext(PACKAGE_NAME, String)
# endif
# define N_(String) ((char*)(String))
#else
...
...
src/extras/libc.c
View file @
5ac87d09
...
...
@@ -511,7 +511,7 @@ int vlc_scandir( const char *name, struct dirent ***namelist,
}
#endif
#if
ndef HAVE_SHARED_LIBVLC
#if
defined (WIN32) || !defined (HAVE_SHARED_LIBVLC)
/*****************************************************************************
* dgettext: gettext for plugins.
*****************************************************************************/
...
...
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