From 9c3e05ded454cb65ad0bccba532353e864554de6 Mon Sep 17 00:00:00 2001
From: Matt Borgerson <contact@mborgerson.com>
Date: Mon, 23 Jan 2023 00:30:40 -0700
Subject: [PATCH] configure: Add back fortify source option

---
 configure | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/configure b/configure
index 6fb1e23f17..a88f43e208 100755
--- a/configure
+++ b/configure
@@ -799,6 +799,10 @@ for opt do
   ;;
   --disable-tsan) tsan="no"
   ;;
+  --disable-fortify-source) fortify_source="no"
+  ;;
+  --enable-fortify-source) fortify_source="yes"
+  ;;
   --disable-tcg) tcg="disabled"
                  plugins="no"
   ;;