summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2007-06-12 05:03:55 +0000
committerOliver Bolte <obo@openoffice.org>2007-06-12 05:03:55 +0000
commit8269c9339a79c89dac53b93d460a0466502a1687 (patch)
treeca15b059640cd92a0cf91379f7cd7082a7428a07
parent2ccbac69a33c8145d7887b8795c9006da6796778 (diff)
INTEGRATION: CWS dmake48 (1.7.2); FILE MERGED
2007/04/24 17:42:28 vq 1.7.2.2: #i73700# Release dmake 4.8. 2007/03/23 20:40:39 vq 1.7.2.1: #i73499# Add documentation and testcase.
-rwxr-xr-xdmake/NEWS27
1 files changed, 27 insertions, 0 deletions
diff --git a/dmake/NEWS b/dmake/NEWS
index b628c1f3a319..05b669dfb6fc 100755
--- a/dmake/NEWS
+++ b/dmake/NEWS
@@ -2,6 +2,33 @@ News file for the dmake version that is hosted on the OpenOffice.org
cvs. #i<number># denote issues tracked by the OpenOffice.org issue tracking
system, see <http://qa.openoffice.org/issue_handling/project_issues.html>.
+Version 4.8
+===========
+
+Volker Quetschke (vq@openoffice.org)
+#i73499# Add new .WINPATH attribute to generate Windows style paths (with
+regular slashes) instead of the default cygwin style (POSIX) paths for
+dmake's dynamic macros.
+
+This attribute is specific for cygwin dmake executables and non-cygwin
+environments ignore this attribute. This feature can be used to create DOS
+style path parameters for native W32 programs from dynamic macros.
+
+The windows style paths use regular slashes ('/') instead of the usual
+windows backslash ('\') as directory separator to avoid quoting problems
+(It still is a cygwin dmake feature!) and cygwin as well as native windows
+programs should have no problems using this (c:/foo/bar) path
+representation.
+
+The affected macros are $@, $*, $>, $?, $<, $&, $^ and $(PWD), $(MAKEDIR)
+and $(TMD).
+
+Examples:
+ Content of $(PWD) without .WINPATH (default): /cygdrive/c/temp
+
+ Content of $(PWD) with .WINPATH set: c:/temp
+
+
Version 4.7
===========