* Makefile.in (.SUFFIX): bsdmake needs .SUFFIX is defined before use.
* common.mk: fix path of probes.dmyh. * configure.in: FreeBSD's USDT requires libelf. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37713 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
e1ffb87668
commit
f567a1a4d9
@ -1,3 +1,11 @@
|
|||||||
|
Mon Nov 19 10:00:10 2012 NARUSE, Yui <naruse@ruby-lang.org>
|
||||||
|
|
||||||
|
* Makefile.in (.SUFFIX): bsdmake needs .SUFFIX is defined before use.
|
||||||
|
|
||||||
|
* common.mk: fix path of probes.dmyh.
|
||||||
|
|
||||||
|
* configure.in: FreeBSD's USDT requires libelf.
|
||||||
|
|
||||||
Mon Nov 19 01:11:59 2012 Naohisa Goto <ngotogenome@gmail.com>
|
Mon Nov 19 01:11:59 2012 Naohisa Goto <ngotogenome@gmail.com>
|
||||||
|
|
||||||
* vm_core.h, probes_helper.h (RUBY_DTRACE_FUNC_ENTRY_HOOK,
|
* vm_core.h, probes_helper.h (RUBY_DTRACE_FUNC_ENTRY_HOOK,
|
||||||
|
@ -177,6 +177,8 @@ MESSAGE_END = ; do echo "$$line"; done
|
|||||||
configure_args = @configure_args@
|
configure_args = @configure_args@
|
||||||
#### End of variables
|
#### End of variables
|
||||||
|
|
||||||
|
.SUFFIXES: .inc .h .c .y .i .$(DTRACE_EXT)
|
||||||
|
|
||||||
all:
|
all:
|
||||||
|
|
||||||
.DEFAULT: all
|
.DEFAULT: all
|
||||||
|
@ -435,7 +435,7 @@ clean: clean-ext clean-local clean-enc clean-golf clean-rdoc clean-capi clean-ex
|
|||||||
clean-local:: PHONY
|
clean-local:: PHONY
|
||||||
$(Q)$(RM) $(OBJS) $(MINIOBJS) $(MAINOBJ) $(LIBRUBY_A) $(LIBRUBY_SO) $(LIBRUBY) $(LIBRUBY_ALIASES)
|
$(Q)$(RM) $(OBJS) $(MINIOBJS) $(MAINOBJ) $(LIBRUBY_A) $(LIBRUBY_SO) $(LIBRUBY) $(LIBRUBY_ALIASES)
|
||||||
$(Q)$(RM) $(PROGRAM) $(WPROGRAM) miniruby$(EXEEXT) dmyext.$(OBJEXT) $(ARCHFILE) .*.time
|
$(Q)$(RM) $(PROGRAM) $(WPROGRAM) miniruby$(EXEEXT) dmyext.$(OBJEXT) $(ARCHFILE) .*.time
|
||||||
$(Q)$(RM) y.tab.c y.output encdb.h transdb.h prelude.c config.log rbconfig.rb $(ruby_pc) probes.h probes.$(OBJEXT) probes.stamp ruby-glommed.$(OBJEXT)
|
$(Q)$(RM) y.tab.c y.output encdb.h transdb.h prelude.c config.log rbconfig.rb $(ruby_pc) {$(VPATH)}probes.h probes.$(OBJEXT) probes.stamp ruby-glommed.$(OBJEXT)
|
||||||
clean-ext:: PHONY
|
clean-ext:: PHONY
|
||||||
clean-golf: PHONY
|
clean-golf: PHONY
|
||||||
$(Q)$(RM) $(GORUBY)$(EXEEXT) $(GOLFOBJS)
|
$(Q)$(RM) $(GORUBY)$(EXEEXT) $(GOLFOBJS)
|
||||||
@ -460,7 +460,7 @@ distclean-platform: clean-platform
|
|||||||
|
|
||||||
realclean:: realclean-ext realclean-local realclean-enc realclean-golf realclean-extout
|
realclean:: realclean-ext realclean-local realclean-enc realclean-golf realclean-extout
|
||||||
realclean-local:: distclean-local
|
realclean-local:: distclean-local
|
||||||
$(Q)$(RM) parse.c parse.h lex.c newline.c revision.h probes.dmyh
|
$(Q)$(RM) parse.c parse.h lex.c newline.c revision.h {$(VPATH)}probes.dmyh
|
||||||
realclean-ext::
|
realclean-ext::
|
||||||
realclean-golf: distclean-golf
|
realclean-golf: distclean-golf
|
||||||
realclean-capi: PHONY
|
realclean-capi: PHONY
|
||||||
@ -901,10 +901,10 @@ golf_prelude.c: $(srcdir)/tool/compile_prelude.rb $(RBCONFIG) $(srcdir)/prelude.
|
|||||||
$(ECHO) generating $@
|
$(ECHO) generating $@
|
||||||
$(Q) $(COMPILE_PRELUDE) $(srcdir)/golf_prelude.rb $@
|
$(Q) $(COMPILE_PRELUDE) $(srcdir)/golf_prelude.rb $@
|
||||||
|
|
||||||
$(srcdir)/probes.dmyh: {$(srcdir)}probes.d $(srcdir)/tool/gen_dummy_probes.rb
|
{$(VPATH)}probes.dmyh: {$(srcdir)}probes.d $(srcdir)/tool/gen_dummy_probes.rb
|
||||||
$(BASERUBY) $(srcdir)/tool/gen_dummy_probes.rb $(srcdir)/probes.d > $@
|
$(BASERUBY) $(srcdir)/tool/gen_dummy_probes.rb $(srcdir)/probes.d > $@
|
||||||
|
|
||||||
{$(srcdir)}.dmyh.h:
|
{$(VPATH)}.dmyh.h:
|
||||||
@$(ECHO) copying dummy $(DEST_FILE)
|
@$(ECHO) copying dummy $(DEST_FILE)
|
||||||
$(Q) $(CP) $(OS_SRC_FILE) $(OS_DEST_FILE)
|
$(Q) $(CP) $(OS_SRC_FILE) $(OS_DEST_FILE)
|
||||||
|
|
||||||
|
@ -1286,6 +1286,10 @@ main()
|
|||||||
AC_DEFINE(BROKEN_SETREGID, 1)
|
AC_DEFINE(BROKEN_SETREGID, 1)
|
||||||
ac_cv_sizeof_rlim_t=8],
|
ac_cv_sizeof_rlim_t=8],
|
||||||
[freebsd*], [ LIBS="-lm $LIBS"
|
[freebsd*], [ LIBS="-lm $LIBS"
|
||||||
|
if test "${rb_cv_prog_dtrace_g}" = "yes"; then
|
||||||
|
# FreeBSD's dtrace requires libelf
|
||||||
|
LIBS="-lelf $LIBS"
|
||||||
|
fi
|
||||||
ac_cv_func_getpeername=no
|
ac_cv_func_getpeername=no
|
||||||
ac_cv_func_getsockname=no
|
ac_cv_func_getsockname=no
|
||||||
ac_cv_func_shutdown=no
|
ac_cv_func_shutdown=no
|
||||||
|
Loading…
x
Reference in New Issue
Block a user