提交 6f27137f 编写于 作者: T theraysmith

Autoconf changes for 2.01

git-svn-id: https://tesseract-ocr.googlecode.com/svn/trunk@115 d0cd1f9f-072b-0410-8dd7-cf729c803f20
上级 eaef4c98
...@@ -372,6 +372,8 @@ dist-hook: ...@@ -372,6 +372,8 @@ dist-hook:
# added using EXTRA_DIST. $(distdir)/tessdata would in # added using EXTRA_DIST. $(distdir)/tessdata would in
# theory suffice. # theory suffice.
rm -rf `find $(distdir) -name CVS` rm -rf `find $(distdir) -name CVS`
rm -rf `find $(distdir) -name .svn`
rm -rf `find $(distdir) -name .deps`
# Also remove extra files not needed in a distribution # Also remove extra files not needed in a distribution
rm -rf `find $(distdir) -name configure.ac` rm -rf `find $(distdir) -name configure.ac`
rm -rf `find $(distdir) -name acinclude.m4` rm -rf `find $(distdir) -name acinclude.m4`
......
...@@ -77,11 +77,11 @@ VERSION = @VERSION@ ...@@ -77,11 +77,11 @@ VERSION = @VERSION@
SUBDIRS = SUBDIRS =
AM_CXXFLAGS = -DTESSDATA_PREFIX=@datadir@/ AM_CXXFLAGS = -DTESSDATA_PREFIX=@datadir@/
include_HEADERS = basedir.h bits16.h clst.h debugwin.h elst2.h elst.h errcode.h fileerr.h tessopt.h globaloc.h hashfn.h host.h hosthplb.h lsterr.h mainblk.h memblk.h memryerr.h memry.h mfcpch.h ndminx.h notdll.h nwmain.h ocrclass.h ocrshell.h platform.h secname.h serialis.h stderr.h strngs.h tessclas.h tprintf.h varable.h mfcpch.cpp scanutils.cpp scanutils.h unichar.h unicharmap.h unicharset.h include_HEADERS = basedir.h bits16.h clst.h debugwin.h elst2.h elst.h errcode.h fileerr.h tessopt.h globaloc.h hashfn.h host.h hosthplb.h lsterr.h mainblk.h memblk.h memryerr.h memry.h mfcpch.h ndminx.h notdll.h nwmain.h ocrclass.h ocrshell.h platform.h secname.h serialis.h stderr.h strngs.h tessclas.h tprintf.h varable.h mfcpch.cpp scanutils.cpp scanutils.h unichar.h unicharmap.h unicharset.h boxread.h
lib_LIBRARIES = libtesseract_ccutil.a lib_LIBRARIES = libtesseract_ccutil.a
libtesseract_ccutil_a_SOURCES = basedir.cpp bits16.cpp clst.cpp debugwin.cpp elst.cpp elst2.cpp errcode.cpp globaloc.cpp hashfn.cpp mainblk.cpp memblk.cpp memry.cpp ocrshell.cpp serialis.cpp strngs.cpp tprintf.cpp varable.cpp unichar.cpp tessopt.cpp unicharmap.cpp unicharset.cpp libtesseract_ccutil_a_SOURCES = basedir.cpp bits16.cpp clst.cpp debugwin.cpp elst.cpp elst2.cpp errcode.cpp globaloc.cpp hashfn.cpp mainblk.cpp memblk.cpp memry.cpp ocrshell.cpp serialis.cpp strngs.cpp tprintf.cpp varable.cpp unichar.cpp tessopt.cpp unicharmap.cpp unicharset.cpp boxread.cpp
mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs
CONFIG_HEADER = ../config_auto.h CONFIG_HEADER = ../config_auto.h
...@@ -97,7 +97,7 @@ libtesseract_ccutil_a_LIBADD = ...@@ -97,7 +97,7 @@ libtesseract_ccutil_a_LIBADD =
libtesseract_ccutil_a_OBJECTS = basedir.o bits16.o clst.o debugwin.o \ libtesseract_ccutil_a_OBJECTS = basedir.o bits16.o clst.o debugwin.o \
elst.o elst2.o errcode.o globaloc.o hashfn.o mainblk.o memblk.o memry.o \ elst.o elst2.o errcode.o globaloc.o hashfn.o mainblk.o memblk.o memry.o \
ocrshell.o serialis.o strngs.o tprintf.o varable.o unichar.o tessopt.o \ ocrshell.o serialis.o strngs.o tprintf.o varable.o unichar.o tessopt.o \
unicharmap.o unicharset.o unicharmap.o unicharset.o boxread.o
AR = ar AR = ar
CXXFLAGS = @CXXFLAGS@ CXXFLAGS = @CXXFLAGS@
CXXCOMPILE = $(CXX) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) CXXCOMPILE = $(CXX) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
...@@ -112,7 +112,7 @@ DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST) ...@@ -112,7 +112,7 @@ DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
TAR = tar TAR = tar
GZIP_ENV = --best GZIP_ENV = --best
DEP_FILES = .deps/basedir.P .deps/bits16.P .deps/clst.P \ DEP_FILES = .deps/basedir.P .deps/bits16.P .deps/boxread.P .deps/clst.P \
.deps/debugwin.P .deps/elst.P .deps/elst2.P .deps/errcode.P \ .deps/debugwin.P .deps/elst.P .deps/elst2.P .deps/errcode.P \
.deps/globaloc.P .deps/hashfn.P .deps/mainblk.P .deps/memblk.P \ .deps/globaloc.P .deps/hashfn.P .deps/mainblk.P .deps/memblk.P \
.deps/memry.P .deps/ocrshell.P .deps/serialis.P .deps/strngs.P \ .deps/memry.P .deps/ocrshell.P .deps/serialis.P .deps/strngs.P \
......
...@@ -27,9 +27,6 @@ ...@@ -27,9 +27,6 @@
******************************************************************************** ********************************************************************************
*/ */
#ifdef __cplusplus
#define EXTERN extern #define EXTERN extern
#else
#define EXTERN extern
#endif
#endif #endif
...@@ -74,8 +74,8 @@ RANLIB = @RANLIB@ ...@@ -74,8 +74,8 @@ RANLIB = @RANLIB@
VERSION = @VERSION@ VERSION = @VERSION@
datadir = @datadir@/tessdata/configs datadir = @datadir@/tessdata/configs
data_DATA = inter makebox box.train unlv data_DATA = inter makebox box.train unlv api_config
EXTRA_DIST = inter makebox box.train unlv EXTRA_DIST = inter makebox box.train unlv api_config
mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs
CONFIG_HEADER = ../../config_auto.h CONFIG_HEADER = ../../config_auto.h
CONFIG_CLEAN_FILES = CONFIG_CLEAN_FILES =
......
...@@ -69,7 +69,7 @@ MAKEINFO = /home/rays/src/opensrc/tesseract-ocr/config/missing makeinfo ...@@ -69,7 +69,7 @@ MAKEINFO = /home/rays/src/opensrc/tesseract-ocr/config/missing makeinfo
PACKAGE = PACKAGE =
PACKAGE_DATE = 07/2007 PACKAGE_DATE = 07/2007
PACKAGE_NAME = tesseract PACKAGE_NAME = tesseract
PACKAGE_VERSION = 2.00 PACKAGE_VERSION = 2.01
PACKAGE_YEAR = 2007 PACKAGE_YEAR = 2007
RANLIB = ranlib RANLIB = ranlib
VERSION = VERSION =
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册