Commit 915351e9 authored by Peter Eisentraut's avatar Peter Eisentraut

Add support for GNU/Hurd and GNU/*BSD. For our purposes, they behave just

like Linux; we just need to recognize the system types.
parent 24cfc140
...@@ -1391,7 +1391,8 @@ case $host_os in ...@@ -1391,7 +1391,8 @@ case $host_os in
freebsd*) template=freebsd ;; freebsd*) template=freebsd ;;
hpux*) template=hpux ;; hpux*) template=hpux ;;
irix*) template=irix ;; irix*) template=irix ;;
linux*) template=linux ;; linux*|gnu*|k*bsd*-gnu)
template=linux ;;
mingw*) template=win32 ;; mingw*) template=win32 ;;
netbsd*) template=netbsd ;; netbsd*) template=netbsd ;;
nextstep*) template=nextstep ;; nextstep*) template=nextstep ;;
......
dnl Process this file with autoconf to produce a configure script. dnl Process this file with autoconf to produce a configure script.
dnl $PostgreSQL: pgsql/configure.in,v 1.376 2004/09/10 13:53:40 momjian Exp $ dnl $PostgreSQL: pgsql/configure.in,v 1.377 2004/09/17 22:31:59 petere Exp $
dnl dnl
dnl Developers, please strive to achieve this order: dnl Developers, please strive to achieve this order:
dnl dnl
...@@ -57,7 +57,8 @@ case $host_os in ...@@ -57,7 +57,8 @@ case $host_os in
freebsd*) template=freebsd ;; freebsd*) template=freebsd ;;
hpux*) template=hpux ;; hpux*) template=hpux ;;
irix*) template=irix ;; irix*) template=irix ;;
linux*) template=linux ;; linux*|gnu*|k*bsd*-gnu)
template=linux ;;
mingw*) template=win32 ;; mingw*) template=win32 ;;
netbsd*) template=netbsd ;; netbsd*) template=netbsd ;;
nextstep*) template=nextstep ;; nextstep*) template=nextstep ;;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment