diff options
| author | Tom Lane <tgl@sss.pgh.pa.us> | 2004-10-22 22:33:58 +0000 |
|---|---|---|
| committer | Tom Lane <tgl@sss.pgh.pa.us> | 2004-10-22 22:33:58 +0000 |
| commit | 6e3cc2029d796f8c12be4da06c3fba7dc298098a (patch) | |
| tree | eb1ecb49cc1d2cc3eb87fb2fc221e1cea412fdfb /src/makefiles/Makefile.win32 | |
| parent | 521408a56f29d3331ca4b29660be339a5135044e (diff) | |
| download | postgresql-6e3cc2029d796f8c12be4da06c3fba7dc298098a.tar.gz | |
Fix tsearch build problems.
Magnus Hagander
Diffstat (limited to 'src/makefiles/Makefile.win32')
| -rw-r--r-- | src/makefiles/Makefile.win32 | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/makefiles/Makefile.win32 b/src/makefiles/Makefile.win32 index f4652489b6..5cf543d309 100644 --- a/src/makefiles/Makefile.win32 +++ b/src/makefiles/Makefile.win32 @@ -1,4 +1,4 @@ -# $PostgreSQL: pgsql/src/makefiles/Makefile.win32,v 1.3 2003/11/29 19:52:12 pgsql Exp $ +# $PostgreSQL: pgsql/src/makefiles/Makefile.win32,v 1.4 2004/10/22 22:33:58 tgl Exp $ # Use replacement include files for those missing on Win32 override CPPFLAGS+="-I$(top_srcdir)/src/include/port/win32" @@ -23,6 +23,10 @@ override CPPFLAGS+= -DBUILDING_DLL endif endif +ifneq (,$(findstring timezone,$(subdir))) +override CPPFLAGS+= -DBUILDING_DLL +endif + ifneq (,$(findstring ecpg/lib,$(subdir))) override CPPFLAGS+= -DBUILDING_DLL endif |
