Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
e8ba5754
Commit
e8ba5754
authored
Oct 08, 2014
by
Thomas Guillem
Committed by
Rémi Denis-Courmont
Oct 09, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
android: fix nanf detection
Signed-off-by:
Rémi Denis-Courmont
<
remi@remlab.net
>
parent
dc1c7516
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
configure.ac
configure.ac
+3
-0
include/vlc_fixups.h
include/vlc_fixups.h
+1
-1
No files found.
configure.ac
View file @
e8ba5754
...
@@ -696,6 +696,9 @@ AC_CHECK_LIB(m,lrintf, [
...
@@ -696,6 +696,9 @@ AC_CHECK_LIB(m,lrintf, [
AC_DEFINE(HAVE_LRINTF, 1, [Define to 1 if you have the lrintf function])
AC_DEFINE(HAVE_LRINTF, 1, [Define to 1 if you have the lrintf function])
VLC_ADD_LIBS([skins2],[-lm])
VLC_ADD_LIBS([skins2],[-lm])
])
])
AC_CHECK_LIB(m,nanf,
AC_DEFINE(HAVE_NANF, 1, [Define to 1 if you have the NANF function])
)
dnl Check for dynamic plugins
dnl Check for dynamic plugins
LIBDL=""
LIBDL=""
...
...
include/vlc_fixups.h
View file @
e8ba5754
...
@@ -353,7 +353,7 @@ long nrand48 (unsigned short subi[3]);
...
@@ -353,7 +353,7 @@ long nrand48 (unsigned short subi[3]);
/* math.h */
/* math.h */
#if
def __ANDROID__
#if
ndef HAVE_NANF
#define nanf(tagp) NAN
#define nanf(tagp) NAN
#endif
#endif
...
...
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