diff options
author | Sebastian Dröge <sebastian@centricular.com> | 2016-08-25 14:06:21 +0300 |
---|---|---|
committer | Sebastian Dröge <sebastian@centricular.com> | 2016-08-25 14:06:21 +0300 |
commit | 420637a01eeb99c38af47865553ccbd22bca4050 (patch) | |
tree | e0694a6b56a13819ce98a762f31a97589f6e372e /recipes/libsrtp.recipe | |
parent | 8585dcde12bdcf395a0f1717cc60574681013b3a (diff) |
Revert "LibtoolLibrary: Auto-detect libraries and versions"
This reverts commit 40779ea8eb0ead12ad8de19021adc94d272f3d7a.
It only works on Linux right now and was not meant to be merged yet.
Diffstat (limited to 'recipes/libsrtp.recipe')
-rw-r--r-- | recipes/libsrtp.recipe | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/recipes/libsrtp.recipe b/recipes/libsrtp.recipe index 02008c98..91013a71 100644 --- a/recipes/libsrtp.recipe +++ b/recipes/libsrtp.recipe @@ -27,6 +27,7 @@ class Recipe(recipe.Recipe): shutil.copy(os.path.join(self.build_dir, 'srtp.def'), libdir) def post_install(self): - libtool_la = LibtoolLibrary('srtp', self.config.libdir, + # XXX: Don't forget to keep this in sync with the library version! + libtool_la = LibtoolLibrary('srtp', 1, None, None, self.config.libdir, self.config.target_platform) libtool_la.save() |