GCC build with Myspell support

This commit is contained in:
Stas Degteff 2006-03-11 23:31:23 +00:00
parent 9a73874a6c
commit eb17930b1c
7 changed files with 33 additions and 22 deletions

View File

@ -76,4 +76,6 @@
# Uncomment to disable Synchronet BBS support
#CPPFLAGS+=-DGCFG_NOSYNCHRONET
# Uncomment to disable MS Office spellchecker support (win32 only)
CPPFLAGS+=-DGCFG_NOSPELLDLL
CPPFLAGS+=-DGCFG_NO_MSSPELL
# Uncomment to disable MySpell spellchecker support (multiplatform)
CPPFLAGS+=-DGCFG_NO_MYSPELL

View File

@ -4,7 +4,7 @@ include GNUmakef.def
.PHONY: all clean distclean dirs sourcelists deps docs
LIBS=gall gcfg gmb3 glibc uulib smblib msgidlib
LIBS=gall gcfg gmb3 glibc uulib smblib msgidlib myspell
EXECUTABLES=golded3 goldnode rddt
all: sourcelists

View File

@ -13,8 +13,8 @@
# to build debug binary
# Uncomment to disable MS Office spellchecker support (win32 only)
# CPP_EXTRA_FLAGS=$(CPP_EXTRA_FLAGS) /DDGCFG_NO_MSSPELL
# Uncomment to disable MS Office spellchecker support
# CPP_EXTRA_FLAGS=$(CPP_EXTRA_FLAGS) /DGCFG_NO_MSSPELL
# Uncomment to disable MySpell spellchecker support
# CPP_EXTRA_FLAGS=$(CPP_EXTRA_FLAGS) /DGCFG_NO_MYSPELL
@ -385,7 +385,7 @@ LNK_OBJS= \
$(OBJ_DIR)\gmarea.obj \
$(OBJ_DIR)\golded3.obj \
$(OBJ_DIR)\myspell.obj \
$(OBJ_DIR)\suggestmgr.obj \
$(OBJ_DIR)\suggest.obj \
$(OBJ_DIR)\hashmgr.obj \
$(OBJ_DIR)\dictmgr.obj \
$(OBJ_DIR)\csutil.obj \

View File

@ -0,0 +1,9 @@
affentry cxx all ovl bcd bco bcx wcn wco wcx lnx emx djg rsx cyg be sun
affixmgr cxx all ovl bcd bco bcx wcn wco wcx lnx emx djg rsx cyg be sun
csutil cxx all ovl bcd bco bcx wcn wco wcx lnx emx djg rsx cyg be sun
dictmgr cxx all ovl bcd bco bcx wcn wco wcx lnx emx djg rsx cyg be sun
example cxx all ovl bcd bco bcx wcn wco wcx lnx emx djg rsx cyg be sun
hashmgr cxx all ovl bcd bco bcx wcn wco wcx lnx emx djg rsx cyg be sun
hashmgr hxx all ovl bcd bco bcx wcn wco wcx lnx emx djg rsx cyg be sun
myspell cxx all ovl bcd bco bcx wcn wco wcx lnx emx djg rsx cyg be sun
suggest cxx all ovl bcd bco bcx wcn wco wcx lnx emx djg rsx cyg be sun

View File

@ -1,6 +1,6 @@
#include "hashmgr.hxx"
#include "affixmgr.hxx"
#include "suggestmgr.hxx"
#include "suggest.hxx"
#include "csutil.hxx"
#define NOCAP 0

View File

@ -5,7 +5,7 @@
#include <cstring>
#include <cstdio>
#include "suggestmgr.hxx"
#include "suggest.hxx"
#if !defined(_MSC_VER)
using namespace std;