Skip to content
Snippets Groups Projects
Commit 7d6f37b8 authored by Bruce Momjian's avatar Bruce Momjian
Browse files

Enable use of our own timezone library for Win32.

parent 4a73eb5a
Branches
Tags
No related merge requests found
...@@ -12012,7 +12012,12 @@ LIBOBJS="$LIBOBJS copydir.$ac_objext" ...@@ -12012,7 +12012,12 @@ LIBOBJS="$LIBOBJS copydir.$ac_objext"
LIBOBJS="$LIBOBJS gettimeofday.$ac_objext" LIBOBJS="$LIBOBJS gettimeofday.$ac_objext"
LIBOBJS="$LIBOBJS open.$ac_objext" LIBOBJS="$LIBOBJS open.$ac_objext"
LIBOBJS="$LIBOBJS pipe.$ac_objext" LIBOBJS="$LIBOBJS pipe.$ac_objext"
LIBOBJS="$LIBOBJS rand.$ac_objext" ;; LIBOBJS="$LIBOBJS rand.$ac_objext"
cat >>confdefs.h <<\_ACEOF
#define PGTZ 1
_ACEOF
;;
esac esac
   
# Win32 can't to rename or unlink on an open file # Win32 can't to rename or unlink on an open file
......
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.339 2004/04/27 20:09:27 momjian Exp $ dnl $PostgreSQL: pgsql/configure.in,v 1.340 2004/04/30 04:18:28 momjian Exp $
dnl dnl
dnl Developers, please strive to achieve this order: dnl Developers, please strive to achieve this order:
dnl dnl
...@@ -893,7 +893,9 @@ AC_LIBOBJ(copydir) ...@@ -893,7 +893,9 @@ AC_LIBOBJ(copydir)
AC_LIBOBJ(gettimeofday) AC_LIBOBJ(gettimeofday)
AC_LIBOBJ(open) AC_LIBOBJ(open)
AC_LIBOBJ(pipe) AC_LIBOBJ(pipe)
AC_LIBOBJ(rand) ;; AC_LIBOBJ(rand)
AC_DEFINE(PGTZ, 1,
[Define to 1 to use our own timezone library]) ;;
esac esac
# Win32 can't to rename or unlink on an open file # Win32 can't to rename or unlink on an open file
......
...@@ -575,6 +575,9 @@ ...@@ -575,6 +575,9 @@
/* Define to the version of this package. */ /* Define to the version of this package. */
#undef PACKAGE_VERSION #undef PACKAGE_VERSION
/* Define to 1 to use our own timezone library */
#undef PGTZ
/* Define to the name of the PostgreSQL service principal in Kerberos. /* Define to the name of the PostgreSQL service principal in Kerberos.
(--with-krb-srvnam=NAME) */ (--with-krb-srvnam=NAME) */
#undef PG_KRB_SRVNAM #undef PG_KRB_SRVNAM
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment