From 6094c242d1ee40a08f3138811425d7540e8269e4 Mon Sep 17 00:00:00 2001
From: Peter Eisentraut <peter_e@gmx.net>
Date: Wed, 2 Mar 2011 21:15:28 +0200
Subject: [PATCH] Support for DragonFly BSD

Mapped to NetBSD, the closest existing match.  (Even though DragonFly
BSD is derived from FreeBSD, the shared library version numbering
matches NetBSD, and the rest is mostly the same among all BSD
variants.)

per "Rumko"
---
 configure    | 1 +
 configure.in | 1 +
 2 files changed, 2 insertions(+)

diff --git a/configure b/configure
index 0bddb5faad7..69c7418f381 100755
--- a/configure
+++ b/configure
@@ -2194,6 +2194,7 @@ case $host_os in
     bsdi*) template=bsdi ;;
   cygwin*) template=cygwin ;;
   darwin*) template=darwin ;;
+dragonfly*) template=netbsd ;;
     dgux*) template=dgux ;;
  freebsd*) template=freebsd ;;
     hpux*) template=hpux ;;
diff --git a/configure.in b/configure.in
index 6aae5049a6b..3c4089f38ef 100644
--- a/configure.in
+++ b/configure.in
@@ -58,6 +58,7 @@ case $host_os in
     bsdi*) template=bsdi ;;
   cygwin*) template=cygwin ;;
   darwin*) template=darwin ;;
+dragonfly*) template=netbsd ;;
     dgux*) template=dgux ;;
  freebsd*) template=freebsd ;;
     hpux*) template=hpux ;;
-- 
GitLab