mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
aclocal.m4: add
* aclocal.m4: add fallback file for non-aclocal environments. [ruby-core:72683] [Bug #11942] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53417 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
5cf9b65aa3
commit
853ef28af3
3 changed files with 24 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
Sun Jan 3 19:22:01 2016 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* aclocal.m4: add fallback file for non-aclocal environments.
|
||||
[ruby-core:72683] [Bug #11942]
|
||||
|
||||
Sun Jan 3 13:56:49 2016 Yuichiro Kaneko <yui-knk@ruby-lang.org>
|
||||
|
||||
* eval_error.c (rb_print_undef): Use `rb_method_visibility_t`
|
||||
|
|
|
@ -306,8 +306,10 @@ reconfig config.status: $(srcdir)/$(CONFIGURE) $(srcdir)/enc/Makefile.in \
|
|||
$(srcdir)/$(CONFIGURE): $(srcdir)/configure.in $(srcdir)/aclocal.m4
|
||||
$(CHDIR) $(srcdir) && exec $(AUTOCONF) -o $(@F)
|
||||
|
||||
$(srcdir)/aclocal.m4: $(srcdir)/acinclude.m4
|
||||
$(CHDIR) $(srcdir) && exec $(ACLOCAL)
|
||||
$(srcdir)/aclocal.m4: $(srcdir)/configure.in
|
||||
$(CHDIR) $(srcdir) && \
|
||||
type $(ACLOCAL) >/dev/null 2>&1 && exec $(ACLOCAL); \
|
||||
touch $(@F)
|
||||
|
||||
incs: id.h
|
||||
all-incs: probes.h
|
||||
|
|
15
aclocal.m4
vendored
Normal file
15
aclocal.m4
vendored
Normal file
|
@ -0,0 +1,15 @@
|
|||
# generated automatically by aclocal 1.15 -*- Autoconf -*-
|
||||
|
||||
# Copyright (C) 1996-2014 Free Software Foundation, Inc.
|
||||
|
||||
# This file is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
# with or without modifications, as long as this notice is preserved.
|
||||
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
||||
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
# PARTICULAR PURPOSE.
|
||||
|
||||
m4_ifndef([AC_CONFIG_MACRO_DIRS], [m4_defun([_AM_CONFIG_MACRO_DIRS], [])m4_defun([AC_CONFIG_MACRO_DIRS], [_AM_CONFIG_MACRO_DIRS($@)])])
|
||||
m4_include([acinclude.m4])
|
Loading…
Reference in a new issue