summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthieu Bouron <matthieu.bouron@stupeflix.com>2016-06-27 17:51:57 +0200
committerMatthieu Bouron <matthieu.bouron@stupeflix.com>2016-06-27 17:56:47 +0200
commit0acc170aad995012da9610063b1f39e8f10eccf8 (patch)
treec8060235797f6cdbd8171d50c2746b4312695652
parentd9561718135a6eba8c781fa248679d9280030a0c (diff)
parent535a742c2695a9e0c586b50d7fa76e318232ff24 (diff)
downloadffmpeg-streaming-0acc170aad995012da9610063b1f39e8f10eccf8.zip
ffmpeg-streaming-0acc170aad995012da9610063b1f39e8f10eccf8.tar.gz
Merge commit '535a742c2695a9e0c586b50d7fa76e318232ff24'
* commit '535a742c2695a9e0c586b50d7fa76e318232ff24': build: Change structure of the linker version script templates Merged-by: Matthieu Bouron <matthieu.bouron@stupeflix.com>
-rw-r--r--common.mak4
-rw-r--r--libavcodec/libavcodec.v14
-rw-r--r--libavdevice/libavdevice.v9
-rw-r--r--libavfilter/libavfilter.v9
-rw-r--r--libavformat/libavformat.v34
-rw-r--r--libavresample/libavresample.v8
-rw-r--r--libavutil/libavutil.v8
-rw-r--r--libpostproc/libpostproc.v9
-rw-r--r--libswresample/libswresample.v9
-rw-r--r--libswscale/libswscale.v9
10 files changed, 67 insertions, 46 deletions
diff --git a/common.mak b/common.mak
index 5eec8cc..fbe57d5 100644
--- a/common.mak
+++ b/common.mak
@@ -84,9 +84,7 @@ COMPILE_HOSTC = $(call COMPILE,HOSTCC)
$(Q)echo '#include "$*.h"' >$@
%.ver: %.v
- $(M)sed 's/$$MAJOR/$($(basename $(@F))_VERSION_MAJOR)/' $^ | sed -e 's/:/:\
-/' -e 's/; /;\
-/g' > $@
+ $(M)sed 's/MAJOR/$($(basename $(@F))_VERSION_MAJOR)/' $^ > $@
%.c %.h %.ver: TAG = GEN
diff --git a/libavcodec/libavcodec.v b/libavcodec/libavcodec.v
index c923cd3..304c2ef 100644
--- a/libavcodec/libavcodec.v
+++ b/libavcodec/libavcodec.v
@@ -1,7 +1,9 @@
-LIBAVCODEC_$MAJOR {
- global: av*;
- #deprecated, remove after next bump
- audio_resample;
- audio_resample_close;
- local: *;
+LIBAVCODEC_MAJOR {
+ global:
+ av*;
+ #deprecated, remove after next bump
+ audio_resample;
+ audio_resample_close;
+ local:
+ *;
};
diff --git a/libavdevice/libavdevice.v b/libavdevice/libavdevice.v
index de7278c..9761617 100644
--- a/libavdevice/libavdevice.v
+++ b/libavdevice/libavdevice.v
@@ -1,4 +1,7 @@
-LIBAVDEVICE_$MAJOR {
- global: avdevice_*; av_*;
- local: *;
+LIBAVDEVICE_MAJOR {
+ global:
+ avdevice_*;
+ av_*;
+ local:
+ *;
};
diff --git a/libavfilter/libavfilter.v b/libavfilter/libavfilter.v
index 83e8887..6518e5f 100644
--- a/libavfilter/libavfilter.v
+++ b/libavfilter/libavfilter.v
@@ -1,4 +1,7 @@
-LIBAVFILTER_$MAJOR {
- global: avfilter_*; av_*;
- local: *;
+LIBAVFILTER_MAJOR {
+ global:
+ avfilter_*;
+ av_*;
+ local:
+ *;
};
diff --git a/libavformat/libavformat.v b/libavformat/libavformat.v
index a00a309..c961cd8 100644
--- a/libavformat/libavformat.v
+++ b/libavformat/libavformat.v
@@ -1,17 +1,19 @@
-LIBAVFORMAT_$MAJOR {
- global: av*;
- #FIXME those are for ffserver
- ff_inet_aton;
- ff_socket_nonblock;
- ff_rtsp_parse_line;
- ff_rtp_get_local_rtp_port;
- ff_rtp_get_local_rtcp_port;
- ffio_open_dyn_packet_buf;
- ffio_set_buf_size;
- ffurl_close;
- ffurl_open;
- ffurl_write;
- #those are deprecated, remove on next bump
- url_feof;
- local: *;
+LIBAVFORMAT_MAJOR {
+ global:
+ av*;
+ #FIXME those are for ffserver
+ ff_inet_aton;
+ ff_socket_nonblock;
+ ff_rtsp_parse_line;
+ ff_rtp_get_local_rtp_port;
+ ff_rtp_get_local_rtcp_port;
+ ffio_open_dyn_packet_buf;
+ ffio_set_buf_size;
+ ffurl_close;
+ ffurl_open;
+ ffurl_write;
+ #those are deprecated, remove on next bump
+ url_feof;
+ local:
+ *;
};
diff --git a/libavresample/libavresample.v b/libavresample/libavresample.v
index b8c7c7d..d6fc751 100644
--- a/libavresample/libavresample.v
+++ b/libavresample/libavresample.v
@@ -1,4 +1,6 @@
-LIBAVRESAMPLE_$MAJOR {
- global: av*;
- local: *;
+LIBAVRESAMPLE_MAJOR {
+ global:
+ av*;
+ local:
+ *;
};
diff --git a/libavutil/libavutil.v b/libavutil/libavutil.v
index e9f04cb..fb17058 100644
--- a/libavutil/libavutil.v
+++ b/libavutil/libavutil.v
@@ -1,4 +1,6 @@
-LIBAVUTIL_$MAJOR {
- global: av*;
- local: *;
+LIBAVUTIL_MAJOR {
+ global:
+ av*;
+ local:
+ *;
};
diff --git a/libpostproc/libpostproc.v b/libpostproc/libpostproc.v
index e65d76f..27381c6 100644
--- a/libpostproc/libpostproc.v
+++ b/libpostproc/libpostproc.v
@@ -1,4 +1,7 @@
-LIBPOSTPROC_$MAJOR {
- global: postproc_*; pp_*;
- local: *;
+LIBPOSTPROC_MAJOR {
+ global:
+ postproc_*;
+ pp_*;
+ local:
+ *;
};
diff --git a/libswresample/libswresample.v b/libswresample/libswresample.v
index 0d5efe4..3b3508d 100644
--- a/libswresample/libswresample.v
+++ b/libswresample/libswresample.v
@@ -1,4 +1,7 @@
-LIBSWRESAMPLE_$MAJOR {
- global: swr_*; swresample_*;
- local: *;
+LIBSWRESAMPLE_MAJOR {
+ global:
+ swr_*;
+ swresample_*;
+ local:
+ *;
};
diff --git a/libswscale/libswscale.v b/libswscale/libswscale.v
index 8b9a96a..96170a1 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:
+ *;
};
OpenPOWER on IntegriCloud