-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
52 changed files
with
2,926 additions
and
1,582 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
Schwa Lab core NLP tools, including the C++ implementation of docrep and the docrep command-line tools. | ||
|
||
Documentation can be found on the GitHub wiki page: https://github.com/schwa-lab/libschwa/wiki |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ AC_INIT([libschwa], m4_normalize(m4_include([m4/version.m4])), [[email protected] | |
: ${CXXFLAGS=""} | ||
|
||
m4_include([m4/version-set.m4]) | ||
AC_SUBST([libschwa_la_version_info], [3:0:0]) | ||
AC_SUBST([libschwa_la_version_info], [4:0:0]) | ||
|
||
AC_CONFIG_AUX_DIR([build-aux]) | ||
AC_CONFIG_MACRO_DIR([m4]) | ||
|
@@ -156,6 +156,11 @@ AC_COMPILE_IFELSE( | |
) | ||
if test x$libschwa_have_builtin_expect = xyes ; then | ||
AC_DEFINE([HAVE_BUILTIN_EXPECT], [1], [Define to 1 if the compiler supports __builtin_expect.]) | ||
AC_SUBST([SCHWA_LIKELY], ['(__builtin_expect(!!(x), 1))']) | ||
AC_SUBST([SCHWA_UNLIKELY], ['(__builtin_expect(!!(x), 0))']) | ||
else | ||
AC_SUBST([SCHWA_LIKELY], ['(x)']) | ||
AC_SUBST([SCHWA_UNLIKELY], ['(x)']) | ||
fi | ||
|
||
dnl Work out how to inline the "host to big endian" functions for various based on what headers we found. | ||
|
@@ -219,7 +224,7 @@ AC_CONFIG_FILES([ | |
src/apps/dr-worker-example/Makefile | ||
src/apps/schwa-tokenizer/Makefile | ||
src/lib/Makefile | ||
src/lib/schwa/_base.h:src/lib/schwa/_base.h.in | ||
src/lib/schwa/macros.h:src/lib/schwa/macros.h.in | ||
src/lib/schwa/port.h:src/lib/schwa/port.h.in | ||
src/third-party/Makefile | ||
dist/libschwa.pc:dist/libschwa.pc.in | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
dnl Product version for header files. Maintained by dist/bump-version.sh | ||
VERSION_MAJOR=0 | ||
VERSION_MINOR=3 | ||
VERSION_PATCH=1 | ||
VERSION_STRING='"0.3.1 (2014-07-06)"' | ||
VERSION_MINOR=4 | ||
VERSION_PATCH=0 | ||
VERSION_STRING='"0.4.0 (2014-09-05)"' | ||
|
||
AC_SUBST(VERSION_MAJOR) | ||
AC_SUBST(VERSION_MINOR) | ||
AC_SUBST(VERSION_PATCH) | ||
AC_SUBST(VERSION_STRING) | ||
|
||
VERSION_NOPATCH=0.3 | ||
VERSION_NOPATCH=0.4 | ||
AC_SUBST(VERSION_NOPATCH) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
dnl Product version for AC_INIT. Maintained by dist/bump-version.sh | ||
0.3.1 | ||
0.4.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.