notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
Want a good monitor light? See my photosAll times are UTC
Ukraine
This referral link gives you 10% off a Fastmail.com account and gives me a discount on my Fastmail account.

Get notified when packages are built

A new feature has been added. FreshPorts already tracks package built by the FreeBSD project. This information is displayed on each port page. You can now get an email when FreshPorts notices a new package is available for something on one of your watch lists. However, you must opt into that. Click on Report Subscriptions on the right, and New Package Notification box, and click on Update.

Finally, under Watch Lists, click on ABI Package Subscriptions to select your ABI (e.g. FreeBSD:14:amd64) & package set (latest/quarterly) combination for a given watch list. This is what FreshPorts will look for.

non port: databases/tdb/Makefile

Number of commits found: 69

Friday, 12 Jan 2024
13:00 Baptiste Daroussin (bapt) search for other commits by this committer
databases/tdb: leave manpages in share/man
commit hash: e4a31537be8e22b910cb582bc798034139b86165 commit hash: e4a31537be8e22b910cb582bc798034139b86165 commit hash: e4a31537be8e22b910cb582bc798034139b86165 commit hash: e4a31537be8e22b910cb582bc798034139b86165 e4a3153
Sunday, 15 Oct 2023
15:44 Dimitry Andric (dim) search for other commits by this committer
databases/tdb: fix build with lld 17

Building databases/tdb with lld 17 results in the following link errors:

  11:57:13 runner ['cc',
'-Wl,--version-script=/wrkdirs/usr/ports/databases/tdb/work/tdb-1.4.7/bin/default/tdb.vscript',
'-shared', '-Wl,-h,libtdb.so.1', 'lib/replace/replace.c.2.o',
'lib/replace/strptime.c.2.o', 'lib/replace/xattr.c.2.o', 'common/check.c.1.o',
'common/error.c.1.o', 'common/tdb.c.1.o', 'common/traverse.c.1.o',
'common/freelistcheck.c.1.o', 'common/lock.c.1.o', 'common/dump.c.1.o',
'common/freelist.c.1.o', 'common/io.c.1.o', 'common/open.c.1.o',
'common/transaction.c.1.o', 'common/hash.c.1.o', 'common/summary.c.1.o',
'common/rescue.c.1.o', 'common/mutex.c.1.o',
'-o/wrkdirs/usr/ports/databases/tdb/work/tdb-1.4.7/bin/default/libtdb.so',
'-Wl,-Bstatic', '-Wl,-Bdynamic', '-lpthread', '-fstack-protector-strong',
'-Wl,-no-undefined']
  ld: error: version script assignment of 'TDB_1.2.1' to symbol 'tdb_do_delete'
failed: symbol not defined
  ld: error: version script assignment of 'local' to symbol '_end' failed:
symbol not defined
  ld: error: version script assignment of 'local' to symbol '__bss_start'
failed: symbol not defined
  ld: error: version script assignment of 'local' to symbol '_edata' failed:
symbol not defined
  cc: error: linker command failed with exit code 1 (use -v to see invocation)

Since the linker version scripts are generated dynamically, suppress
errors with lld >= 17 due to these undefined symbols.

PR:		274146
Approved by:	maintainer timeout (2 weeks)
MFH:		2023Q4
commit hash: bc9cbb7a3ac19cd58f0e910cc3438a786c173c93 commit hash: bc9cbb7a3ac19cd58f0e910cc3438a786c173c93 commit hash: bc9cbb7a3ac19cd58f0e910cc3438a786c173c93 commit hash: bc9cbb7a3ac19cd58f0e910cc3438a786c173c93 bc9cbb7
Tuesday, 27 Jun 2023
19:34 Rene Ladan (rene) search for other commits by this committer
all: remove explicit versions in USES=python for "3.x+"

The logic in USES=python will automatically convert this to 3.8+ by
itself.

Adjust two ports that only had Python 3.7 mentioned but build fine
on Python 3.8 too.

finance/quickfix: mark BROKEN with PYTHON

