aboutsummaryrefslogtreecommitdiff
path: root/databases/gigabase
Commit message (Collapse)AuthorAgeFilesLines
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2019-07-261-1/+1
| | | | | | | | | | | | | | | | | | as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3 to GCC 9.1 under most circumstances now after revision 507371. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, everything INDEX-11 shows with a dependency on lang/gcc9 now. PR: 238330 Notes: svn path=/head/; revision=507372
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2018-12-121-1/+1
| | | | | | | | | | | | | | | | | | defined via Mk/bsd.default-versions.mk which has moved from GCC 7.4 t GCC 8.2 under most circumstances. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, as a double check, everything INDEX-11 showed depending on lang/gcc7. PR: 231590 Notes: svn path=/head/; revision=487272
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2018-07-291-1/+1
| | | | | | | | | | | | | | | | | in the ports tree (via Mk/bsd.default-versions.mk and lang/gcc) which has now moved from GCC 6 to GCC 7 by default. This includes ports - featuring USE_GCC=yes or USE_GCC=any, - featuring USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and those - with USES=compiler specifying one of openmp, nestedfct, c11, c++0x, c++11-lib, c++11-lang, c++14-lang, c++17-lang, or gcc-c++11-lib. PR: 222542 Notes: svn path=/head/; revision=475857
* Bump PORTREVISIONs of all users of math/mpc that we just updated toGerald Pfeifer2018-03-101-1/+1
| | | | | | | version 1.1.0 (via revision 464079). Notes: svn path=/head/; revision=464084
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2017-09-101-1/+1
| | | | | | | | | | | | | | | | | (via Mk/bsd.default-versions.mk and lang/gcc) which has moved from GCC 5.4 to GCC 6.4 under most circumstances. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c++11-lib, c++11-lang, c++14-lang, c++0x, c11, or gcc-c++11-lib. PR: 219275 Notes: svn path=/head/; revision=449591
* databases/gigabase: work around GCC >= 6 bustageJan Beich2017-05-141-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | testtimeseries.cpp: In function 'float fmax(float, float)': testtimeseries.cpp:50:35: error: 'float fmax(float, float)' conflicts with a previous declaration inline float fmax(float x, float y) { return x > y ? x : y; } ^ In file included from /usr/local/lib/gcc6/include/c++/math.h:36:0, from testtimeseries.cpp:15: /usr/local/lib/gcc6/include/c++/cmath:1452:3: note: previous declaration 'constexpr float std::fmax(float, float)' fmax(float __x, float __y) ^~~~ testtimeseries.cpp: In function 'float fmin(float, float)': testtimeseries.cpp:51:35: error: 'float fmin(float, float)' conflicts with a previous declaration inline float fmin(float x, float y) { return x < y ? x : y; } ^ In file included from /usr/local/lib/gcc6/include/c++/math.h:36:0, from testtimeseries.cpp:15: /usr/local/lib/gcc6/include/c++/cmath:1472:3: note: previous declaration 'constexpr float std::fmin(float, float)' fmin(float __x, float __y) ^~~~ testtimeseries.cpp: In function 'int main(int, char**)': testtimeseries.cpp:69:54: error: call of overloaded 'fmax(float&, float&)' is ambiguous quote.high = fmax(quote.open, quote.close); ^ In file included from /usr/local/lib/gcc6/include/c++/cmath:45:0, from /usr/local/lib/gcc6/include/c++/math.h:36, from testtimeseries.cpp:15: /usr/include/math.h:309:8: note: candidate: double fmax(double, double) double fmax(double, double) __pure2; ^~~~ In file included from /usr/local/lib/gcc6/include/c++/math.h:36:0, from testtimeseries.cpp:15: /usr/local/lib/gcc6/include/c++/cmath:1463:5: note: candidate: constexpr typename __gnu_cxx::__promote_2<_Tp, _Up>::__type std::fmax(_Tp, _Up) [with _Tp = float; _Up = float; typename __gnu_cxx::__promote_2<_Tp, _Up>::__type = float] fmax(_Tp __x, _Up __y) ^~~~ /usr/local/lib/gcc6/include/c++/cmath:1456:3: note: candidate: constexpr long double std::fmax(long double, long double) fmax(long double __x, long double __y) ^~~~ /usr/local/lib/gcc6/include/c++/cmath:1452:3: note: candidate: constexpr float std::fmax(float, float) fmax(float __x, float __y) ^~~~ testtimeseries.cpp:50:14: note: candidate: float fmax(float, float) inline float fmax(float x, float y) { return x > y ? x : y; } ^~~~ testtimeseries.cpp:70:53: error: call of overloaded 'fmin(float&, float&)' is ambiguous quote.low = fmin(quote.open, quote.close); ^ In file included from /usr/local/lib/gcc6/include/c++/cmath:45:0, from /usr/local/lib/gcc6/include/c++/math.h:36, from testtimeseries.cpp:15: /usr/include/math.h:310:8: note: candidate: double fmin(double, double) double fmin(double, double) __pure2; ^~~~ In file included from /usr/local/lib/gcc6/include/c++/math.h:36:0, from testtimeseries.cpp:15: /usr/local/lib/gcc6/include/c++/cmath:1483:5: note: candidate: constexpr typename __gnu_cxx::__promote_2<_Tp, _Up>::__type std::fmin(_Tp, _Up) [with _Tp = float; _Up = float; typename __gnu_cxx::__promote_2<_Tp, _Up>::__type = float] fmin(_Tp __x, _Up __y) ^~~~ /usr/local/lib/gcc6/include/c++/cmath:1476:3: note: candidate: constexpr long double std::fmin(long double, long double) fmin(long double __x, long double __y) ^~~~ /usr/local/lib/gcc6/include/c++/cmath:1472:3: note: candidate: constexpr float std::fmin(float, float) fmin(float __x, float __y) ^~~~ testtimeseries.cpp:51:14: note: candidate: float fmin(float, float) inline float fmin(float x, float y) { return x < y ? x : y; } ^~~~ PR: 219275 Notes: svn path=/head/; revision=440885
* Bump PORTREVISIONs for ports depending on the canonical version of GCC andGerald Pfeifer2017-04-011-1/+1
| | | | | | | | | | | | | | | | | lang/gcc which have moved from GCC 4.9.4 to GCC 5.4 (at least under some circumstances such as versions of FreeBSD or platforms). This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using using Mk/bsd.octave.mk which in turn has USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c++11-lib, c++14-lang, c++11-lang, c++0x, c11, or gcc-c++11-lib. PR: 216707 Notes: svn path=/head/; revision=437439
* Bump PORTREVISIONS for ports depending on the canonical version of GCC andGerald Pfeifer2016-11-201-1/+1
| | | | | | | | | | | | lang/gcc which have moved from GCC 4.8.5 to GCC 4.9.4 (at least under some circumstances such as versions of FreeBSD or platforms). In particular that is ports with USE_GCC=yes, USE_GCC=any, or one of gcc-c++11-lib, openmp, nestedfct, c++11-lib as well as c++14-lang, c++11-lang, c++0x, c11 requested via USES=compiler. Notes: svn path=/head/; revision=426566
* - Strip librariesDmitry Marakasov2015-06-071-0/+4
| | | | Notes: svn path=/head/; revision=388722
* Convert to USES=autoreconfTijl Coosemans2015-04-183-41/+26
| | | | Notes: svn path=/head/; revision=384248
* Remove Authors and License from pkg-descrBaptiste Daroussin2015-03-021-1/+0
| | | | Notes: svn path=/head/; revision=380303
* Cleanup plistBaptiste Daroussin2014-10-201-1/+0
| | | | Notes: svn path=/head/; revision=371255
* Use default LIBTOOLIZE_ARGSTijl Coosemans2014-09-131-1/+0
| | | | Notes: svn path=/head/; revision=368126
* - Update to 3.91Martin Wilke2014-06-185-52/+60
| | | | | | | PR: 190893 Notes: svn path=/head/; revision=358226
* Convert to USES=dos2unixBaptiste Daroussin2014-05-261-2/+2
| | | | | | | With hat: portmgr Notes: svn path=/head/; revision=355278
* - Drop maintainershipMartin Wilke2014-02-061-1/+1
| | | | Notes: svn path=/head/; revision=342932
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-5/+2
| | | | | | | databases) Notes: svn path=/head/; revision=327717
* - Unbreak buildMartin Wilke2012-05-162-27/+28
| | | | Notes: svn path=/head/; revision=296711
* - Mark BROKEN: does not patchPav Lucistnik2012-05-131-0/+2
| | | | | | | Reported by: pointyhat Notes: svn path=/head/; revision=296556
* - Update to 3.86Martin Wilke2012-05-033-8/+9
| | | | | | | | PR: 166967 Submitted by: Muhammad Moinur Rahman <5u623l20@gmail.com> Notes: svn path=/head/; revision=295963
* - Get rid FreeBSD 6.x supportMartin Wilke2011-11-071-9/+1
| | | | Notes: svn path=/head/; revision=285199
* - Update to 3.84Martin Wilke2011-11-062-3/+3
| | | | Notes: svn path=/head/; revision=285168
* - Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)Dmitry Marakasov2011-09-231-1/+2
| | | | | | | | | | | | - Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead PR: 157936 Submitted by: myself Exp-runs by: pav Approved by: pav Notes: svn path=/head/; revision=282282
* Remove USE_GNOME=gnometarget from ports. It has been a empty keyword sinceKoop Mast2011-08-111-1/+0
| | | | | | | | | | mid 2008. PR: ports/159624 Submitted by: Ruslan Mahmatkhanov <cvs-src@yandex.ru> Notes: svn path=/head/; revision=279506
* - Update to 3.82Martin Wilke2011-06-122-3/+3
| | | | Notes: svn path=/head/; revision=275416
* - Update to 3.80Martin Wilke2011-02-122-4/+3
| | | | Notes: svn path=/head/; revision=269017
* Sync to new bsd.autotools.mkAde Lovett2010-12-041-1/+1
| | | | Notes: svn path=/head/; revision=265663
* - Update to 3.79Martin Wilke2010-11-042-4/+4
| | | | Notes: svn path=/head/; revision=264043
* - Update to 3.77Martin Wilke2010-07-102-4/+4
| | | | Notes: svn path=/head/; revision=257582
* - Update to 3.76Martin Wilke2010-04-022-4/+4
| | | | | | | | PR: 145153 Submitted by: Sahil Tandon <sahil@tandon.net> Notes: svn path=/head/; revision=252070
* - Update to 3.75Martin Wilke2010-03-113-6/+6
| | | | Notes: svn path=/head/; revision=250912
* - Switch SourceForge ports to the new File Release System: categories ↵Dmitry Marakasov2009-08-221-1/+1
| | | | | | | starting with D Notes: svn path=/head/; revision=240068
* -Repocopy devel/libtool15 -> libtool22 and libltdl15 -> libltdl22.Jeremy Messenger2009-08-021-1/+1
| | | | | | | | | | | | | | | | | | | | | -Update libtool and libltdl to 2.2.6a. -Remove devel/libtool15 and devel/libltdl15. -Fix ports build with libtool22/libltdl22. -Bump ports that depend on libltdl22 due to shared library version change. -Explain what to do update in the UPDATING. It has been tested with GNOME2, XFCE4, KDE3, KDE4 and other many wm/desktop and applications in the runtime. With help: marcus and kwm Pointyhat-exp: a few times by pav Tested by: pgollucci, "Romain Tartière" <romain@blogreen.org>, and a few MarcusCom CVS users. Also, I might have missed a few. Repocopy by: marcus Approved by: portmgr Notes: svn path=/head/; revision=238781
* - Update to 3.70Martin Wilke2009-07-112-4/+4
| | | | Notes: svn path=/head/; revision=237614
* - Update to 3.69Martin Wilke2009-03-222-4/+4
| | | | Notes: svn path=/head/; revision=230664
* - Update to 3.68Martin Wilke2009-02-032-4/+4
| | | | Notes: svn path=/head/; revision=227526
* - Update to 3.67Martin Wilke2008-12-232-5/+5
| | | | | | | - Take maintainership Notes: svn path=/head/; revision=224649
* - Update to 3.66Pietro Cerutti2008-07-042-4/+4
| | | | | | | | PR: 125230 Submitted by: Ports Fury Notes: svn path=/head/; revision=216327
* - Update to 3.65Martin Wilke2008-05-302-4/+4
| | | | | | | | PR: 124037 Submitted by: Ports Fury Notes: svn path=/head/; revision=213932
* - Update to 3.61Martin Wilke2007-12-145-22/+35
| | | | | | | | PR: 118605 Submitted by: KATO Tsuguru <tkato432@yahoo.com> Notes: svn path=/head/; revision=203559
* - update to 3.58Martin Matuska2007-07-232-7/+7
| | | | | | | | | PR: ports/114781 Submitted by: Thomas Abthorpe <thomas@goodking.ca> Approved by: garga (mentor, implicitt) Notes: svn path=/head/; revision=196158
* Drop maintainership.Sergey A. Osokin2006-09-141-1/+1
| | | | Notes: svn path=/head/; revision=173070
* Update to 3.49.Sergey A. Osokin2006-06-132-4/+4
| | | | Notes: svn path=/head/; revision=165305
* Update to 3.48.Sergey A. Osokin2006-04-172-4/+4
| | | | Notes: svn path=/head/; revision=159780
* Update to 3.47.Sergey A. Osokin2006-04-142-4/+4
| | | | Notes: svn path=/head/; revision=159479
* Update to 3.46.Sergey A. Osokin2006-03-152-8/+5
| | | | Notes: svn path=/head/; revision=157158
* Conversion to a single libtool environment.Ade Lovett2006-02-232-1/+3
| | | | | | | Approved by: portmgr (kris) Notes: svn path=/head/; revision=156749
* Fix build depended port (i.e. www/oops) by install addition header.Sergey A. Osokin2006-02-202-0/+5
| | | | | | | | | | Bump PORTREVISION. No cookie for: author Notice about broken build from: az, kris Notes: svn path=/head/; revision=156468
* Update to 3.45.Sergey A. Osokin2006-02-152-4/+4
| | | | Notes: svn path=/head/; revision=156108