summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-11-26 22:49:28 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-11-26 22:49:28 +0000
commit7d11b9e2892df8e3936a2079bb101b2b27111937 (patch)
tree7bf51dd0e3b38b2a8cf31f3b049f80f2ca885be7 /configure.in
parentb361c5adeca7027546373f5d6e2d1da0fff16184 (diff)
* configure.in (--no-undefined): r33840 breaks FreeBSD and DragonFly
with gcc 4.4 or later. Their environ is in /usr/libexec/ld-elf.so.1, so it will be false negative. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33856 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index e051cb6cfe..ce4ea18a29 100644
--- a/configure.in
+++ b/configure.in
@@ -2268,7 +2268,7 @@ AS_CASE("$enable_shared", [yes], [
fi
AS_CASE(["$target_os"],
- [freebsd*], ,
+ [freebsd*|dragonfly*], [],
[
if test "$GCC" = yes; then
RUBY_TRY_LDFLAGS([-Xlinker --no-undefined], RUBY_APPEND_OPTION(EXTLDFLAGS, [-Xlinker --no-undefined]))