[FFmpeg-cvslog] r24060 - trunk/configure
mru
subversion
Mon Jul 5 19:31:18 CEST 2010
Author: mru
Date: Mon Jul 5 19:31:18 2010
New Revision: 24060
Log:
configure: simplify some OS-specific flag setting
Modified:
trunk/configure
Modified: trunk/configure
==============================================================================
--- trunk/configure Mon Jul 5 18:46:00 2010 (r24059)
+++ trunk/configure Mon Jul 5 19:31:18 2010 (r24060)
@@ -2114,7 +2114,7 @@ case $target_os in
enable malloc_aligned
;;
bsd/os)
- osextralibs="-lpoll -lgnugetopt"
+ add_extralibs -lpoll -lgnugetopt
strip="strip -d"
;;
darwin)
@@ -2123,7 +2123,7 @@ case $target_os in
enabled ppc && add_asflags -force_cpusubtype_ALL
SHFLAGS='-dynamiclib -Wl,-single_module -Wl,-install_name,$(SHLIBDIR)/$(SLIBNAME),-current_version,$(LIBVERSION),-compatibility_version,$(LIBMAJOR) -Wl,-read_only_relocs,suppress'
strip="${strip} -x"
- FFLDFLAGS="-Wl,-dynamic,-search_paths_first"
+ add_ldflags -Wl,-dynamic,-search_paths_first
SLIBSUF=".dylib"
SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME).$(LIBVERSION)$(SLIBSUF)'
SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME).$(LIBMAJOR)$(SLIBSUF)'
@@ -2199,7 +2199,7 @@ case $target_os in
os/2*)
strip="lxlite"
ln_s="cp -f"
- FFLDFLAGS="-Zomf -Zbin-files -Zargs-wild -Zmap"
+ add_ldflags -Zomf -Zbin-files -Zargs-wild -Zmap
SHFLAGS='$(SUBDIR)$(NAME).def -Zdll -Zomf'
FFSERVERLDFLAGS=""
LIBSUF="_s.a"
@@ -2234,11 +2234,6 @@ check_cpp_condition stdlib.h "defined(__
set_default $PATHS_LIST
-add_extralibs $osextralibs
-
-# Combine FFLDFLAGS and the LDFLAGS environment variable.
-LDFLAGS="$FFLDFLAGS $LDFLAGS"
-
# we need to build at least one lib type
if ! enabled_any static shared; then
cat <<EOF
More information about the ffmpeg-cvslog
mailing list