pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/lang/ruby Match the name of the ruby shared library on...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/c71aa7fdfb03
branches:  trunk
changeset: 498713:c71aa7fdfb03
user:      jlam <jlam%pkgsrc.org@localhost>
date:      Wed Aug 31 08:50:32 2005 +0000

description:
Match the name of the ruby shared library on FreeBSD and DragonFly to
the way that LIBRUBY_SO is defined in the ruby configure script.  This
fixes PLIST breakage in the ruby18-base package on at least FreeBSD.

diffstat:

 lang/ruby/rubyversion.mk |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (21 lines):

diff -r 8475c6ed9d9b -r c71aa7fdfb03 lang/ruby/rubyversion.mk
--- a/lang/ruby/rubyversion.mk  Wed Aug 31 08:04:58 2005 +0000
+++ b/lang/ruby/rubyversion.mk  Wed Aug 31 08:50:32 2005 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: rubyversion.mk,v 1.11 2005/03/30 16:16:20 taca Exp $
+# $NetBSD: rubyversion.mk,v 1.12 2005/08/31 08:50:32 jlam Exp $
 #
 
 .ifndef _RUBYVERSION_MK
@@ -140,9 +140,9 @@
 .if ${OPSYS} == "NetBSD" || ${OPSYS} == "Interix"
 RUBY_SHLIBMAJOR=       ${RUBY_VER}
 RUBY_SHLIBVER=         ${RUBY_VER}.${_RUBY_VERS_TEENY}
-.elif ${OPSYS} == "FreeBSD"
+.elif ${OPSYS} == "FreeBSD" || ${OPSYS} == "DragonFly"
 RUBY_SHLIBMAJOR=       # unused
-RUBY_SHLIBVER=         ${_RUBY_VERS_TEENY}
+RUBY_SHLIBVER=         ${RUBY_VER}
 .elif ${OPSYS} == "OpenBSD"
 RUBY_SHLIBMAJOR=       # unused
 RUBY_SHLIBVER=         ${_RUBY_VER_MAJOR}.${_RUBY_VER_MINOR}${_RUBY_VERS_TEENY}



Home | Main Index | Thread Index | Old Index