diff options
| author | Bernd Kuhls <bernd.kuhls@t-online.de> | 2017-09-13 12:18:23 +0200 |
|---|---|---|
| committer | Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> | 2017-09-24 13:13:05 +0200 |
| commit | f4573ea5d8f566d9d6de8013fc72f3d844702724 (patch) | |
| tree | dc954f8bccc0bf8ab0546b3e505867c69927aae7 | |
| parent | 1e5a8916b2ab4c9c99548fa6fbd4855eee323881 (diff) | |
| download | buildroot-f4573ea5d8f566d9d6de8013fc72f3d844702724.tar.gz buildroot-f4573ea5d8f566d9d6de8013fc72f3d844702724.zip | |
package/librsync: not available in static builds
Upstream only supports shared builds:
https://github.com/librsync/librsync/blob/master/CMakeLists.txt#L319
Fixes
http://autobuild.buildroot.net/results/4b8/4b8db2d520373d0c9127e0d7695b5aeda6925dc5/
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
| -rw-r--r-- | package/librsync/Config.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/package/librsync/Config.in b/package/librsync/Config.in index 652f0cb276..6957ddcc0e 100644 --- a/package/librsync/Config.in +++ b/package/librsync/Config.in @@ -1,5 +1,6 @@ config BR2_PACKAGE_LIBRSYNC bool "librsync" + depends on !BR2_STATIC_LIBS select BR2_PACKAGE_ZLIB select BR2_PACKAGE_BZIP2 select BR2_PACKAGE_POPT @@ -9,3 +10,6 @@ config BR2_PACKAGE_LIBRSYNC rsync utility and is used in rproxy. https://github.com/librsync/librsync + +comment "librsync needs a toolchain w/ dynamic library support" + depends on BR2_STATIC_LIBS |

