diff options
author | mezz <mezz@FreeBSD.org> | 2005-02-25 08:17:28 +0800 |
---|---|---|
committer | mezz <mezz@FreeBSD.org> | 2005-02-25 08:17:28 +0800 |
commit | 3fef5fa236506bb1e45b9f346a133ee59b9b8e0c (patch) | |
tree | dac2ceae821af3cbcbf5af5148888f70f45ca7c9 /devel | |
parent | c3cd885926ba6f4ec09bb536ba465b9fb2f65f76 (diff) | |
download | freebsd-ports-gnome-3fef5fa236506bb1e45b9f346a133ee59b9b8e0c.tar.gz freebsd-ports-gnome-3fef5fa236506bb1e45b9f346a133ee59b9b8e0c.tar.zst freebsd-ports-gnome-3fef5fa236506bb1e45b9f346a133ee59b9b8e0c.zip |
Disable threads again; it has caused the more troubles. This time, it has
${PTHREAD_CFLAGS} and ${PTHREAD_LIBS} include in the build to kill the
headache of old '_r' and can't run with something like ruby-opengl, ruby-sdl,
ruby-gtk2 and etc on FreeBSD 4.x or older 5.x. With this commit should solve
those issues. It is recommend you to rebuild any apps that depend on
lang/ruby18, so see the UPDATING for detail.
Remove the 'BROKEN' on the other ports that knu has added them few weeks ago.
Some of them have been tested, so if one of them is still broke then please
let us know and one of us will re-add the 'BROKEN'.
This changes was worked by lofi and me. lofi did everything on FreeBSD 4.x
and I did others. lofi, thanks for help!
Tested by: many people
Tested on: i386 (FreeBSD 4.x, 5.x and 6.x), amd64 (FreeBSD 5.x and 6.x),
and sparc64 (FreeBSD 5.x and 6.x)
Not test on: ia64 and alpha
Approved by: portmgr (kris)
Diffstat (limited to 'devel')
-rw-r--r-- | devel/ruby-gnustep/Makefile | 4 | ||||
-rw-r--r-- | devel/ruby-pcsc-lite/Makefile | 7 | ||||
-rw-r--r-- | devel/ruby-sdl/Makefile | 3 |
3 files changed, 1 insertions, 13 deletions
diff --git a/devel/ruby-gnustep/Makefile b/devel/ruby-gnustep/Makefile index 34f9d317a74c..3afb73221e24 100644 --- a/devel/ruby-gnustep/Makefile +++ b/devel/ruby-gnustep/Makefile @@ -59,10 +59,6 @@ COMBOLIBDIR= ${SYSLIBDIR} MAKE_ENV+= GNUSTEP_FLATTENED=yes .include <bsd.port.pre.mk> -.if ${OSVERSION} < 502102 -BROKEN= "Systems prior to FreeBSD 502102 are out of support" -.endif - .if ${MACHINE_ARCH} == "i386" GNU_ARCH= ix86 .else diff --git a/devel/ruby-pcsc-lite/Makefile b/devel/ruby-pcsc-lite/Makefile index 2a2d33a5939a..e5705fb41f9b 100644 --- a/devel/ruby-pcsc-lite/Makefile +++ b/devel/ruby-pcsc-lite/Makefile @@ -30,11 +30,6 @@ WRKSRC= ${WRKDIR}/PCSC-ruby DOCS= README.txt EXAMPLES= examples/test.rb examples/pcsclient.rb -.include <bsd.port.pre.mk> -.if ${OSVERSION} < 502102 -BROKEN= "Systems prior to FreeBSD 502102 are out of support" -.endif - post-install: .if !defined(NOPORTDOCS) ${MKDIR} ${RUBY_MODDOCDIR}/ @@ -47,4 +42,4 @@ post-install: .endfor .endif -.include <bsd.port.post.mk> +.include <bsd.port.mk> diff --git a/devel/ruby-sdl/Makefile b/devel/ruby-sdl/Makefile index 8f8addfb9f1d..be3ce572a1e8 100644 --- a/devel/ruby-sdl/Makefile +++ b/devel/ruby-sdl/Makefile @@ -42,9 +42,6 @@ DOCS_JA= NEWS.ja README.ja \ ${RUBY_RD_HTML_FILES:N*.en.html} .include <bsd.port.pre.mk> -.if ${OSVERSION} < 502102 -BROKEN= "Systems prior to FreeBSD 502102 are out of support" -.endif post-extract: dir=`${RUBY_OPENGL_WRKSRC_CMD}`; \ |