Commit 6a497e3d authored by Gustavo Zacarias's avatar Gustavo Zacarias Committed by Peter Korsgaard
Browse files

ruby: bump to version 1.9.3-p362

parent 3874b04f
Loading
Loading
Loading
Loading

package/ruby/ruby-configure.patch

deleted100644 → 0
+0 −30
Original line number Diff line number Diff line
diff -Nura ruby-1.9.2-p0.orig/configure.in ruby-1.9.2-p0/configure.in
--- ruby-1.9.2-p0.orig/configure.in	2010-08-14 05:11:59.000000000 -0300
+++ ruby-1.9.2-p0/configure.in	2010-11-04 15:46:22.478191926 -0300
@@ -1410,7 +1410,25 @@
 fi
 
 AC_FUNC_GETPGRP
-AC_FUNC_SETPGRP
+
+dnl AC_FUNC_SETPGRP does not work if cross compiling
+dnl Instead, assume we will have a prototype for setpgrp if cross compiling.
+if test "$cross_compiling" = no; then
+  AC_FUNC_SETPGRP
+else
+  AC_CACHE_CHECK([whether setpgrp takes no argument], ac_cv_func_setpgrp_void,
+    [AC_TRY_COMPILE([
+#include <unistd.h>
+], [
+  if (setpgrp(1,1) == -1)
+    exit (0);
+  else
+    exit (1);
+], ac_cv_func_setpgrp_void=no, ac_cv_func_setpgrp_void=yes)])
+if test $ac_cv_func_setpgrp_void = yes; then
+  AC_DEFINE(SETPGRP_VOID, 1)
+fi
+fi
 
 AC_C_BIGENDIAN
 AC_C_CONST
+5 −5
Original line number Diff line number Diff line
@@ -4,15 +4,15 @@
#
#############################################################

RUBY_VERSION = 1.9.2-p320
RUBY_VERSION = 1.9.3-p362
RUBY_SITE = ftp://ftp.ruby-lang.org/pub/ruby/1.9
RUBY_AUTORECONF = YES
HOST_RUBY_AUTORECONF = YES
RUBY_DEPENDENCIES = host-ruby
HOST_RUBY_DEPENDENCIES =
RUBY_DEPENDENCIES = host-pkgconf host-ruby
HOST_RUBY_DEPENDENCIES = host-pkgconf
RUBY_MAKE_ENV = $(TARGET_MAKE_ENV)
RUBY_CONF_OPT = --disable-install-doc --disable-rpath
HOST_RUBY_CONF_OPT = --disable-install-doc --with-out-ext=curses,readline
RUBY_LICENSE = Ruby
RUBY_LICENSE_FILES = LEGAL

# Force optionals to build before we do
ifeq ($(BR2_PACKAGE_BERKELEYDB),y)