mirror of
https://git.freebsd.org/ports.git
synced 2025-04-30 10:36:38 -04:00
Changes: https://www.ruby-lang.org/en/news/2023/11/12/ruby-3-3-0-preview3-released/ https://github.com/ruby/ruby/releases/tag/v3_3_0_preview3
36 lines
1.4 KiB
Text
36 lines
1.4 KiB
Text
--- configure.ac.orig 2023-11-12 04:51:16 UTC
|
|
+++ configure.ac
|
|
@@ -1356,7 +1356,7 @@ AC_CHECK_HEADERS(ucontext.h)
|
|
AC_CHECK_HEADERS(utime.h)
|
|
AC_CHECK_HEADERS(sys/epoll.h)
|
|
|
|
-AS_CASE("$target_cpu", [x64|x86_64|i[3-6]86*], [
|
|
+AS_CASE("$target_cpu", [amd64|x64|x86_64|i[3-6]86*], [
|
|
AC_CHECK_HEADERS(x86intrin.h)
|
|
])
|
|
RUBY_UNIVERSAL_CHECK_HEADER([x86_64, i386], x86intrin.h)
|
|
@@ -3101,7 +3101,7 @@ AC_SUBST(EXTOBJS)
|
|
: ${LDSHARED='$(CC) -shared'}
|
|
AS_IF([test "$rb_cv_binary_elf" = yes], [
|
|
LDFLAGS="$LDFLAGS -rdynamic"
|
|
- DLDFLAGS="$DLDFLAGS "'-Wl,-soname,$@'
|
|
+ DLDFLAGS="$DLDFLAGS "'-Wl,-E'
|
|
], [
|
|
test "$GCC" = yes && test "$rb_cv_prog_gnu_ld" = yes || LDSHARED='$(LD) -Bshareable'
|
|
])
|
|
@@ -3559,6 +3559,7 @@ AS_CASE("$enable_shared", [yes], [
|
|
[freebsd*|dragonfly*], [
|
|
LIBRUBY_SO='lib$(RUBY_SO_NAME).$(SOEXT).$(MAJOR)$(MINOR)'
|
|
LIBRUBY_SONAME='$(LIBRUBY_SO)'
|
|
+ RUBY_APPEND_OPTIONS(LIBRUBY_DLDFLAGS, ['-Wl,-soname,${LIBRUBY_SO}'])
|
|
AS_IF([test "$rb_cv_binary_elf" != "yes" ], [
|
|
LIBRUBY_SO="$LIBRUBY_SO.\$(TEENY)"
|
|
LIBRUBY_ALIASES=''
|
|
@@ -4391,6 +4392,7 @@ AS_IF([test "${universal_binary-no}" = yes ], [
|
|
arch="${target_cpu}-mingw-ucrt"
|
|
], [
|
|
arch="${target_cpu}-${target_os}"
|
|
+ AS_CASE(["$target_cpu-$target_os"], [x86_64-freebsd*],[arch=amd64-${target_os}])
|
|
])
|
|
AC_DEFINE_UNQUOTED(RUBY_PLATFORM, "$arch")
|
|
|