summaryrefslogtreecommitdiff
path: root/freefilesync
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2019-02-18 16:06:36 -0500
committerB Stack <bgstack15@gmail.com>2019-02-18 16:06:36 -0500
commitd1870fc18e376333d9095ba55406444d8bc0b163 (patch)
treef0b80d112df9b2905e27304819a680b4529a772f /freefilesync
parentWIP: FreeFileSync on CentOS 7, part 1 (diff)
downloadstackrpms-d1870fc18e376333d9095ba55406444d8bc0b163.tar.gz
stackrpms-d1870fc18e376333d9095ba55406444d8bc0b163.tar.bz2
stackrpms-d1870fc18e376333d9095ba55406444d8bc0b163.zip
WIP: ffs for el7 and fc28 from one spec
The el7 version depends on the copr bgstack15/FreeFileSync and the fc28 version should be the same as before, but will need to actually be tested.
Diffstat (limited to 'freefilesync')
-rw-r--r--freefilesync/freefilesync.spec6
1 files changed, 5 insertions, 1 deletions
diff --git a/freefilesync/freefilesync.spec b/freefilesync/freefilesync.spec
index 6d4caf9..2c3a2e5 100644
--- a/freefilesync/freefilesync.spec
+++ b/freefilesync/freefilesync.spec
@@ -44,10 +44,14 @@ BuildRequires: pkgconfig(libselinux)
BuildRequires: pkgconfig(zlib)
BuildRequires: libcurl-devel %{min_libcurl}
BuildRequires: libssh2-devel %{min_libssh2}
-BuildRequires: openssl-devel %{min_openssl}
%if 0%{?el6}%{?el7}
BuildRequires: wxGTK-devel
BuildRequires: %{scl_buildreq}
+BuildRequires: openssl-%{name}-devel %{min_openssl}
+Requires: openssl-%{name}-libs %{min_openssl}
+%else
+BuildRequires: openssl-devel
+Build
%endif
Requires: hicolor-icon-theme
Requires: xdg-utils
bgstack15