summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrad Smith <brad@comstyle.com>2014-08-29 01:34:16 -0400
committerMatthieu Herrb <matthieu@herrb.eu>2014-08-30 21:18:44 +0200
commite91faac94e36937c96c04277eae7960bf5132b5b (patch)
tree494ff33804ad55495d3e8c22337d8677cac12642
parent94b002262d27975dabf56c77fd308ebabc894090 (diff)
downloadxorg-app-xinit-e91faac94e36937c96c04277eae7960bf5132b5b.tar.gz
Remove hardcoded path to OpenSSL for OpenBSD
Since xinit's autoconf script was changed to use AC_PATH_PROGS() to find openssl this hardcoded path to openssl can be removed. This was noticed recently when openssl was moved from /usr/sbin to /usr/bin and developers were looking for anything having hardcoded paths. Reviewed-by: Matthieu Herrb <matthieu@herrb.eu>
-rw-r--r--configure.ac3
1 files changed, 0 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index f04b7c1..3e9bd79 100644
--- a/configure.ac
+++ b/configure.ac
@@ -160,9 +160,6 @@ if test "x$MCOOKIE" = x ; then
MCOOKIE="$OPENSSL rand -hex 16"
else
case $host_os in
- *openbsd*)
- MCOOKIE='/usr/sbin/openssl rand -hex 16'
- ;;
*solaris*)
MCOOKIE="/usr/bin/od -X -A n -N 16 /dev/urandom | /usr/bin/tr -d ' '"
;;