Changeset 1245
- Timestamp:
- 02/12/07 00:01:05 (2 years ago)
- Files:
-
- trunk/ChangeLog (modified) (1 diff)
- trunk/win32/common-sample (modified) (1 diff)
- trunk/win32/vc-libpqxx.mak.template (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/ChangeLog
r1244 r1245 1 2007-02-11 Jeroen T. Vermeulen <jtv@xs4all.nl> 2 win32/common-sample, win32/vc-libpqxx.mak.template: 3 - Removed quotes to fix problems with spaces, thanks Curran Schiefelbein 4 - Thanks Bart Samwel for confirming 1 5 2007-02-08 Jeroen T. Vermeulen <jtv@xs4all.nl> 2 6 configitems, configure.ac.in: trunk/win32/common-sample
r1057 r1245 49 49 # We should use the libpq libraries that correspond to the source tree whose 50 50 # headers we are including. This ensures that we find all in the same place: 51 LIBPATH1= "$(PGSQLSRC)/interfaces/libpq/Release"52 LIBPATH2= "$(PGSQLSRC)/interfaces/libpq/Debug"51 LIBPATH1=$(PGSQLSRC)/interfaces/libpq/Release 52 LIBPATH2=$(PGSQLSRC)/interfaces/libpq/Debug 53 53 trunk/win32/vc-libpqxx.mak.template
r1237 r1245 65 65 # The options common to all the different builds. 66 66 CXX_FLAGS_BASE=/nologo /W3 /EHsc /FD /GR /c \ 67 /I "include" /I "$(PGSQLSRC)/include" /I "$(PGSQLSRC)/interfaces/libpq"\67 /I "include" /I $(PGSQLSRC)/include /I $(PGSQLSRC)/interfaces/libpq \ 68 68 /D PGSTD=$(STD) /D "WIN32" /D "_MBCS" /D "_WINDOWS" /D "PQXX_INTERNAL" 69 69
