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:
authorDiego Biurrun <diego@biurrun.de>2016-05-24 03:18:40 +0300
committerDiego Biurrun <diego@biurrun.de>2016-05-29 17:43:11 +0300
commit535a742c2695a9e0c586b50d7fa76e318232ff24 (patch)
tree8358ee5075109fc8725e072dbf82e06774013b51 /libswscale/libswscale.v
parent5b1b495c8d21600eac694d50f428654a3125e217 (diff)
build: Change structure of the linker version script templates
Split version files into one line per symbol/directive to allow compatibility with the Solaris linker without preprocessing and eliminate $ from version file templates to simplify the postprocessing shell command.
Diffstat (limited to 'libswscale/libswscale.v')
-rw-r--r--libswscale/libswscale.v9
1 files changed, 6 insertions, 3 deletions
diff --git a/libswscale/libswscale.v b/libswscale/libswscale.v
index 8b9a96ae66..96170a16a0 100644
--- a/libswscale/libswscale.v
+++ b/libswscale/libswscale.v
@@ -1,4 +1,7 @@
-LIBSWSCALE_$MAJOR {
- global: swscale_*; sws_*;
- local: *;
+LIBSWSCALE_MAJOR {
+ global:
+ swscale_*;
+ sws_*;
+ local:
+ *;
};