1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-31 22:04:40 +03:00

Without this patch I couldn't compile PostgreSQL on Solaris 8 x86 using

Sun's compiler. May be it will be usefull for someone else?

Denis Ustimenko
This commit is contained in:
Bruce Momjian
2001-10-19 15:06:48 +00:00
parent ece1b67f54
commit 2e65523f4f
2 changed files with 5 additions and 5 deletions

View File

@ -116,7 +116,7 @@ AC_LINK_FILES([src/makefiles/Makefile.${template}], [src/Makefile.port])
case $host in
*-*-hpux*) need_tas=yes; tas_file=hpux.s ;;
sparc-*-solaris*) need_tas=yes; tas_file=solaris_sparc.s ;;
i?86-*-solaris) need_tas=yes; tas_file=solaris_i386.s ;;
i?86-*-solaris*) need_tas=yes; tas_file=solaris_i386.s ;;
*) need_tas=no; tas_file=dummy.s ;;
esac
AC_LINK_FILES([src/backend/port/tas/${tas_file}], [src/backend/port/tas.s])