diff options
author | Hennes Rohling <hro@openoffice.org> | 2002-08-15 09:49:09 +0000 |
---|---|---|
committer | Hennes Rohling <hro@openoffice.org> | 2002-08-15 09:49:09 +0000 |
commit | 1467ba4f0bf211a1ecab4ecbedd0f634801b35d7 (patch) | |
tree | fc7a70ba0d4740e13e1eaf5e56e138120fd755aa /dtrans | |
parent | 4ac87d0470cb18a41d03c3b0c60ca8fbec3be925 (diff) |
#91296# Only link against Unicows on Windows
Diffstat (limited to 'dtrans')
-rw-r--r-- | dtrans/util/makefile.mk | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/dtrans/util/makefile.mk b/dtrans/util/makefile.mk index 67afae2f33fe..109446f34d84 100644 --- a/dtrans/util/makefile.mk +++ b/dtrans/util/makefile.mk @@ -2,9 +2,9 @@ # # $RCSfile: makefile.mk,v $ # -# $Revision: 1.7 $ +# $Revision: 1.8 $ # -# last change: $Author: hro $ $Date: 2002-08-14 14:43:03 $ +# last change: $Author: hro $ $Date: 2002-08-15 10:49:09 $ # # The Contents of this file are made available subject to the terms of # either of the following licenses @@ -83,9 +83,13 @@ SHL1LIBS=$(SLB)$/mcnttype.lib SHL1STDLIBS= \ $(SALLIB) \ $(CPPULIB) \ - $(CPPUHELPERLIB) \ + $(CPPUHELPERLIB) + +.IF "$(GUI)"=="WNT" +SHL1STDLIBS+= \ uwinapi.lib \ unicows.lib +.ENDIF |