- (djm) Bug #467: Add a --disable-strip option to turn off stripping of
   installed binaries. From mdev@idg.nl
diff --git a/configure.ac b/configure.ac
index 54aad37..3054a43 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
-# $Id: configure.ac,v 1.99 2003/01/12 23:04:59 djm Exp $
+# $Id: configure.ac,v 1.100 2003/01/13 05:55:23 djm Exp $
 
 AC_INIT
 AC_CONFIG_SRCDIR([ssh.c])
@@ -1938,6 +1938,17 @@
 	]
 )
 
+STRIP_OPT=-s
+AC_ARG_ENABLE(strip,
+	[  --disable-strip         Disable calling strip(1) on install],
+	[
+		if test "x$enableval" = "xno" ; then
+			STRIP_OPT=
+		fi
+	]
+)
+AC_SUBST(STRIP_OPT)
+
 if test -z "$xauth_path" ; then
 	XAUTH_PATH="undefined"
 	AC_SUBST(XAUTH_PATH)