1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-21 20:38:45 +00:00

Add a patch to unbreak the build. (already submitted to the vim6 author)

Reported by:	Ollivier Robert <roberto@eurocontrol.fr>
This commit is contained in:
Akinori MUSHA 2001-05-31 02:29:58 +00:00
parent d69b90c313
commit 1c7f5e9b9c
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=43330
2 changed files with 24 additions and 0 deletions

View File

@ -16,6 +16,8 @@ MAINTAINER= knu@FreeBSD.org
COMMENT= ${.CURDIR}/pkg-comment
EXTRA_PATCHES= ${.CURDIR}/files/patch-*
USE_RUBY= yes
MAKE_ARGS= CONF_OPT_RUBY="--enable-rubyinterp" RUBY="${RUBY}"

View File

@ -0,0 +1,22 @@
--- configure.in.orig Fri May 4 19:00:29 2001
+++ configure.in Thu May 31 02:01:12 2001
@@ -460,7 +460,7 @@
AC_MSG_CHECKING(Ruby version)
if $vi_cv_path_ruby -e 'VERSION >= "1.6.0" or exit 1' >/dev/null 2>/dev/null; then
AC_MSG_RESULT(OK)
- rubyhdrdir=`$vi_cv_path_ruby -r mkmf -e 'print $hdrdir'`
+ rubyhdrdir=`$vi_cv_path_ruby -r rbconfig -e 'print Config::CONFIG[["archdir"]]'`
RUBY_CFLAGS="-I$rubyhdrdir"
rubylibs=`$vi_cv_path_ruby -r rbconfig -e 'print Config::CONFIG[["LIBS"]]'`
if test "X$rubylibs" != "X"; then
--- auto/configure.orig Fri May 4 19:50:56 2001
+++ auto/configure Thu May 31 03:55:33 2001
@@ -1789,7 +1789,7 @@
echo "configure:1790: checking Ruby version" >&5
if $vi_cv_path_ruby -e 'VERSION >= "1.6.0" or exit 1' >/dev/null 2>/dev/null; then
echo "$ac_t""OK" 1>&6
- rubyhdrdir=`$vi_cv_path_ruby -r mkmf -e 'print $hdrdir'`
+ rubyhdrdir=`$vi_cv_path_ruby -r rbconfig -e 'print Config::CONFIG["archdir"]'`
RUBY_CFLAGS="-I$rubyhdrdir"
rubylibs=`$vi_cv_path_ruby -r rbconfig -e 'print Config::CONFIG["LIBS"]'`
if test "X$rubylibs" != "X"; then