From: Peter Eisentraut Date: Wed, 2 Mar 2011 19:15:28 +0000 (+0200) Subject: Support for DragonFly BSD X-Git-Tag: REL9_1_ALPHA4~73 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6094c242d1ee40a08f3138811425d7540e8269e4;p=postgresql 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" --- diff --git a/configure b/configure index 0bddb5faad..69c7418f38 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 6aae5049a6..3c4089f38e 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 ;;