Changeset 1245

Show
Ignore:
Timestamp:
02/12/07 00:01:05 (2 years ago)
Author:
jtv
Message:

Fix for spaces in PGSQLSRC, thanks Curran Schiefelbein (and Bart for checking)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/ChangeLog

    r1244 r1245  
     12007-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 
    152007-02-08  Jeroen T. Vermeulen <jtv@xs4all.nl> 
    26 configitems, configure.ac.in: 
  • trunk/win32/common-sample

    r1057 r1245  
    4949# We should use the libpq libraries that correspond to the source tree whose 
    5050# 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" 
     51LIBPATH1=$(PGSQLSRC)/interfaces/libpq/Release 
     52LIBPATH2=$(PGSQLSRC)/interfaces/libpq/Debug 
    5353 
  • trunk/win32/vc-libpqxx.mak.template

    r1237 r1245  
    6565# The options common to all the different builds. 
    6666CXX_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
    6868    /D PGSTD=$(STD) /D "WIN32" /D "_MBCS" /D "_WINDOWS" /D "PQXX_INTERNAL" 
    6969