Skip to content

Commit

Permalink
remove obsoleted macros (#82)
Browse files Browse the repository at this point in the history
* run autoupdate in ipadic and jumadic

* use AC_CONFIG_FILES instead of AC_OUTPUT

* use AC_LANG instead of AC_LANG_CPLUSPLUS

* CHECK_CXX_STL: use AC_COMPILE_IFELSE instead of AC_TRY_COMPILE

* check for const_cast: use AC_COMPILE_IFELSE instead of AC_TRY_COMPILE

* check for const_cast: use AC_COMPILE_IFELSE instead of AC_TRY_COMPILE

* check for static_cast<>: use AC_COMPILE_IFELSE instead of AC_TRY_COMPILE

* check for reinterpret_cast: use AC_COMPILE_IFELSE instead of AC_TRY_COMPILE

* check for namespaces: use AC_COMPILE_IFELSE instead of AC_TRY_COMPILE

* __thread keyword: use AC_COMPILE_IFELSE instead of AC_TRY_COMPILE

* fix syntax error

* fix indent

* template <class T>: use AC_COMPILE_IFELSE instead of AC_TRY_COMPILE

* C++11 atomic operations: use AC_COMPILE_IFELSE instead of AC_TRY_COMPILE

* GCC native atomic operations: use AC_COMPILE_IFELSE instead of AC_TRY_COMPILE

* OSX native atomic operations: use AC_COMPILE_IFELSE instead of AC_TRY_COMPILE

* GCC fallthrough attribute: use AC_COMPILE_IFELSE instead of AC_TRY_COMPILE

* GNU fallthrough attribute: use AC_COMPILE_IFELSE instead of AC_TRY_COMPILE

* clang fallthrough attribute: use AC_COMPILE_IFELSE instead of AC_TRY_COMPILE

* C++17 fallthrough attribute: use AC_COMPILE_IFELSE instead of AC_TRY_COMPILE

* use AC_CONFIG_HEADERS instead of AM_CONFIG_HEADER

* remove AC_CYGWIN

* use AC_CHECK_INCLUDES_DEFAULT and AC_PROG_EGREP instead of AC_HEADER_STDC

* use LT_INIT and AC_SEARCH_LIBS

* comment out AC_CHECK_INCLUDES_DEFAULT
  • Loading branch information
shogo82148 authored Apr 19, 2022
1 parent df93e07 commit 2ba1bda
Show file tree
Hide file tree
Showing 3 changed files with 226 additions and 236 deletions.
5 changes: 3 additions & 2 deletions mecab-ipadic/configure.ac
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AC_INIT([mecab-ipadic], [2.7.0-20070801])
AC_INIT([mecab-ipadic],[2.7.0-20070801])
AC_CONFIG_SRCDIR([matrix.def])
AM_INIT_AUTOMAKE
AC_PROG_INSTALL
Expand Down Expand Up @@ -54,4 +54,5 @@ AC_SUBST(MECAB_GENDATA)
MECAB_PREDATA="`echo *.def` dicrc"
AC_SUBST(MECAB_PREDATA)

AC_OUTPUT([Makefile])
AC_CONFIG_FILES([Makefile])
AC_OUTPUT
5 changes: 3 additions & 2 deletions mecab-jumandic/configure.ac
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AC_INIT([mecab-jumandic], [7.0-20130310])
AC_INIT([mecab-jumandic],[7.0-20130310])
AC_CONFIG_SRCDIR([matrix.def])
AM_INIT_AUTOMAKE
AC_PROG_INSTALL
Expand Down Expand Up @@ -54,4 +54,5 @@ AC_SUBST(MECAB_GENDATA)
MECAB_PREDATA="`echo *.def` dicrc"
AC_SUBST(MECAB_PREDATA)

AC_OUTPUT([Makefile])
AC_CONFIG_FILES([Makefile])
AC_OUTPUT
Loading

0 comments on commit 2ba1bda

Please sign in to comment.