aboutsummaryrefslogtreecommitdiff
path: root/devel/boehm-gc
Commit message (Collapse)AuthorAgeFilesLines
* - Use PTHREAD_LIBS.Stanislav Sedov2007-02-051-2/+2
| | | | | | | Submitted by: nork Notes: svn path=/head/; revision=184320
* Use libtool port instead of included version to avoid objformat a.out botchKris Kennaway2007-02-011-0/+1
| | | | Notes: svn path=/head/; revision=183830
* - Update to 6.8Stanislav Sedov2006-09-203-39/+9
| | | | | | | | | | | | - Replace some obsoleted variables - Take maintainership ChangeLog: it's mainly bugfix release Approved by: sem (mentor) Notes: svn path=/head/; revision=173468
* Drop maintainership.MANTANI Nobutaka2006-09-171-1/+1
| | | | Notes: svn path=/head/; revision=173224
* Remove USE_REINPLACE from all categories starting with DEdwin Groothuis2006-05-041-1/+0
| | | | Notes: svn path=/head/; revision=161363
* Conversion to a single libtool environment.Ade Lovett2006-02-232-2/+3
| | | | | | | Approved by: portmgr (kris) Notes: svn path=/head/; revision=156749
* SHA256ifyEdwin Groothuis2006-01-221-0/+1
| | | | | | | Approved by: krion@ Notes: svn path=/head/; revision=154141
* Mass-conversion to the USE_AUTOTOOLS New World Order. The code presentAde Lovett2005-11-151-1/+1
| | | | | | | | | | | | | | | | | | | | in bsd.autotools.mk essentially makes this a no-op given that all the old variables set a USE_AUTOTOOLS_COMPAT variable, which is parsed in exactly the same way as USE_AUTOTOOLS itself. Moreover, USE_AUTOTOOLS has already been extensively tested by the GNOME team -- all GNOME 2.12.x ports use it. Preliminary documentation can be found at: http://people.FreeBSD.org/~ade/autotools.txt which is in the process of being SGMLized before introduction into the Porters Handbook. Light blue touch-paper. Run. Notes: svn path=/head/; revision=148323
* Remove redundant gc:: from gc_cpp.h for gcc41.MANTANI Nobutaka2005-11-132-5/+14
| | | | | | | Submitted by: "Arno J. Klaassen" <arno@heho.snv.jussieu.fr> Notes: svn path=/head/; revision=148099
* Fix build error on amd64 with THREADING option.MANTANI Nobutaka2005-10-232-8/+12
| | | | | | | | PR: ports/87484 Submitted by: Vasil Dimov <vd@datamax.bg> Notes: svn path=/head/; revision=146149
* Link pthread library when WITH_THREADING is defined.MANTANI Nobutaka2005-10-101-0/+7
| | | | | | | Pointed out by: Nicola Vitale <nivit@email.it> Notes: svn path=/head/; revision=144813
* Update to 6.6.MANTANI Nobutaka2005-10-082-3/+3
| | | | Notes: svn path=/head/; revision=144564
* Remove !defined(WITHOUT_*) tests to correct handling of WITH_* knobsMANTANI Nobutaka2005-07-151-4/+4
| | | | | | | | | | when they are defined from command line and BATCH is defined. PR: ports/83430 Submitted by: Sean Farley <sean-freebsd@farley.org> Notes: svn path=/head/; revision=139301
* Add arm support.MANTANI Nobutaka2005-06-292-7/+38
| | | | | | | Submitted by: cognet Notes: svn path=/head/; revision=138200
* Update to 6.5.MANTANI Nobutaka2005-06-264-14/+14
| | | | | | | Submitted by: lioux Notes: svn path=/head/; revision=138045
* Fix build on powerpc.MANTANI Nobutaka2005-03-192-5/+31
| | | | | | | | PR: ports/78577 Submitted by: Martin Minkus <diskiller@diablo.diskiller.net> Notes: svn path=/head/; revision=131645
* Fix compile error on amd64.MANTANI Nobutaka2005-01-091-12/+15
| | | | Notes: svn path=/head/; revision=125945
* Remove patch-mach_dep.c.MANTANI Nobutaka2004-12-301-11/+0
| | | | | | | | | This file should have been removed in previous update. Pointed out by: Scott Robbins <scottro@nyc.rr.com>, kris Notes: svn path=/head/; revision=125489
* Update to 6.4.MANTANI Nobutaka2004-12-294-96/+33
| | | | Notes: svn path=/head/; revision=125438
* Fix breakage on amd64.MANTANI Nobutaka2004-12-162-1/+20
| | | | Notes: svn path=/head/; revision=124222
* Remove BROKEN mark for sparc64.MANTANI Nobutaka2004-11-171-2/+2
| | | | | | | Submitted by: Hannes Mehnert <hannes@mehnert.org> Notes: svn path=/head/; revision=121814
* - Update to 6.3.MANTANI Nobutaka2004-11-088-39/+135
| | | | | | | | | | - Get to work on sparc. [1] - Fix warnings from gc_cpp.h. [2] Submitted by: Hannes Mehnert <hannes@mehnert.org> [1], des [2] Notes: svn path=/head/; revision=121133
* Apply a big libtool patch to allow porters to use the libtool installed byJoe Marcus Clarke2004-07-091-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the libtoolX ports instead of the one included with each port. Ports that set USE_LIBTOOL_VER=X will now use the ports version of libtool instead of the included version. To restore previous behavior, use the new macro, USE_INC_LIBTOOL_VER. Both macros accept the same argument: a libtool version. For example, to use the ports version of libtool-1.5, add the following to your Makefile: USE_LIBTOOL_VER= 15 To use the included version of libtool with extra hacks provided by libtool-1.5, add the following to your Makefile: USE_INC_LIBTOOL_VER= 15 With this change, ports that had to add additional libtool hacks to prevent .la files from being installed or to fix certain threading issues can now delete those hacks (after appropriate testing, of course). PR: 63944 Based on work by:eik and marcus Approved by: ade (autotools maintainer) Tested by: kris on pointyhat Bound to be hidden problems: You bet Notes: svn path=/head/; revision=113296
* Turn off PARALLEL_MARK option in default config.MANTANI Nobutaka2004-06-131-1/+1
| | | | Notes: svn path=/head/; revision=111393
* Use "on" and "off" instead of "yes" and "no" in OPTIONS. [1]MANTANI Nobutaka2004-05-272-22/+14
| | | | | | | | | | | Check WITHOUT_* knobs. [2] Use USE_GNOME=lthack. Fix PKGNAMESUFFIX recursion. Submitted by: kris [1] [2] Notes: svn path=/head/; revision=110129
* Add four knobs (WITH_THREADING, WITH_PARALLEL_MARK, WITH_REDIRECT and ↵MANTANI Nobutaka2004-05-243-3/+118
| | | | | | | | | | | | WITH_FULLDEBUG). Use OPTIONS. Fix a bug in leak detection. Submitted by: green Notes: svn path=/head/; revision=109870
* Unbreak boehm-gc on 32bit platforms.Tilman Keskinoz2004-05-081-1/+1
| | | | | | | | Submitted by: Ryan Beasley <ryanb@goddamnbastard.org> pointy hat^2 to: arved Notes: svn path=/head/; revision=108687
* Fix boehm-gc on amd64.Tilman Keskinoz2004-05-053-2/+51
| | | | | | | | Tested with: w3m Obtained from: NetBSD (via Marc Recht <recht@NetBSD.org>) Notes: svn path=/head/; revision=108445
* Add SIZE to distinfo.MANTANI Nobutaka2004-03-251-0/+1
| | | | | | | Submitted by: trevor Notes: svn path=/head/; revision=105231
* Whoa there, boy, that's a mighty big commit y'all have there...Ade Lovett2004-03-141-1/+1
| | | | | | | | | | | | | | | | | | Begin autotools sanitization sequence by requiring ports to explicitly specify which version of {libtool,autoconf,automake} they need, erasing the concept of a "system default". For ports-in-waiting: USE_LIBTOOL=YES -> USE_LIBTOOL_VER=13 USE_AUTOCONF=YES -> USE_AUTOCONF_VER=213 USE_AUTOMAKE=YES -> USE_AUTOMAKE_VER=14 Ports attempting to use the old style system after June 1st 2004 will be sorely disappointed. Notes: svn path=/head/; revision=103963
* BROKEN on !i386 and !alpha: Does not compileKris Kennaway2004-03-051-1/+7
| | | | Notes: svn path=/head/; revision=103001
* Update to 6.2.MANTANI Nobutaka2003-07-063-2/+3
| | | | Notes: svn path=/head/; revision=84265
* Update to 6.2alpha6.MANTANI Nobutaka2003-06-154-15/+8
| | | | Notes: svn path=/head/; revision=83022
* Link libstdc++ to unbreak build of the ports that depend on boehm-gc.MANTANI Nobutaka2003-05-052-4/+13
| | | | | | | Reported by: jmallett and kris Notes: svn path=/head/; revision=80180
* Install gc_cpp.h and gc_allocator.h to the correct location.MANTANI Nobutaka2003-04-302-1/+5
| | | | | | | Submitted by: des Notes: svn path=/head/; revision=79914
* Update to 6.2alpha4.MANTANI Nobutaka2003-04-204-8/+64
| | | | Notes: svn path=/head/; revision=79352
* Add missing files.Dmitry Sivachenko2003-03-161-0/+3
| | | | | | | Approved by: kris Notes: svn path=/head/; revision=77142
* Update to 6.2alpha3.MANTANI Nobutaka2003-02-252-4/+3
| | | | Notes: svn path=/head/; revision=76456
* De-pkg-comment.MANTANI Nobutaka2003-02-222-1/+1
| | | | Notes: svn path=/head/; revision=76145
* 1 Install gc_backptr.h.MANTANI Nobutaka2003-01-043-1/+14
| | | | | | | | | 2 Use libtool. Submitted by: Søren Vrist <s@vrist.dk> [1], sobomax [2] Notes: svn path=/head/; revision=72517
* Update to 6.1.MANTANI Nobutaka2002-11-175-194/+4
| | | | | | | | Get rid of ONLY_FOR_ARCHS=i386. Take maintainership. Notes: svn path=/head/; revision=70308
* Fix PORTCOMMENTs that were killing INDEX builds.Adam Weinberger2002-11-072-2/+1
| | | | | | | | 105 pointy hats to: me Approved by: pat Notes: svn path=/head/; revision=69625
* Use PORTCOMMENT in the Makefile, and whack the pkg-comment.Adam Weinberger2002-11-062-1/+2
| | | | | | | Approved by: pat Notes: svn path=/head/; revision=69612
* Replace ${PERL} with ${REINPLACE_CMD}Ying-Chieh Liao2002-06-251-1/+2
| | | | | | | | PR: 39842 Submitted by: Oliver Braun <obraun@informatik.unibw-muenchen.de> Notes: svn path=/head/; revision=61964
* Make prefix safe.Patrick Li2002-02-022-2/+6
| | | | | | | | PR: 34528 Submitted by: Kazutoshi Kubota <tu7k-kbt@asahi-net.or.jp> Notes: svn path=/head/; revision=54123
* Update devel/boehm-gc port to 6.0.Ying-Chieh Liao2001-10-118-172/+79
| | | | | | | | | | | | | | | | Since I do not know whether non-i386 platforms are supported, ONLY_FOR_ARCHS=i386 is remained in Makefile. Changes from previous version: * Install shared library. * Do not create and install libleak. Leak detection mode can be initiated at run-time by setting GC_find_leak. PR: 31125 Submitted by: MANTANI Nobutaka <nobutaka@nobutaka.com> Notes: svn path=/head/; revision=48682
* remove deprecated fetch options from FETCH_BEFORE_ARGSMichael Haro2001-04-021-2/+0
| | | | Notes: svn path=/head/; revision=40726
* unbreak for -CURRENT.FUJISHIMA Satsuki2001-01-102-9/+12
| | | | Notes: svn path=/head/; revision=37064
* update to 5.3.FUJISHIMA Satsuki2001-01-035-18/+11
| | | | | | | | | | | | | | | PR: 21774 Submitted by: Mikhail Teterin <mi@monsta.privatelabs.com> maintainer is unreachable, temporarily? Recipient address: mmcg@cs.monash.edu.au Reason: Remote SMTP server has rejected address Diagnostic code: smtp;550 <mmcg@cs.monash.edu.au>... User unknown Remote system: dns;mail2.csse.monash.edu.au (TCP|130.194.1.8|4557|130.194.226.190|25) Notes: svn path=/head/; revision=36670
* Enough FreeBSD/Alpha support to at least allow this to compile.David E. O'Brien2000-07-192-11/+40
| | | | | | | Functionality is untested at this time. Notes: svn path=/head/; revision=30839