diff options
author | Marc G. Fournier <scrappy@hub.org> | 1997-02-07 17:49:50 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1997-02-07 17:49:50 +0000 |
commit | 37e7e77c3354bcf84efdad242437db34cb12ba53 (patch) | |
tree | 610b372667301efcf2a2809f03b44352095f3a4d | |
parent | 2300ac0dc4fc5702a6a693fdd769be8784314882 (diff) | |
download | postgresql-37e7e77c3354bcf84efdad242437db34cb12ba53.tar.gz postgresql-37e7e77c3354bcf84efdad242437db34cb12ba53.zip |
Add in netbsd*) to configure
Pointed out by D'Arcy
-rwxr-xr-x | src/configure | 2 | ||||
-rw-r--r-- | src/configure.in | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/configure b/src/configure index cf4a326429f..825dad34d92 100755 --- a/src/configure +++ b/src/configure @@ -572,7 +572,7 @@ case "$host_os" in esac ;; linux*) PORTNAME='linux' ;; bsdi*) PORTNAME='bsdi' ;; - freebsd*) PORTNAME='BSD44_derived' ;; + freebsd*|netbsd*) PORTNAME='BSD44_derived' ;; dgux*) PORTNAME='dgux';; aix*) PORTNAME='aix';; nextstep*) PORTNAME='nextstep';; diff --git a/src/configure.in b/src/configure.in index 58d3ae4d836..0ebfdba4841 100644 --- a/src/configure.in +++ b/src/configure.in @@ -9,7 +9,7 @@ case "$host_os" in esac ;; linux*) PORTNAME='linux' ;; bsdi*) PORTNAME='bsdi' ;; - freebsd*) PORTNAME='BSD44_derived' ;; + freebsd*|netbsd*) PORTNAME='BSD44_derived' ;; dgux*) PORTNAME='dgux';; aix*) PORTNAME='aix';; nextstep*) PORTNAME='nextstep';; |