Opened 17 years ago
Closed 17 years ago
#2249 closed defect (fixed)
Adding MS_CURRENT besides MS_BASE in the Windows builds
Reported by: | tamas | Owned by: | tamas |
---|---|---|---|
Priority: | normal | Milestone: | 5.0 release |
Component: | MapServer C Library | Version: | 5.0 |
Severity: | normal | Keywords: | |
Cc: | hobu |
Description
In order to add the mapscript python build steps to the buildbot we should separate the mapserver build directory and the base directory for the libraries. I would suggest adding MS_CURRENT as:
!IFNDEF MS_CURRENT MS_CURRENT = $(MS_BASE) !ENDIF
And mapscriptvars would use MS_CURRENT instead of MS_BASE like:
mapscriptvars: makefile.vc nmake.opt
-del mapscriptvars echo $(MS_CURRENT) > mapscriptvars echo $(MS_DEFS) -DWIN32 -D_WIN32 >> mapscriptvars echo $(INCLUDES) >> mapscriptvars echo $(LIBS_DLL) >> mapscriptvars echo $(LIBS) >> mapscriptvars findstr MS_VERSION mapserver.h | findstr define >> mapscriptvars
Applied in the trunk