From: Bruce Momjian Date: Wed, 16 May 2001 17:24:10 +0000 (+0000) Subject: The configure.in file erraneous assumes that FreeBSD 1.x and 2.x have X-Git-Tag: REL7_2_BETA1~1263 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=94e2d98dd68d4b7511c893527c2ef1838c8a1e96;p=postgresql The configure.in file erraneous assumes that FreeBSD 1.x and 2.x have ELF capability. While this is true to some extent, this assumption makes it impossible to compile PostgreSQL 7.1 and 7.2devel without the --disable-shared switch during configuration. Trond Endrest --- diff --git a/configure.in b/configure.in index aba7971c3d..287b4029a4 100644 --- a/configure.in +++ b/configure.in @@ -553,7 +553,8 @@ AC_SUBST([odbcinst_ini_dir]) # Assume system is ELF if it predefines __ELF__ as 1, # otherwise believe host_os based default. case $host_os in - freebsd1*|freebsd2*) elf=yes;; + freebsd1*|freebsd2*) elf=no;; + freebsd3*|freebsd4*) elf=yes;; esac AC_EGREP_CPP(yes,