From e0affbdfbd1c37b9ac7fea06b6bfc66e78968e0e Mon Sep 17 00:00:00 2001 From: knu Date: Tue, 29 May 2001 21:16:54 +0000 Subject: As some people including me are seeing reproduceable coredump, temporarily stop linking ruby with libc_r. This will break such extension modules as ruby-qt, but we have to investigate the annoying problems we are seeing, present in both ruby and our libc_r. Once suggested by: green --- lang/ruby-devel/Makefile | 4 ++++ lang/ruby/Makefile | 4 ++++ lang/ruby16/Makefile | 4 ++++ lang/ruby18/Makefile | 4 ++++ 4 files changed, 16 insertions(+) (limited to 'lang') diff --git a/lang/ruby-devel/Makefile b/lang/ruby-devel/Makefile index 9750862c02c..b63cca70163 100644 --- a/lang/ruby-devel/Makefile +++ b/lang/ruby-devel/Makefile @@ -32,6 +32,10 @@ CONFIGURE_ARGS= --enable-shared MAN1= ruby${_RUBY_SUFFIX}.1 MLINKS= ruby${_RUBY_SUFFIX}.1 ruby.1 +.if !defined(WITH_LIBC_R) +CONFIGURE_ARGS+= --with_libc_r=no +.endif + .include .if !empty(RUBY_SUFFIX) diff --git a/lang/ruby/Makefile b/lang/ruby/Makefile index 1f8a1ddd12a..320e62366c3 100644 --- a/lang/ruby/Makefile +++ b/lang/ruby/Makefile @@ -30,6 +30,10 @@ CONFIGURE_ARGS= --enable-shared MAN1= ruby${_RUBY_SUFFIX}.1 MLINKS= ruby${_RUBY_SUFFIX}.1 ruby.1 +.if !defined(WITH_LIBC_R) +CONFIGURE_ARGS+= --with_libc_r=no +.endif + .include .if !empty(RUBY_SUFFIX) diff --git a/lang/ruby16/Makefile b/lang/ruby16/Makefile index 1f8a1ddd12a..320e62366c3 100644 --- a/lang/ruby16/Makefile +++ b/lang/ruby16/Makefile @@ -30,6 +30,10 @@ CONFIGURE_ARGS= --enable-shared MAN1= ruby${_RUBY_SUFFIX}.1 MLINKS= ruby${_RUBY_SUFFIX}.1 ruby.1 +.if !defined(WITH_LIBC_R) +CONFIGURE_ARGS+= --with_libc_r=no +.endif + .include .if !empty(RUBY_SUFFIX) diff --git a/lang/ruby18/Makefile b/lang/ruby18/Makefile index 9750862c02c..b63cca70163 100644 --- a/lang/ruby18/Makefile +++ b/lang/ruby18/Makefile @@ -32,6 +32,10 @@ CONFIGURE_ARGS= --enable-shared MAN1= ruby${_RUBY_SUFFIX}.1 MLINKS= ruby${_RUBY_SUFFIX}.1 ruby.1 +.if !defined(WITH_LIBC_R) +CONFIGURE_ARGS+= --with_libc_r=no +.endif + .include .if !empty(RUBY_SUFFIX) -- cgit