mirror of
https://github.com/postgres/postgres.git
synced 2025-07-30 11:03:19 +03:00
Update Makefile dependencies for Win32 timezones, per Claudio.
This commit is contained in:
11
configure.in
11
configure.in
@ -1,5 +1,5 @@
|
||||
dnl Process this file with autoconf to produce a configure script.
|
||||
dnl $PostgreSQL: pgsql/configure.in,v 1.349 2004/05/17 19:14:47 momjian Exp $
|
||||
dnl $PostgreSQL: pgsql/configure.in,v 1.350 2004/05/18 04:10:30 momjian Exp $
|
||||
dnl
|
||||
dnl Developers, please strive to achieve this order:
|
||||
dnl
|
||||
@ -1236,16 +1236,15 @@ AC_CONFIG_LINKS([
|
||||
src/Makefile.port:src/makefiles/Makefile.${template}
|
||||
])
|
||||
|
||||
case $host_os in mingw*)
|
||||
AC_OUTPUT_COMMANDS([
|
||||
case $host_os in mingw*);;
|
||||
*)
|
||||
AC_CONFIG_COMMANDS([check_win32_symlinks],[
|
||||
# Links sometimes fail undetected on Mingw -
|
||||
# so here we detect it and warn the user
|
||||
for FILE in "$CONFIG_LINKS"
|
||||
do
|
||||
# test -e works for symlinks in the MinGW console
|
||||
# We can't call AC_MSG_WARN from here, so we expand it
|
||||
test -e `expr "$FILE" : '\(^:*\)'` || { echo "$as_me:$LINENO: WARNING: *** link for $FILE - please fix by hand" >&5
|
||||
echo "$as_me: WARNING: *** link for $FILE - please fix by hand" >&2;}
|
||||
test -e `expr "$FILE" : '\(^:*\)'` || AC_MSG_WARN([*** link for $FILE - please fix by hand])
|
||||
done
|
||||
])
|
||||
;;
|
||||
|
Reference in New Issue
Block a user