Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
ea4515b3
Commit
ea4515b3
authored
Sep 28, 2015
by
Thomas Guillem
Browse files
configure.ac: add HAVE_TIZEN
The minimum SDK version supported is 2.3.
parent
456ec97f
Changes
1
Hide whitespace changes
Inline
Side-by-side
configure.ac
View file @
ea4515b3
...
...
@@ -336,6 +336,24 @@ AS_IF([test "$SYS" = linux],[
])
AM_CONDITIONAL(HAVE_ANDROID, test "${HAVE_ANDROID}" = "1")
dnl Tizen (minimum SDK version: 2.3)
AS_IF([test "$SYS" = linux],[
AC_MSG_CHECKING([for Tizen])
AC_TRY_COMPILE([#include <tizen.h>
#if !defined(TIZEN_SDK_MAJOR) && !defined(TIZEN_SDK_MINOR)
# error Not Tizen
#endif
#if TIZEN_SDK_MAJOR < 2 || (TIZEN_SDK_MAJOR == 2 && TIZEN_SDK_MINOR < 3)
# error Tizen SDK too old
#endif
],[],[
HAVE_TIZEN="1"
AC_MSG_RESULT([yes])
],[
AC_MSG_RESULT([no])
])
])
AM_CONDITIONAL(HAVE_TIZEN, test "${HAVE_TIZEN}" = "1")
dnl
dnl Check for the contrib directory
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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