View | Details | Raw Unified
Collapse All | Expand All

(-) hunspell-1.1.4/configure.ac (-1 / +1 lines)
 Lines 23-29   AC_CONFIG_HEADER([config.h]) Link Here 
# Checks for programs.
# Checks for programs.
AC_PROG_CXX
AC_PROG_CXX
AC_PROG_CC
AC_PROG_CC
AC_PROG_RANLIB
AC_PROG_LIBTOOL
# Checks for libraries.
# Checks for libraries.
(-) hunspell-1.1.4/src/hunspell/Makefile.am (-2 / +2 lines)
 Lines 1-5    Link Here 
lib_LIBRARIES = libhunspell.a
lib_LTLIBRARIES = libhunspell.la
libhunspell_a_SOURCES=affentry.cxx affixmgr.cxx csutil.cxx \
libhunspell_la_SOURCES=affentry.cxx affixmgr.cxx csutil.cxx \
		     dictmgr.cxx hashmgr.cxx hunspell.cxx \
		     dictmgr.cxx hashmgr.cxx hunspell.cxx \
	             suggestmgr.cxx utf_info.cxx license.myspell license.hunspell
	             suggestmgr.cxx utf_info.cxx license.myspell license.hunspell
(-) hunspell-1.1.4/src/hunspell/utf_info.cxx (-1 / +1 lines)
 Lines 1-6    Link Here 
#include "csutil.hxx"
#include "csutil.hxx"
/* fields: Unicode letter, toupper, tolower */
/* fields: Unicode letter, toupper, tolower */
struct unicode_info utf_lst[] = {
static struct unicode_info utf_lst[] = {
{ 0x0041, 0x0041, 0x0061 },
{ 0x0041, 0x0041, 0x0061 },
{ 0x0042, 0x0042, 0x0062 },
{ 0x0042, 0x0042, 0x0062 },
{ 0x0043, 0x0043, 0x0063 },
{ 0x0043, 0x0043, 0x0063 },
(-) hunspell-1.1.4/src/parsers/Makefile.am (-5 / +5 lines)
 Lines 1-7    Link Here 
lib_LIBRARIES=libparsers.a
lib_LTLIBRARIES=libparsers.la
libparsers_a_SOURCES=firstparser.cxx htmlparser.cxx \
libparsers_la_SOURCES=firstparser.cxx htmlparser.cxx \
		      latexparser.cxx  manparser.cxx \
		      latexparser.cxx  manparser.cxx \
		      textparser.cxx 
		      textparser.cxx 
libparsers_la_LIBADD = ../hunspell/libhunspell.la
#include_hunspelldir
#include_hunspelldir
include_HEADERS = firstparser.hxx \
include_HEADERS = firstparser.hxx \
 Lines 11-17   include_HEADERS = firstparser.hxx \ Link Here 
		  textparser.hxx
		  textparser.hxx
noinst_PROGRAMS=testparser
noinst_PROGRAMS=testparser
testparser_SOURCES=firstparser.cxx firstparser.hxx htmlparser.cxx htmlparser.hxx latexparser.cxx latexparser.hxx manparser.cxx manparser.hxx testparser.cxx textparser.cxx textparser.hxx
testparser_SOURCES=testparser.cxx
testparser_LDADD = libparsers.la
# need mystrdup()
LDADD = ../hunspell/libhunspell.a
(-) hunspell-1.1.4/src/tools/Makefile.am (-5 / +5 lines)
 Lines 7-24   unmunch_SOURCES=unmunch.c Link Here 
include_HEADERS=munch.h unmunch.h
include_HEADERS=munch.h unmunch.h
example_SOURCES=example.cxx
example_SOURCES=example.cxx
example_LDADD = ../hunspell/libhunspell.a
example_LDADD = ../hunspell/libhunspell.la
hunspell_SOURCES=hunspell.cxx
hunspell_SOURCES=hunspell.cxx
hunspell_LDADD = @LIBINTL@ ../hunspell/libhunspell.a \
hunspell_LDADD = @LIBINTL@ ../hunspell/libhunspell.la \
	../parsers/libparsers.a @CURSESLIB@ @READLINELIB@
	../parsers/libparsers.la @CURSESLIB@ @READLINELIB@
hunmorph_SOURCES=hunmorph.cxx
hunmorph_SOURCES=hunmorph.cxx
hunmorph_LDADD = ../hunspell/libhunspell.a
hunmorph_LDADD = ../hunspell/libhunspell.la
#hunmorph_INCLUDES=-I${top_srcdir}/src/hunspell
#hunmorph_INCLUDES=-I${top_srcdir}/src/hunspell
hunstem_SOURCES=hunstem.cxx
hunstem_SOURCES=hunstem.cxx
hunstem_LDADD = ../hunspell/libhunspell.a
hunstem_LDADD = ../hunspell/libhunspell.la
#hunstem_INCLUDES=-I${top_srcdir}/src/hunspell
#hunstem_INCLUDES=-I${top_srcdir}/src/hunspell
EXTRA_DIST=makealias
EXTRA_DIST=makealias
(-) hunspell-1.1.4/po/Makefile.in.in (-1 / +1 lines)
 Lines 27-33   gettextsrcdir = $(datadir)/gettext/po Link Here 
INSTALL = @INSTALL@
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_DATA = @INSTALL_DATA@
MKINSTALLDIRS = @MKINSTALLDIRS@
MKINSTALLDIRS = @MKINSTALLDIRS@
mkinstalldirs = $(SHELL) `case "$(MKINSTALLDIRS)" in /*) echo "$(MKINSTALLDIRS)" ;; *) echo "$(top_builddir)/$(MKINSTALLDIRS)" ;; esac`
mkinstalldirs = @MKINSTALLDIRS@
GMSGFMT = @GMSGFMT@
GMSGFMT = @GMSGFMT@
MSGFMT = @MSGFMT@
MSGFMT = @MSGFMT@