libtool: compile:  c++ -DHAVE_CONFIG_H -I. -I../.. -I -I. -I.. -I../.. -I../C++
-DLIBICONV_PLUG -DPYTHON_MAJOR_VERSION=3 -Wno-unused-variable
-Wno-maybe-uninitialized -O2 -pipe -DLIBICONV_PLUG -fstack-protector-strong
-fno-strict-aliasing -DLIBICONV_PLUG -Wall -ansi
-Wno-unused-command-line-argument -Wpointer-arith -Wwrite-strings
-Wno-overloaded-virtual -Wno-deprecated-declarations -Wno-deprecated -std=c++0x
-MT _quickfix_la-QuickfixPython.lo -MD -MP -MF
.deps/_quickfix_la-QuickfixPython.Tpo -c QuickfixPython.cpp  -fPIC -DPIC -o
.libs/_quickfix_la-QuickfixPython.o
warning: unknown warning option '-Wno-maybe-uninitialized'; did you mean
'-Wno-uninitialized'? [-Wunknown-warning-option]
QuickfixPython.cpp:175:11: fatal error: 'Python.h' file not found
          ^~~~~~~~~~
1 warning and 1 error generated.

Reviewed by:	portmgr, vishwin, yuri
Differential Revision:	<https://reviews.freebsd.org/D40568>
commit hash: 3d9a815d9c5acbb71f4bb07738bdeab4879feacb commit hash: 3d9a815d9c5acbb71f4bb07738bdeab4879feacb commit hash: 3d9a815d9c5acbb71f4bb07738bdeab4879feacb commit hash: 3d9a815d9c5acbb71f4bb07738bdeab4879feacb 3d9a815
Wednesday, 7 Sep 2022
21:10 Stefan Eßer (se) search for other commits by this committer
Add WWW entries to port Makefiles

It has been common practice to have one or more URLs at the end of the
ports' pkg-descr files, one per line and prefixed with "WWW:". These
URLs should point at a project website or other relevant resources.

Access to these URLs required processing of the pkg-descr files, and
they have often become stale over time. If more than one such URL was
present in a pkg-descr file, only the first one was tarnsfered into
the port INDEX, but for many ports only the last line did contain the
port specific URL to further information.

There have been several proposals to make a project URL available as
a macro in the ports' Makefiles, over time.

This commit implements such a proposal and moves one of the WWW: entries
of each pkg-descr file into the respective port's Makefile. A heuristic
attempts to identify the most relevant URL in case there is more than
one WWW: entry in some pkg-descr file. URLs that are not moved into the
Makefile are prefixed with "See also:" instead of "WWW:" in the pkg-descr
files in order to preserve them.

There are 1256 ports that had no WWW: entries in pkg-descr files. These
ports will not be touched in this commit.

The portlint port has been adjusted to expect a WWW entry in each port
Makefile, and to flag any remaining "WWW:" lines in pkg-descr files as
deprecated.

Approved by:		portmgr (tcberner)
commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 b7f0544
Saturday, 30 Jul 2022
00:08 Timur I. Bakeyev (timur) search for other commits by this committer
databases/tdb: Upgrade 1.4.3 to 1.4.7.

