Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2011-01-25 11:48:38 +0300
committerMartin Storsjö <martin@martin.st>2011-03-31 16:38:58 +0400
commit1c69c79f2b11627cb50f1bc571de97ad8cbfefb7 (patch)
tree4f22f48f0b821a93cd797065a59d39b5ded2096e /configure
parent7087ce08c84dd20404ba258096530cc547d25c15 (diff)
configure: Initial support for --target-os=symbian
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure7
1 files changed, 6 insertions, 1 deletions
diff --git a/configure b/configure
index fab4f2b2fc..dbcada5385 100755
--- a/configure
+++ b/configure
@@ -1822,7 +1822,7 @@ set_default host_cc
exesuf() {
case $1 in
- mingw32*|cygwin*|*-dos|freedos|opendos|os/2*) echo .exe ;;
+ mingw32*|cygwin*|*-dos|freedos|opendos|os/2*|symbian) echo .exe ;;
esac
}
@@ -2480,6 +2480,11 @@ case $target_os in
add_cppflags -D_QNX_SOURCE
network_extralibs="-lsocket"
;;
+ symbian)
+ SLIBSUF=".dll"
+ enable dos_paths
+ add_cflags --include=$sysinclude/gcce/gcce.h
+ ;;
none)
;;
*)