Skip to content

Commit

Permalink
Fixing compiler defines for win32.
Browse files Browse the repository at this point in the history
Win32 does not have a 64 bit 'long it'
  • Loading branch information
ssinger committed Aug 26, 2011
1 parent 9d6db2e commit ffbb956
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend/win32.mak
Expand Up @@ -4,7 +4,7 @@ LINK32=link.exe
LINK32_FLAGS= /PDB:slony1_funcs.pdb /DEF:slony1_funcs.def /DLL $(PG_LIB)\postgres.lib
OBJS = slony1_funcs.obj \

CPP_FLAGS=/c /D MSVC /D WIN32 /D PGSHARE=\"$(PGSHARE)\" /I..\misc /I..\..\ /I$(PG_INC) /I$(PG_INC)\server /I$(PG_INC)\server\port\win32_msvc /I$(PG_INC)\server\port\win32 /D HAVE_LONG_INT_64 /D HAVE_GETACTIVESNAPSHOT /LD /Gd /Tc
CPP_FLAGS=/c /D MSVC /D WIN32 /D PGSHARE=\"$(PGSHARE)\" /I..\misc /I..\..\ /I$(PG_INC) /I$(PG_INC)\server /I$(PG_INC)\server\port\win32_msvc /I$(PG_INC)\server\port\win32 /D HAVE_LL_CONSTANTS=1 /D HAVE_GETACTIVESNAPSHOT /LD /Gd /Tc

slony1_funcs.obj: slony1_funcs.c
$(CPP) $(CPP_FLAGS) slony1_funcs.c
Expand Down

0 comments on commit ffbb956

Please sign in to comment.