1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-20 04:02:27 +00:00
freebsd-ports/net/ruby-mpi/files/patch-configure
Pav Lucistnik 3a154ed776 MPI Ruby is a Ruby binding of MPI. The primary goal in making this binding was
to make the power of MPI available to Ruby users in a way that fits into the
language's object oriented model.  In order to do this, the buffer and datatype
management necessary in the C, C++, and Fortran bindings have been removed.
What this means is that MPI Ruby allows you to treat objects as messages.

PR:		ports/80310
Submitted by:	Michael Neumann <mneumann@ntecs.de>
2005-06-12 22:18:40 +00:00

21 lines
849 B
Plaintext

--- configure-orig Sun Apr 24 22:32:31 2005
+++ configure Sun Apr 24 22:32:47 2005
@@ -2778,7 +2778,7 @@
{ echo "$as_me:$LINENO: WARNING: Could not find Config Ruby module. Assuming CFLAGS and LIBS for Ruby are in standard path..." >&5
echo "$as_me: WARNING: Could not find Config Ruby module. Assuming CFLAGS and LIBS for Ruby are in standard path..." >&2;}
RUBY_CFLAGS=""
- RUBY_LIBS="-lruby"
+ RUBY_LIBS="-lruby18"
else
echo "$as_me:$LINENO: result: yes" >&5
echo "${ECHO_T}yes" >&6
@@ -2792,7 +2792,7 @@
echo "$as_me:$LINENO: checking ruby LIBS" >&5
echo $ECHO_N "checking ruby LIBS... $ECHO_C" >&6
RB_LIB_DIR=`$RUBY -e 'require "rbconfig"; puts Config::CONFIG["libdir"]'`
- RUBY_LIBS="-lruby -L$RB_LIB_DIR"
+ RUBY_LIBS="-lruby18 -L$RB_LIB_DIR"
echo "$as_me:$LINENO: result: $RUBY_LIBS" >&5
echo "${ECHO_T}$RUBY_LIBS" >&6
fi