diff options
author | Remi Collet <remi@remirepo.net> | 2023-01-13 11:58:44 +0100 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2023-01-13 11:58:44 +0100 |
commit | 84f72791a332687bcf414e3c0617d2d4a8bbbfac (patch) | |
tree | 2ef05e2bc2f4a37cd120a444eca3ffeb13501823 | |
parent | 49a91fd43b222abbe2ac0edd5532f6545500f0c1 (diff) |
add option to enable proxy (broken for now)
-rw-r--r-- | memcached.spec | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/memcached.spec b/memcached.spec index db37c7c..703c5c1 100644 --- a/memcached.spec +++ b/memcached.spec @@ -15,6 +15,8 @@ %bcond_without sasl %bcond_without sasl_pwdb %bcond_with seccomp +# Experimental and not ready +%bcond_with proxy %if 0%{?fedora} >= 28 || 0%{?rhel} >= 8 %bcond_without tls %else @@ -145,6 +147,9 @@ access to the memcached binary include files. %if %{with seccomp} --enable-seccomp \ %endif +%if %{with proxy} + --enable-proxy \ +%endif %if %{with tls} --enable-tls \ %endif |