diff options
author | Peter Eisentraut | 2011-03-02 19:15:28 +0000 |
---|---|---|
committer | Peter Eisentraut | 2011-03-02 19:15:28 +0000 |
commit | 6094c242d1ee40a08f3138811425d7540e8269e4 (patch) | |
tree | 91cf46d6b58302924f4487756c4b7e86c874a40c | |
parent | 2f6c8453cf3f38a70adbcb59489630cd5be92570 (diff) |
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"
-rwxr-xr-x | configure | 1 | ||||
-rw-r--r-- | configure.in | 1 |
2 files changed, 2 insertions, 0 deletions
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 ;; |