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
15716694
Commit
15716694
authored
Mar 24, 2003
by
Eric Petit
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
configure.ac.in: fixed a BeOS compile issue
parent
e56522ec
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
7 deletions
+11
-7
configure.ac.in
configure.ac.in
+11
-7
No files found.
configure.ac.in
View file @
15716694
...
@@ -154,7 +154,7 @@ case "x${target_os}" in
...
@@ -154,7 +154,7 @@ case "x${target_os}" in
LDFLAGS_vlc="${LDFLAGS_vlc} -lbe"
LDFLAGS_vlc="${LDFLAGS_vlc} -lbe"
LDFLAGS_plugins="${LDFLAGS_plugins} -nostart"
LDFLAGS_plugins="${LDFLAGS_plugins} -nostart"
LDFLAGS_beos="${LDFLAGS_beos} -lbe -lmedia -lroot -ltracker -lstdc++.r4 -ltranslation"
LDFLAGS_beos="${LDFLAGS_beos} -lbe -lmedia -lroot -ltracker -lstdc++.r4 -ltranslation"
dnl BONE or not BONE ?
dnl BONE or not BONE ?
only BONE has libbind.so
AC_CHECK_LIB( bind, inet_ntoa,
AC_CHECK_LIB( bind, inet_ntoa,
[ LDFLAGS_access_mms="${LDFLAGS_access_mms} -lbind"
[ LDFLAGS_access_mms="${LDFLAGS_access_mms} -lbind"
LDFLAGS_ipv4="${LDFLAGS_ipv4} -lbind"
LDFLAGS_ipv4="${LDFLAGS_ipv4} -lbind"
...
@@ -681,12 +681,16 @@ if test "x${ac_cv_c_fast_math}" != "xno"; then
...
@@ -681,12 +681,16 @@ if test "x${ac_cv_c_fast_math}" != "xno"; then
fi
fi
dnl Check for -funroll-loops
dnl Check for -funroll-loops
AC_CACHE_CHECK([if \$CC accepts -funroll-loops],
dnl Disabled on BeOS because BeOS' gcc is buggy and may crash with it
[ac_cv_c_unroll_loops],
if test "x${SYS}" != "xbeos"
[CFLAGS="${CFLAGS_save} -funroll-loops"
then
AC_TRY_COMPILE([],,ac_cv_c_unroll_loops=yes, ac_cv_c_unroll_loops=no)])
AC_CACHE_CHECK([if \$CC accepts -funroll-loops],
if test "x${ac_cv_c_unroll_loops}" != "xno"; then
[ac_cv_c_unroll_loops],
CFLAGS_OPTIM="${CFLAGS_OPTIM} -funroll-loops"
[CFLAGS="${CFLAGS_save} -funroll-loops"
AC_TRY_COMPILE([],,ac_cv_c_unroll_loops=yes, ac_cv_c_unroll_loops=no)])
if test "x${ac_cv_c_unroll_loops}" != "xno"; then
CFLAGS_OPTIM="${CFLAGS_OPTIM} -funroll-loops"
fi
fi
fi
dnl Check for -fomit-frame-pointer
dnl Check for -fomit-frame-pointer
...
...
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