GCC build with Myspell support
This commit is contained in:
parent
9a73874a6c
commit
eb17930b1c
@ -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
|
||||
|
2
Makefile
2
Makefile
@ -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
|
||||
|
@ -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 \
|
||||
|
9
goldlib/myspell/myspell.all
Normal file
9
goldlib/myspell/myspell.all
Normal 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
|
@ -1,6 +1,6 @@
|
||||
#include "hashmgr.hxx"
|
||||
#include "affixmgr.hxx"
|
||||
#include "suggestmgr.hxx"
|
||||
#include "suggest.hxx"
|
||||
#include "csutil.hxx"
|
||||
|
||||
#define NOCAP 0
|
||||
|
@ -5,7 +5,7 @@
|
||||
#include <cstring>
|
||||
#include <cstdio>
|
||||
|
||||
#include "suggestmgr.hxx"
|
||||
#include "suggest.hxx"
|
||||
|
||||
#if !defined(_MSC_VER)
|
||||
using namespace std;
|
Reference in New Issue
Block a user