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

(-)oo_1.1_src/lingucomponent/source/spellcheck/hspell/dict_radix.c (-1 / +1 lines)
Lines 12-18 Link Here
12
*/
12
*/
13
13
14
#ifdef WIN32
14
#ifdef WIN32
15
#define snprintf _snprintf
15
#include "snprintf.h"
16
typedef unsigned __int32 uint32_t;
16
typedef unsigned __int32 uint32_t;
17
#else
17
#else
18
#include <inttypes.h>
18
#include <inttypes.h>
(-)oo_1.1_src/lingucomponent/source/spellcheck/hspell/hspell.c (-1 / +1 lines)
Lines 14-20 Link Here
14
#include "hash.h"
14
#include "hash.h"
15
#include "hspell.h"
15
#include "hspell.h"
16
#ifdef WIN32
16
#ifdef WIN32
17
#define snprintf _snprintf
17
#include "snprintf.h"
18
#endif
18
#endif
19
19
20
#define HSPELL_VERSION "0.6"
20
#define HSPELL_VERSION "0.6"
(-)oo_1.1_src/lingucomponent/source/spellcheck/hspell/makefile.mk (+5 lines)
Lines 133-138 Link Here
133
		$(SLO)$/tclHash.obj  \
133
		$(SLO)$/tclHash.obj  \
134
		$(SLO)$/sprophelp.obj  \
134
		$(SLO)$/sprophelp.obj  \
135
		$(SLO)$/hsreg.obj  \
135
		$(SLO)$/hsreg.obj  \
136
		$(SLO)$/snprintf.obj  \
136
		$(SLO)$/hspellimp.obj 
137
		$(SLO)$/hspellimp.obj 
137
138
138
139
Lines 154-159 Link Here
154
		$(LNGLIB) \
155
		$(LNGLIB) \
155
                $(ULINGULIB) 
156
                $(ULINGULIB) 
156
157
158
.IF "$(GUI)"=="WNT"
159
SLOFILES += $(SLO)$/snprintf.obj
160
.ENDIF # wnt
161
157
# build DLL
162
# build DLL
158
SHL1LIBS=		$(SLB)$/$(TARGET).lib
163
SHL1LIBS=		$(SLB)$/$(TARGET).lib
159
SHL1IMPLIB=		i$(TARGET)
164
SHL1IMPLIB=		i$(TARGET)

Return to issue 25832