View | Details | Raw Unified | Return to issue 25832
Collapse All | Expand All

(-)hspellimp.cxx (-3 / +3 lines)
Lines 2-10 Link Here
2
 *
2
 *
3
 *  $RCSfile: hspellimp.cxx,v $
3
 *  $RCSfile: hspellimp.cxx,v $
4
 *
4
 *
5
 *  $Revision: 1.10 $
5
 *  $Revision: 1.11 $
6
 *
6
 *
7
 *  last change: $Author: OOo $ $Date: 2004/02/05 15:05:22 $
7
 *  last change: $Author: OOo $ $Date: 2004/05/12 05:58:51 $
8
 *
8
 *
9
 *  The Contents of this file are made available subject to the terms of
9
 *  The Contents of this file are made available subject to the terms of
10
 *  either of the following licenses
10
 *  either of the following licenses
Lines 239-245 Link Here
239
	bDisposing = false;
239
	bDisposing = false;
240
240
241
// Check for bigendian representation of two-byte chars
241
// Check for bigendian representation of two-byte chars
242
#if defined(SOLARIS) || defined(MACOSX)
242
#ifdef OSL_BIGENDIAN
243
	low_byte_position = 1;;
243
	low_byte_position = 1;;
244
#else
244
#else
245
	low_byte_position = 0;
245
	low_byte_position = 0;
(-)makefile.mk (-16 / +4 lines)
Lines 2-10 Link Here
2
#
2
#
3
#   $RCSfile: makefile.mk,v $
3
#   $RCSfile: makefile.mk,v $
4
#
4
#
5
#   $Revision: 1.3 $
5
#   $Revision: 1.5 $
6
#
6
#
7
#   last change: $Author: OOo $ $Date: 2004/05/12 05:56:19 $
7
#   last change: $Author: alan $ $Date: 2004/05/23 10:02:23 $
8
#
8
#
9
#   The Contents of this file are made available subject to the terms of
9
#   The Contents of this file are made available subject to the terms of
10
#   either of the following licenses
10
#   either of the following licenses
Lines 67-84 Link Here
67
ENABLE_EXCEPTIONS=TRUE
67
ENABLE_EXCEPTIONS=TRUE
68
USE_DEFFILE=TRUE
68
USE_DEFFILE=TRUE
69
69
70
.IF "$(ULINGULIB)"==""
71
.IF "$(GUI)"=="UNX"
72
ULINGULIB=-lulingu$(UPD)$(DLLPOSTFIX)
73
.ENDIF # unx
74
.IF "$(GUI)"=="WNT"
75
ULINGULIB=$(LIBPRE) ulingu.lib
76
.ENDIF # wnt
77
.ENDIF
78
79
80
81
82
#----- Settings ---------------------------------------------------------
70
#----- Settings ---------------------------------------------------------
83
71
84
.INCLUDE : settings.mk
72
.INCLUDE : settings.mk
Lines 153-160 Link Here
153
		$(SALLIB)		\
141
		$(SALLIB)		\
154
		$(UCBHELPERLIB)	\
142
		$(UCBHELPERLIB)	\
155
		$(UNOTOOLSLIB)	\
143
		$(UNOTOOLSLIB)	\
156
		$(LNGLIB) \
144
		$(LNGLIB)
157
                $(ULINGULIB) 
145
                
158
146
159
# build DLL
147
# build DLL
160
SHL1LIBS=		$(SLB)$/$(TARGET).lib
148
SHL1LIBS=		$(SLB)$/$(TARGET).lib

Return to issue 25832