diff options
author | Francois Tigeot <ftigeot@wolfpond.org> | 2014-01-25 17:56:23 +0100 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2014-01-25 18:07:58 +0100 |
commit | 043838c57b53432d5b14cbb32e46f06b2f9b5fb6 (patch) | |
tree | 16433226869d7b65ef836f99f9369eb61792bfb6 | |
parent | 2181ccadc22f3e670b34bc531e7e8a7d33731a95 (diff) |
Also detect DragonFly as BSD
This fixes the detection of DragonFly as requiring the freebsd NSS
interface flavour.
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index cd776e0..864d5dc 100644 --- a/configure.ac +++ b/configure.ac @@ -505,7 +505,7 @@ then # do the guessing game case "$target_os" in solaris*) with_nss_flavour=solaris ;; - freebsd*) with_nss_flavour=freebsd ;; + freebsd*|dragonfly*) with_nss_flavour=freebsd ;; *) with_nss_flavour=glibc ;; esac fi |