Skip to content

Commit

Permalink
Fix autogen.sh extream slow.
Browse files Browse the repository at this point in the history
This configure.ac is extreme slow on libtool-2.4.6.

From libtool mailing list.

You can workaround/fix this by:
-m4_define([nginx_version], m4_include(nginx_version))
-NGINX_VERSION=nginx_version
+NGINX_VERSION=m4_include([nginx_version])

See also.
http://lists.gnu.org/archive/html/libtool/2015-09/msg00004.html
  • Loading branch information
hiroyuki-sato committed Sep 19, 2015
1 parent 64976e3 commit 7d7a62a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions configure.ac
Expand Up @@ -1459,8 +1459,7 @@ AC_ARG_WITH(groonga-org-path,
AC_SUBST(GROONGA_ORG_PATH)

# groonga-httpd
m4_define([nginx_version], m4_include(nginx_version))
NGINX_VERSION=nginx_version
NGINX_VERSION=m4_include([nginx_version])
AC_SUBST(NGINX_VERSION)

# groonga-httpd binary path
Expand Down

0 comments on commit 7d7a62a

Please sign in to comment.