PR:		257528
commit hash: 63907c9a751afd4ae471d082c731c5f738d07c56 commit hash: 63907c9a751afd4ae471d082c731c5f738d07c56 commit hash: 63907c9a751afd4ae471d082c731c5f738d07c56 commit hash: 63907c9a751afd4ae471d082c731c5f738d07c56 63907c9
Thursday, 25 Nov 2021
21:40 Stefan Eßer (se) search for other commits by this committer
*/*: Remove redundant '-*' from CONFLICTS definitions

The conflict checks compare the patterns first against the package
names without version (as reported by "pkg query "%n"), then - if
there was no match - agsinst the full package names including the
version (as reported by "pkg query "%n-%v").

Approved by: portmgr (blanket)
commit hash: 04b9da414081a733478d3def4e1e3777908536c6 commit hash: 04b9da414081a733478d3def4e1e3777908536c6 commit hash: 04b9da414081a733478d3def4e1e3777908536c6 commit hash: 04b9da414081a733478d3def4e1e3777908536c6 04b9da4
Tuesday, 19 Oct 2021
08:36 Tobias Kortkamp (tobik) search for other commits by this committer
*: apply refactor.remove-consecutive-empty-lines

Submitted by:	portedit
commit hash: ce1af7fdc2cde4dc409a344a4210a3af581ccd2d commit hash: ce1af7fdc2cde4dc409a344a4210a3af581ccd2d commit hash: ce1af7fdc2cde4dc409a344a4210a3af581ccd2d commit hash: ce1af7fdc2cde4dc409a344a4210a3af581ccd2d ce1af7f
Wednesday, 7 Apr 2021
08:09 Mathieu Arnold (mat) search for other commits by this committer
One more small cleanup, forgotten yesterday.
Reported by:	lwhsu
commit hash: cf118ccf875508b9a1c570044c93cfcc82bd455c commit hash: cf118ccf875508b9a1c570044c93cfcc82bd455c commit hash: cf118ccf875508b9a1c570044c93cfcc82bd455c commit hash: cf118ccf875508b9a1c570044c93cfcc82bd455c cf118cc
Tuesday, 6 Apr 2021
14:31 Mathieu Arnold (mat) search for other commits by this committer
Remove # $FreeBSD$ from Makefiles.
commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb 305f148
Thursday, 24 Dec 2020
14:11 fluffy search for other commits by this committer
databases/tdb: use macro PYTHON_EXT_SUFFIX Right Way(TM)

Pointyhat to:	fluffy
Original commitRevision:559166 
13:20 fluffy search for other commits by this committer
databases/tdb: switch to PYTHON_EXT_SUFFIX
Original commitRevision:559074 
Sunday, 5 Jul 2020
00:23 timur search for other commits by this committer
Update Samba supplimentary libs to the recent ones.

PR:		246284
		246285
		246286
		246287
Original commitRevision:541242 
Wednesday, 19 Feb 2020
17:59 antoine search for other commits by this committer
Clean up USES

With hat:	portmgr
Original commitRevision:526520 
Friday, 11 Oct 2019
00:40 timur search for other commits by this committer
Upgrade port to 1.4.2 version
Original commitRevision:514256 
Friday, 21 Jun 2019
07:32 mandree search for other commits by this committer
Reinstate PORTEPOCH=1 to prevent version from going backwards.
Original commitRevision:504761 
Wednesday, 19 Jun 2019
22:44 timur search for other commits by this committer
Upgrade Samba supplimentary ports to the new build system. Effectively they are
dependent now from Python 3.4+ for the build, unless NO_PYTHON is specified,
in which case ports still can be build with Python 2.7.

That should address legacy Python dependencies for some non-Samba ports as well.
Original commitRevision:504597 
Tuesday, 31 Jul 2018
04:09 timur search for other commits by this committer
Update Samba supplimentary libs to the newer versions.

Sponsored by:	iXsystems Inc.
Original commitRevision:475968 
Thursday, 17 May 2018
02:24 timur search for other commits by this committer
Update Samba supplimentary libraries, fixed (new) portlint errors, changed
Python3 version knob.
Original commitRevision:470190 
Tuesday, 20 Feb 2018
23:17 timur search for other commits by this committer
Update supplimentary Samba libs to the latest versions.

Sponsored by:	iXsystems Inc.
Original commitRevision:462465 
Sunday, 17 Dec 2017
06:06 timur search for other commits by this committer
Small useless bump of the version to make poudriere pick up changes in
WITH_SAMBA4_PYTHON3 usage
Original commitRevision:456519 
Tuesday, 21 Nov 2017
17:00 timur search for other commits by this committer
Make sure that you can compile all supplimentary ports without Python bindings
Original commitRevision:454619 
Monday, 20 Nov 2017
13:39 timur search for other commits by this committer
Fix too broad Python specification, cut down to 2.7 explicitly.
Original commitRevision:454556 
06:40 timur search for other commits by this committer
Update Samba supplimentary libraries to the most recent versions.
Original commitRevision:454532 
Monday, 2 Jan 2017
22:53 timur search for other commits by this committer
Update Samba4* supplimentary libraries to the newer versions.
Made databases/ldb to depend on openldap-sasl-client, so it won't conflict with
the corresponding requirement of net/samba4* ports.
Original commitRevision:430417 
Tuesday, 12 Apr 2016
22:40 timur search for other commits by this committer
This is routine update for the Samba supplimentary libraries, bumping them to
the versions that commonly acceptable by recent Samba ports, in particular,
samba44.
Original commitRevision:413162 
Friday, 1 Apr 2016
14:00 mat search for other commits by this committer
Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.

With hat:	portmgr
Sponsored by:	Absolight
Original commitRevision:412346 
Monday, 30 Nov 2015
00:17 timur search for other commits by this committer
Update Samba supplimentary libs
Original commitRevision:402636 
Saturday, 19 Sep 2015
13:36 timur search for other commits by this committer
Fix to the coredump in the library code of the Samba libs. Provided by Andrey
Kramarenko.

https://bugzilla.samba.org/show_bug.cgi?id=11455
Original commitRevision:397323 
Sunday, 9 Aug 2015
22:52 timur search for other commits by this committer
Upgrade relevant ports to the latest releases.

PR:		202041
Original commitRevision:393833 
Thursday, 14 May 2015
10:15 mat search for other commits by this committer
MASTER_SITES cleanup.

- Replace ${MASTER_SITE_FOO} with FOO.
- Merge MASTER_SITE_SUBDIR into MASTER_SITES when possible. (This means 99.9%
  of the time.)
- Remove occurrences of MASTER_SITE_LOCAL when no subdirectory was present and
  no hint of what it should be was present.
- Fix some logic.
- And generally, make things more simple and easy to understand.

While there, add magic values to the FESTIVAL, GENTOO, GIMP, GNUPG, QT and
SAMBA macros.

Also, replace some EXTRACT_SUFX occurences with USES=tar:*.

Checked by:	make fetch-urlall-list
With hat:	portmgr
Sponsored by:	Absolight
Original commitRevision:386312 
Wednesday, 8 Apr 2015
15:05 bapt search for other commits by this committer
Add a new USES=waf to handle the waf building system, allowing to factorise code
Plug waf into MAKE_CMD and CONFIGURE_CMD so the regular defined targets can be
reused

Always define _MAKE_JOBS so that when bsd.port.mk will stop overwritting
_MAKE_JOBS when parallel jobs are disabled we can enforce -j1 (which is needed
to really disable parallelisation with waf

WAF_CMD has been created to allow one to override the location of the waf script
relatively to WRKSRC

CONFIGURE_TARGET is by default defined to "configure"
ALL_TARGET is by default defined to "build"
INSTALL_TARGET is by default defined to "install"

USES=waf is by default stagedir safe
Original commitRevision:383571 
Friday, 16 Jan 2015
17:10 tijl search for other commits by this committer
Restore PORTEPOCH
Original commitRevision:377193 
03:49 timur search for other commits by this committer
Upgrade supplimentary net/samba ports to the minimal common required versions.
Original commitRevision:377150 
Sunday, 19 Oct 2014
08:50 mva search for other commits by this committer
- Convert ports from databases/ and deskutils/ to new USES=python

Approved by:	portmgr (implicit)
Original commitRevision:371173 
Saturday, 9 Aug 2014
15:44 mva search for other commits by this committer
Convert the Python framework bits to USES=python.

Please use USES=python instead of USE_PYTHON.

  USE_PYTHON=yes becomes USES=python
  USE_PYTHON=2.7+ becomes USES=python:2.7+
  USE_PYTHON_BUILD=3.3 becomes USES=python:3.3,build
  ...

A new PYTHON_FEATURES variable was added, which enables certain features for a
port and replaces some knobs at the same time;

  PYTHON_FEATURES=distutils replaces USE_PYDISTUTILS
  PYTHON_FEATURES=autoplist replaces PYDISTUTILS_AUTOPLIST
  PYTHON_FEATURES=py3kplist replaces PYTHON_PY3K_PLIST_HACK
  PYTHON_FEATURES=noegginfo replaces PYDISTUTILS_NOEGGINFO
  PYTHON_FEATURES=concurrent replaces PYTHON_CONCURRENT_INSTALL
  PYTHON_FEATURES=pythonprefix replaces USE_PYTHON_PREFIX

Some knobs have been deprecated and are to be removed in the near future:

  PYTHON_MASTER_SITES - use MASTER_SITE_PYTHON instead
  PYTHON_PKGNAMESUFFIX - use PYTHON_PKGNAMEPREFIX instead
  PYDISTUTILS_INSTALLNOSINGLE - deprecated without replacement

Some knobs have been removed completely:

  PYTHON_MASTER_SITE_SUBDIR
  PYTHON_DISTNAME
  PYTHON_WRKSRC

Several variables specific to the Python framework are no longer passed to the
build environment to avoid polluting dependency builds.

  PYTHON_VERSION is not passed to .MAKEFLAGS anymore
  PYTHON_DEFAULT_VERSION,
  PYTHON_DEFAULT_PORTVERSION and
  PYTHONBASE are not passed to the make environment anymore

The conversion required a couple of ports to be updated to fit the changes and
new requirements. Those included "bsd.python.mk" directly or contained checks
in places, for which the USES framework would fail to provide correct values.

Python modules directly using the upstream Python package (such as py-tkinter
or py-sqlite3) were updated to avoid using the now unnecessary and remmoved
knobs from "bsd.python.mk".

Phabric:	D399
exp-run:	167368 192357
PR:		167368 192357
Reviewed by:	antoine, wg
Exp-run award:	antoine
With hat:	python@
Approved by:	portmgr
Original commitRevision:364450 
Sunday, 3 Aug 2014
19:30 adamw search for other commits by this committer
A couple ports added support for OPTIONS but forgot to add them to
OPTIONS_DEFINE.
Original commitRevision:363931 
Sunday, 20 Apr 2014
23:46 timur search for other commits by this committer
Add NO_PYTHON knob to make lev@ a bit happier. Minor version update of tdb.
Original commitRevision:351657 
Thursday, 13 Mar 2014
02:12 timur search for other commits by this committer
Usage of .pre.mk requires corresponding .post.mk
Original commitRevision:348022 
00:28 timur search for other commits by this committer
Convert to the staged environment
Original commitRevision:348018 
Wednesday, 15 Jan 2014
23:51 bapt search for other commits by this committer
Reduce over inclusion of bsd.port.mk
Original commitRevision:339872 
Monday, 13 Jan 2014
21:00 rene search for other commits by this committer
Python cleanup:
- USE_PYTHON* = 2.X -> USE_PYTHON* = 2
- USE_PYTHON* = 2.X+ -> USE_PYTHON* = yes
Reviewed by:	python (mva, rm)
Approved by:	portmgr-lurkers (mat)
Original commitRevision:339634 
Friday, 20 Sep 2013
16:13 bapt search for other commits by this committer
Add NO_STAGE all over the place in preparation for the staging support (cat:
databases)
Original commitRevision:327717 
10:54 ak search for other commits by this committer
- Remove last vestiges of MAKE_JOBS_SAFE knob

Approved by:	portmgr (bapt)
Original commitRevision:327683 
Saturday, 17 Aug 2013
23:54 mva search for other commits by this committer
- Fix build after the recent lang/python changes
Original commitRevision:324882 
Wednesday, 14 Aug 2013
22:35 ak search for other commits by this committer
- Remove MAKE_JOBS_SAFE variable

Approved by:	portmgr (bdrewery)
Original commitRevision:324744 
Monday, 1 Jul 2013
02:36 timur search for other commits by this committer
Update relevant ports to the latest release and fix disappeared --prefix
from the bsd.ports.mk.

PR:		180102, 180103, 180136
Original commitRevision:322111 
Tuesday, 23 Apr 2013
14:20 bapt search for other commits by this committer
Finish converting the whole ports tree to USES=pkgconfig
Original commitRevision:316355 
Thursday, 21 Mar 2013
17:43 bapt search for other commits by this committer
Convert to new options framework left unconverted ports in databases category
Original commitRevision:314856 
Thursday, 31 Jan 2013
15:03 timur search for other commits by this committer
Update port to the latest version
Original commitRevision:311316 
Monday, 23 Jul 2012
07:14 rm search for other commits by this committer
- strict python version to 2.x (doesn't build with python3)

PR:		170072
Submitted by:	Kimmo Paasiala <kpaasial at gmail dot com>
Approved by:	timur (maintainer)
Original commit
Thursday, 3 May 2012
22:53 timur search for other commits by this committer
Fix damage cause by commits of eadler and miwi
Original commit
Monday, 1 Aug 2011
20:05 timur search for other commits by this committer
Update to version 1.2.9
Original commit
Saturday, 4 Dec 2010
07:34 ade search for other commits by this committer
Sync to new bsd.autotools.mk
Original commit
Friday, 29 Oct 2010
12:49 timur search for other commits by this committer
Fix unnecessary conflict with samba subports, in particular - libsmbclient.
Original commit
Tuesday, 26 Oct 2010
13:51 timur search for other commits by this committer
Had to revert back to 1.2.1 version, as 1.2.2 breaks samba35.
Original commit
13:07 timur search for other commits by this committer
Bumped port version to the 1.2.2. Fixed installation of the manpages.
Original commit
Monday, 25 Oct 2010
22:07 timur search for other commits by this committer
Update port to the 1.2.1 version. It's needed for Samba 3.5 and Samba 4alpha13.
Original commit
Saturday, 16 Oct 2010
11:52 ade search for other commits by this committer
Punt autoconf267->autoconf268
Original commit
Wednesday, 15 Sep 2010
18:35 ade search for other commits by this committer
Autotools update.   Read ports/UPDATING 20100915 for details.

Approved by:    portmgr (for Mk/bsd.port.mk part)
Tested by:      Multiple -exp runs
Original commit
Friday, 5 Feb 2010
00:50 timur search for other commits by this committer
Upgrade tdb to tne new version 1.2.0.
Original commit
Saturday, 1 Aug 2009
23:36 timur search for other commits by this committer
Fix CONFLICTS
Original commit
Sunday, 12 Jul 2009
21:43 timur search for other commits by this committer
Bump port version to the 1.1.5, using sources that come together with
net/samba4-devel.
Original commit
Monday, 14 Aug 2006
22:55 clsung search for other commits by this committer
- s,INSTALLS_SHLIB,USE_LDCONFIG,g
- these include comms/ converters/ databases/ devel/ maintained by ports@

PR:             ports/101916
Submitted by:   Gea-Suan Lin <gslin_AT_gslin dot org>
Original commit
Thursday, 23 Feb 2006
10:40 ade search for other commits by this committer
Conversion to a single libtool environment.

Approved by:    portmgr (kris)
Original commit
Tuesday, 15 Nov 2005
06:52 ade search for other commits by this committer
Mass-conversion to the USE_AUTOTOOLS New World Order.  The code present
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.
Original commit
Friday, 9 Jul 2004
17:43 marcus search for other commits by this committer
Apply a big libtool patch to allow porters to use the libtool installed by
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
Original commit
Sunday, 17 Aug 2003
18:28 krion search for other commits by this committer
- Remove gdbm dependency
- Fix build on -current

PR:             55658
Submitted by:   Matthias Andree <matthias.andree@gmx.de>
Original commit
Thursday, 20 Feb 2003
17:00 knu search for other commits by this committer
De-pkg-comment.
Original commit
Saturday, 12 Oct 2002
13:02 ijliao search for other commits by this committer
add tdb 1.0.6
Trivial Database
Original commit

Number of commits found: 69