The NetBSD Project

CVS log for pkgsrc/databases/gdbm/Makefile

[BACK] Up to [cvs.NetBSD.org] / pkgsrc / databases / gdbm

Request diff between arbitrary revisions


Keyword substitution: kv
Default branch: MAIN


Revision 1.55: download - view: text, markup, annotated - select for diffs
Wed May 1 22:06:33 2024 UTC (7 months ago) by cheusov
Branches: MAIN
CVS tags: pkgsrc-2024Q3-base, pkgsrc-2024Q3, pkgsrc-2024Q2-base, pkgsrc-2024Q2, HEAD
Diff to: previous 1.54: preferred, colored
Changes since revision 1.54: +4 -2 lines
Add option "nls" enabled by default

Revision 1.54: download - view: text, markup, annotated - select for diffs
Sun Jan 28 19:40:22 2018 UTC (6 years, 10 months ago) by wiz
Branches: MAIN
CVS tags: pkgsrc-2024Q1-base, pkgsrc-2024Q1, pkgsrc-2023Q4-base, pkgsrc-2023Q4, pkgsrc-2023Q3-base, pkgsrc-2023Q3, pkgsrc-2023Q2-base, pkgsrc-2023Q2, pkgsrc-2023Q1-base, pkgsrc-2023Q1, pkgsrc-2022Q4-base, pkgsrc-2022Q4, pkgsrc-2022Q3-base, pkgsrc-2022Q3, pkgsrc-2022Q2-base, pkgsrc-2022Q2, pkgsrc-2022Q1-base, pkgsrc-2022Q1, pkgsrc-2021Q4-base, pkgsrc-2021Q4, pkgsrc-2021Q3-base, pkgsrc-2021Q3, pkgsrc-2021Q2-base, pkgsrc-2021Q2, pkgsrc-2021Q1-base, pkgsrc-2021Q1, pkgsrc-2020Q4-base, pkgsrc-2020Q4, pkgsrc-2020Q3-base, pkgsrc-2020Q3, pkgsrc-2020Q2-base, pkgsrc-2020Q2, pkgsrc-2020Q1-base, pkgsrc-2020Q1, pkgsrc-2019Q4-base, pkgsrc-2019Q4, pkgsrc-2019Q3-base, pkgsrc-2019Q3, pkgsrc-2019Q2-base, pkgsrc-2019Q2, pkgsrc-2019Q1-base, pkgsrc-2019Q1, pkgsrc-2018Q4-base, pkgsrc-2018Q4, pkgsrc-2018Q3-base, pkgsrc-2018Q3, pkgsrc-2018Q2-base, pkgsrc-2018Q2, pkgsrc-2018Q1-base, pkgsrc-2018Q1
Diff to: previous 1.53: preferred, colored
Changes since revision 1.53: +1 -2 lines
gdbm: update to 1.14.1.

Version 1.14.1 - 2018-01-03

* Increment soname current version number.

Version 1.14 - 2018-01-01

* Make sure created databases are byte-for-byte reproducible

This fixes two longstanding bugs: (1) when allocating database file
header blocks, the unused memory is filled with zeroes; (2) when expanding
a mmapped memory area, the added extent is filled with zeroes.

* Fix build with --enable-gdbm-export

* Make gdbm_error global variable thread safe.

* Fix possible segmentation violation in gdbm_setopt

* Fix handling of group headers in --help output.

Revision 1.53: download - view: text, markup, annotated - select for diffs
Sat Sep 9 17:13:50 2017 UTC (7 years, 2 months ago) by dholland
Branches: MAIN
CVS tags: pkgsrc-2017Q4-base, pkgsrc-2017Q4, pkgsrc-2017Q3-base, pkgsrc-2017Q3
Diff to: previous 1.52: preferred, colored
Changes since revision 1.52: +2 -1 lines
Fix compat #define to expand to something that actually exists. Should
fix the build of clisp-gdbm and maybe others. PKGREVISION -> 1.

Revision 1.52: download - view: text, markup, annotated - select for diffs
Mon Mar 20 06:02:26 2017 UTC (7 years, 8 months ago) by adam
Branches: MAIN
CVS tags: pkgsrc-2017Q2-base, pkgsrc-2017Q2, pkgsrc-2017Q1-base, pkgsrc-2017Q1
Diff to: previous 1.51: preferred, colored
Changes since revision 1.51: +4 -4 lines
Version 1.13 - 2017-03-11

* gdbm_fetch, gdbm_firstkey, and gdbm_nextkey behavior

If the requested key was not found, these functions return datum with
dptr pointing to NULL and set gdbm_errno to GDBM_ITEM_NOT_FOUND (in
prior releases, gdbm_errno was set to GDBM_NO_ERROR),

If an error occurred, dptr is set to NULL, and gdbm_errno to
the error code.

In any case gdbm_errno is guaranteed to have meaningful value upon
return.

* Error handling

In previous versions of GDBM, fatal errors (such as write error while
storing the key/data pair or bucket) caused immediate termination of
the program via call to exit(3).  This is no longer the case.

Starting from this version, if a fatal error occurrs while modifying
the database file, that database is marked as needing recovery and
gdbm_errno is set to GDBM_NEED_RECOVERY.  Calls to any GDBM functions,
except gdbm_recover, will then return immediately with the same error
code.

The function gdbm_recover examines the database file and fixes
eventual inconsistencies.  Upon successful return it clears the error
state and makes the database operational again.

For backward compatibility, the fatal_func argument to gdbm_open is
retained and its functionality is not changed.  If it is not NULL, the
new error handling procedures are disabled, the function it points to
will be called upon fatal errors.  When it returns, exit(1) will be
called.

* Per-database error codes

In addition to gdbm_error global variable, the most recent error state
is saved in the GDBM_FILE structure.  This facilitates error handling
when operating multiple GDBM databases simultaneously.

Revision 1.51: download - view: text, markup, annotated - select for diffs
Thu Oct 9 14:06:05 2014 UTC (10 years, 1 month ago) by wiz
Branches: MAIN
CVS tags: pkgsrc-2016Q4-base, pkgsrc-2016Q4, pkgsrc-2016Q3-base, pkgsrc-2016Q3, pkgsrc-2016Q2-base, pkgsrc-2016Q2, pkgsrc-2016Q1-base, pkgsrc-2016Q1, pkgsrc-2015Q4-base, pkgsrc-2015Q4, pkgsrc-2015Q3-base, pkgsrc-2015Q3, pkgsrc-2015Q2-base, pkgsrc-2015Q2, pkgsrc-2015Q1-base, pkgsrc-2015Q1, pkgsrc-2014Q4-base, pkgsrc-2014Q4
Diff to: previous 1.50: preferred, colored
Changes since revision 1.50: +1 -3 lines
Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles.

Revision 1.50: download - view: text, markup, annotated - select for diffs
Fri May 23 20:49:15 2014 UTC (10 years, 6 months ago) by wiz
Branches: MAIN
CVS tags: pkgsrc-2014Q3-base, pkgsrc-2014Q3, pkgsrc-2014Q2-base, pkgsrc-2014Q2
Diff to: previous 1.49: preferred, colored
Changes since revision 1.49: +1 -2 lines
Update gdbm packages to 1.11, after martin@ diagnosed the compilation
problem. Thanks, martin!

Changes:
Version 1.11, 2013-12-25

* Improved dump format.

A new dump format is implemented, which encodes all data in base64 and
stores not only key/data pairs, but also the original database file
metadata, such as file name, mode and ownership.  Files in this format
can be sent without additional encapsulation over transmission
channels that normally allow only ASCII data.  Dumps in this format
allow for restoring an exact copy of the database, including file
ownership and privileges.

* New function: gdbm_count

    int gdbm_count (GDBM_FILE *file, gdbm_count *count);

Counts records in `file' and stores the result in the memory location
pointed to by `count'.

* New utilities: gdbm_dump and gdbm_load.

Gdbm_dump creates a plain-text dump of the GDBM database.  This dump
can be used to create an exact copy of the database afterward.

The gdbm_load performs the reverse: given the dump file, it creates a
GDBM database.  Apart from native GDBM dump formats, it also understands
the format generated by Berkeley DB db_dump utility.  Thus, an easy
way to convert a Berkeley DB database to GDBM is:

   db_dump input.db | gdbm_load output.db

* gdbmtool

The gdbmtool utility allows you to examine, modify or create GDBM
databases.  It provides an easy-to-use interactive shell and can
be used for scripting.  One of the unique features of gdbmtool is that
it allows to define datum structures for key and content parts, similarly
to the C "struct" declarations, and to input and display such
structured data.

Revision 1.49: download - view: text, markup, annotated - select for diffs
Mon Apr 8 11:17:10 2013 UTC (11 years, 7 months ago) by rodent
Branches: MAIN
CVS tags: pkgsrc-2014Q1-base, pkgsrc-2014Q1, pkgsrc-2013Q4-base, pkgsrc-2013Q4, pkgsrc-2013Q3-base, pkgsrc-2013Q3, pkgsrc-2013Q2-base, pkgsrc-2013Q2
Diff to: previous 1.48: preferred, colored
Changes since revision 1.48: +1 -2 lines
Remove "Trailing empty lines." and/or "Trailing white-space."

Revision 1.48: download - view: text, markup, annotated - select for diffs
Tue Oct 2 21:25:17 2012 UTC (12 years, 2 months ago) by asau
Branches: MAIN
CVS tags: pkgsrc-2013Q1-base, pkgsrc-2013Q1, pkgsrc-2012Q4-base, pkgsrc-2012Q4
Diff to: previous 1.47: preferred, colored
Changes since revision 1.47: +1 -2 lines
Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.

Revision 1.47: download - view: text, markup, annotated - select for diffs
Tue Jan 24 02:44:30 2012 UTC (12 years, 10 months ago) by sbd
Branches: MAIN
CVS tags: pkgsrc-2012Q3-base, pkgsrc-2012Q3, pkgsrc-2012Q2-base, pkgsrc-2012Q2, pkgsrc-2012Q1-base, pkgsrc-2012Q1
Diff to: previous 1.46: preferred, colored
Changes since revision 1.46: +3 -8 lines
Pullin gettext-lib buildlink3 so that nls files are built.
Unconditionalise the nls files.

Bump PKGREVISION

Revision 1.46: download - view: text, markup, annotated - select for diffs
Tue Jan 24 00:28:17 2012 UTC (12 years, 10 months ago) by abs
Branches: MAIN
Diff to: previous 1.45: preferred, colored
Changes since revision 1.45: +11 -2 lines
Fo gdbm 'NLS' seems to mean 'can find _nl_expand_alias', which has a
certain Linux flavour to it.
Conditionalise the nls files in the PLIST to Linux for now
Bump PKGREVISION.
Fixes build on at least NetBSD

Revision 1.45: download - view: text, markup, annotated - select for diffs
Mon Jan 23 07:04:15 2012 UTC (12 years, 10 months ago) by sbd
Branches: MAIN
Diff to: previous 1.44: preferred, colored
Changes since revision 1.44: +2 -1 lines
Add missing LC_MESSAGES files.

Bump PKGREVISION

Revision 1.44: download - view: text, markup, annotated - select for diffs
Mon Oct 17 08:40:15 2011 UTC (13 years, 1 month ago) by obache
Branches: MAIN
CVS tags: pkgsrc-2011Q4-base, pkgsrc-2011Q4
Diff to: previous 1.43: preferred, colored
Changes since revision 1.43: +2 -9 lines
split up Makefile.

Revision 1.43: download - view: text, markup, annotated - select for diffs
Mon Oct 17 08:10:53 2011 UTC (13 years, 1 month ago) by obache
Branches: MAIN
Diff to: previous 1.42: preferred, colored
Changes since revision 1.42: +2 -2 lines
gdbm-1.9 is GPLv3.

Revision 1.42: download - view: text, markup, annotated - select for diffs
Wed Aug 17 07:17:15 2011 UTC (13 years, 3 months ago) by adam
Branches: MAIN
CVS tags: pkgsrc-2011Q3-base, pkgsrc-2011Q3
Diff to: previous 1.41: preferred, colored
Changes since revision 1.41: +5 -7 lines
Changes 1.9.1:
* Bugfix: Improperly used preprocessor directive caused compilation failure
  when using gcc 4.4.4 or newer.

Changes 1.9:
* Use of mmap
* Changes in compatibility mode
* Locking is disabled.
* Do not link pag to dir.
* gdbm_setopt
* The testgdbm program is installed
* A testsuite is provided.
* Improved documentation.

Revision 1.41: download - view: text, markup, annotated - select for diffs
Sun Jan 24 17:11:18 2010 UTC (14 years, 10 months ago) by heinz
Branches: MAIN
CVS tags: pkgsrc-2011Q2-base, pkgsrc-2011Q2, pkgsrc-2011Q1-base, pkgsrc-2011Q1, pkgsrc-2010Q4-base, pkgsrc-2010Q4, pkgsrc-2010Q3-base, pkgsrc-2010Q3, pkgsrc-2010Q2-base, pkgsrc-2010Q2, pkgsrc-2010Q1-base, pkgsrc-2010Q1
Diff to: previous 1.40: preferred, colored
Changes since revision 1.40: +2 -1 lines
Added LICENSE information.

Revision 1.40: download - view: text, markup, annotated - select for diffs
Sun Aug 26 15:59:24 2007 UTC (17 years, 3 months ago) by heinz
Branches: MAIN
CVS tags: pkgsrc-2009Q4-base, pkgsrc-2009Q4, pkgsrc-2009Q3-base, pkgsrc-2009Q3, pkgsrc-2009Q2-base, pkgsrc-2009Q2, pkgsrc-2009Q1-base, pkgsrc-2009Q1, pkgsrc-2008Q4-base, pkgsrc-2008Q4, pkgsrc-2008Q3-base, pkgsrc-2008Q3, pkgsrc-2008Q2-base, pkgsrc-2008Q2, pkgsrc-2008Q1-base, pkgsrc-2008Q1, pkgsrc-2007Q4-base, pkgsrc-2007Q4, pkgsrc-2007Q3-base, pkgsrc-2007Q3, cwrapper, cube-native-xorg-base, cube-native-xorg
Diff to: previous 1.39: preferred, colored
Changes since revision 1.39: +3 -1 lines
The package supports installation to DESTDIR (although it uses the
variable INSTALL_ROOT).

Revision 1.39: download - view: text, markup, annotated - select for diffs
Thu Mar 30 03:44:41 2006 UTC (18 years, 8 months ago) by jlam
Branches: MAIN
CVS tags: pkgsrc-2007Q2-base, pkgsrc-2007Q2, pkgsrc-2007Q1-base, pkgsrc-2007Q1, pkgsrc-2006Q4-base, pkgsrc-2006Q4, pkgsrc-2006Q3-base, pkgsrc-2006Q3, pkgsrc-2006Q2-base, pkgsrc-2006Q2
Diff to: previous 1.38: preferred, colored
Changes since revision 1.38: +2 -2 lines
* Honor PKGINFODIR.
* List the info files directly in the PLIST.

Revision 1.38: download - view: text, markup, annotated - select for diffs
Sat Mar 4 21:29:08 2006 UTC (18 years, 9 months ago) by jlam
Branches: MAIN
CVS tags: pkgsrc-2006Q1-base, pkgsrc-2006Q1
Diff to: previous 1.37: preferred, colored
Changes since revision 1.37: +2 -2 lines
Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no
developer is officially maintaining the package.

The rationale for changing this from "tech-pkg" to "pkgsrc-users" is
that it implies that any user can try to maintain the package (by
submitting patches to the mailing list).  Since the folks most likely
to care about the package are the folks that want to use it or are
already using it, this would leverage the energy of users who aren't
developers.

Revision 1.37: download - view: text, markup, annotated - select for diffs
Mon Apr 11 21:45:11 2005 UTC (19 years, 7 months ago) by tv
Branches: MAIN
CVS tags: pkgsrc-2005Q4-base, pkgsrc-2005Q4, pkgsrc-2005Q3-base, pkgsrc-2005Q3, pkgsrc-2005Q2-base, pkgsrc-2005Q2
Diff to: previous 1.36: preferred, colored
Changes since revision 1.36: +1 -2 lines
Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.

Revision 1.36: download - view: text, markup, annotated - select for diffs
Sun Oct 3 00:13:18 2004 UTC (20 years, 2 months ago) by tv
Branches: MAIN
CVS tags: pkgsrc-2005Q1-base, pkgsrc-2005Q1, pkgsrc-2004Q4-base, pkgsrc-2004Q4
Diff to: previous 1.35: preferred, colored
Changes since revision 1.35: +2 -1 lines
Libtool fix for PR pkg/26633, and other issues.  Update libtool to 1.5.10
in the process.  (More information on tech-pkg.)

Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and
installing .la files.

Bump PKGREVISION (only) of all packages depending directly on the above
via a buildlink3 include.

Revision 1.35: download - view: text, markup, annotated - select for diffs
Sun May 2 04:14:19 2004 UTC (20 years, 7 months ago) by minskim
Branches: MAIN
CVS tags: pkgsrc-2004Q3-base, pkgsrc-2004Q3, pkgsrc-2004Q2-base, pkgsrc-2004Q2
Diff to: previous 1.34: preferred, colored
Changes since revision 1.34: +3 -1 lines
Enable pkgviews installation.

Revision 1.34: download - view: text, markup, annotated - select for diffs
Sat Feb 14 17:21:35 2004 UTC (20 years, 9 months ago) by jlam
Branches: MAIN
CVS tags: pkgsrc-2004Q1-base, pkgsrc-2004Q1
Diff to: previous 1.33: preferred, colored
Changes since revision 1.33: +1 -2 lines
LIBTOOL_OVERRIDE and SHLIBTOOL_OVERRIDE are now lists of shell globs
relative to ${WRKSRC}.  Remove redundant LIBTOOL_OVERRIDE settings that
are automatically handled by the default setting in bsd.pkg.mk.

Revision 1.33: download - view: text, markup, annotated - select for diffs
Sat Feb 14 00:54:44 2004 UTC (20 years, 9 months ago) by grant
Branches: MAIN
Diff to: previous 1.32: preferred, colored
Changes since revision 1.32: +1 -3 lines
remove unneeded CONFIG_{GUESS,SUB}_OVERRIDE, as bsd.pkg.mk does this
automatically now.

Revision 1.32: download - view: text, markup, annotated - select for diffs
Thu Feb 12 08:40:22 2004 UTC (20 years, 9 months ago) by jlam
Branches: MAIN
Diff to: previous 1.31: preferred, colored
Changes since revision 1.31: +2 -2 lines
bl3ify

Revision 1.31: download - view: text, markup, annotated - select for diffs
Sat Aug 9 10:38:23 2003 UTC (21 years, 4 months ago) by seb
Branches: MAIN
CVS tags: pkgsrc-2003Q4-base, pkgsrc-2003Q4
Diff to: previous 1.30: preferred, colored
Changes since revision 1.30: +1 -2 lines
USE_NEW_TEXINFO is unnecessary now.

Revision 1.30: download - view: text, markup, annotated - select for diffs
Thu Jul 17 21:28:05 2003 UTC (21 years, 4 months ago) by grant
Branches: MAIN
Diff to: previous 1.29: preferred, colored
Changes since revision 1.29: +2 -2 lines
s/netbsd.org/NetBSD.org/

Revision 1.29: download - view: text, markup, annotated - select for diffs
Sun Jun 29 11:13:49 2003 UTC (21 years, 5 months ago) by seb
Branches: MAIN
Diff to: previous 1.28: preferred, colored
Changes since revision 1.28: +2 -6 lines
Convert to USE_NEW_TEXINFO.
Note: distributed gdbm.info now has a *DIR-{SECTION,ENTRY} hence
post-extract target no more required.

Revision 1.28: download - view: text, markup, annotated - select for diffs
Mon Jun 2 01:21:09 2003 UTC (21 years, 6 months ago) by jschauma
Branches: MAIN
Diff to: previous 1.27: preferred, colored
Changes since revision 1.27: +2 -2 lines
Use tech-pkg@ in favor of packages@ as MAINTAINER for orphaned packages.
Should anybody feel like they could be the maintainer for any of thewe packages,
please adjust.

Revision 1.27: download - view: text, markup, annotated - select for diffs
Fri Nov 1 00:31:18 2002 UTC (22 years, 1 month ago) by wiz
Branches: MAIN
CVS tags: netbsd-1-6-1-base, netbsd-1-6-1
Diff to: previous 1.26: preferred, colored
Changes since revision 1.26: +3 -4 lines
Update to 1.8.3:
CHANGES from 1.8.2 to 1.8.3
  1.  Various configure related changes and additional updates.
CHANGES from 1.8.1 to 1.8.2
  1.  Allow `NEWDB'-opened databases to actually, well, store records.
CHANGES from 1.8 to 1.8.1
  1.  Lots of bug fixes, including a data corruption bug.
  2.  Updated to current autoconf and libtool.
  3.  Moved the dbm/ndbm compatibility routines to libgdbm_compat.

Revision 1.26: download - view: text, markup, annotated - select for diffs
Wed Sep 11 00:50:04 2002 UTC (22 years, 2 months ago) by schmonz
Branches: MAIN
Diff to: previous 1.25: preferred, colored
Changes since revision 1.25: +3 -1 lines
Build on Darwin:

* don't pass a second (and wrong) pair of -o and -u arguments to ${INSTALL}
* use canonical pkgsrc config.guess and config.sub

Revision 1.25: download - view: text, markup, annotated - select for diffs
Sun Aug 25 18:38:21 2002 UTC (22 years, 3 months ago) by jlam
Branches: MAIN
Diff to: previous 1.24: preferred, colored
Changes since revision 1.24: +2 -2 lines
Merge changes in packages from the buildlink2 branch that have
buildlink2.mk files back into the main trunk.  This provides sufficient
buildlink2 infrastructure to start merging other packages from the
buildlink2 branch that have already been converted to use the buildlink2
framework.

Revision 1.24.2.2: download - view: text, markup, annotated - select for diffs
Fri Jun 21 23:05:01 2002 UTC (22 years, 5 months ago) by jlam
Branches: buildlink2
Diff to: previous 1.24.2.1: preferred, colored; branchpoint 1.24: preferred, colored; next MAIN 1.25: preferred, colored
Changes since revision 1.24.2.1: +2 -2 lines
Rename USE_BUILDLINK2_ONLY to USE_BUILDLINK2 for less verbosity.  Also
convert a few more packages to use the buildlink2 framework.

Revision 1.24.2.1: download - view: text, markup, annotated - select for diffs
Sat May 11 02:09:00 2002 UTC (22 years, 7 months ago) by jlam
Branches: buildlink2
Diff to: previous 1.24: preferred, colored
Changes since revision 1.24: +2 -2 lines
First pass at conversion of various packages to use the buildlink2
framework.  Add many buildlink2.mk files to add to the framework.  Please
see buildlink2.txt for more details.

Revision 1.24: download - view: text, markup, annotated - select for diffs
Mon Feb 18 15:14:05 2002 UTC (22 years, 9 months ago) by seb
Branches: MAIN
CVS tags: pkgviews-base, pkgviews, netbsd-1-6-RELEASE-base, netbsd-1-6, netbsd-1-5-PATCH003, buildlink2-base
Branch point for: buildlink2
Diff to: previous 1.23: preferred, colored
Changes since revision 1.23: +3 -1 lines
Introduce new framework for handling info files generation and installation.

Summary of changes:
- removal of USE_GTEXINFO
- addition of mk/texinfo.mk
- inclusion of this file in package Makefiles requiring it
- `install-info' substituted by `${INSTALL_INFO}' in PLISTs
- tuning of mk/bsd.pkg.mk:
    removal of USE_GTEXINFO
    INSTALL_INFO added to PLIST_SUBST
    `${INSTALL_INFO}' replace `install-info' in target rules
    print-PLIST target now generate `${INSTALL_INFO}' instead of `install-info'
- a couple of new patch files added for a handful of packages
- setting of the TEXINFO_OVERRIDE "switch" in packages Makefiles requiring it
- devel/cssc marked requiring texinfo 4.0
- a couple of packages Makefiles were tuned with respect of INFO_FILES and
  makeinfo command usage

See -newly added by this commit- section 10.24 of Packages.txt for
further information.

Revision 1.23: download - view: text, markup, annotated - select for diffs
Thu Jun 21 02:47:27 2001 UTC (23 years, 5 months ago) by jlam
Branches: MAIN
Diff to: previous 1.22: preferred, colored
Changes since revision 1.22: +2 -1 lines
Mark as USE_BUILDLINK_ONLY.

Revision 1.22: download - view: text, markup, annotated - select for diffs
Thu Apr 26 23:26:49 2001 UTC (23 years, 7 months ago) by jtb
Branches: MAIN
CVS tags: netbsd-1-5-PATCH001
Diff to: previous 1.21: preferred, colored
Changes since revision 1.21: +4 -1 lines
There is no dir entry in the distributed gdbm.info -- delete it after
extraction so that it gets rebuilt.

Revision 1.21: download - view: text, markup, annotated - select for diffs
Wed Apr 18 17:28:26 2001 UTC (23 years, 7 months ago) by jtb
Branches: MAIN
Diff to: previous 1.20: preferred, colored
Changes since revision 1.20: +2 -1 lines
Add an INFO_FILES entry.

Revision 1.20: download - view: text, markup, annotated - select for diffs
Fri Feb 16 14:17:23 2001 UTC (23 years, 9 months ago) by wiz
Branches: MAIN
Diff to: previous 1.19: preferred, colored
Changes since revision 1.19: +2 -1 lines
Update to new COMMENT style: COMMENT var in Makefile instead of pkg/COMMENT.

Revision 1.19: download - view: text, markup, annotated - select for diffs
Thu Jun 15 18:09:04 2000 UTC (24 years, 5 months ago) by skrll
Branches: MAIN
CVS tags: netbsd-1-5-RELEASE, netbsd-1-4-PATCH003
Diff to: previous 1.18: preferred, colored
Changes since revision 1.18: +2 -2 lines
Fix the LTCONFIG_OVERRIDE definition.

Revision 1.18: download - view: text, markup, annotated - select for diffs
Tue Jun 13 01:46:52 2000 UTC (24 years, 5 months ago) by fredb
Branches: MAIN
Diff to: previous 1.17: preferred, colored
Changes since revision 1.17: +5 -9 lines
Update to gdbm-1.8.0. From the NEWS file:
CHANGES from 1.7.3 to 1.8
  1.  Added GDBM_CENTFREE functionality and option.
  2.  Added GDBM_COALESCEBLKS functionality and option.
  3.  Added GDBM_NOLOCK flag.
  4.  Made ``fast'' mode the default, making GDBM_FAST obsolete, and adding
      the GDBM_SYNC flag and GDBM_SYNCMODE option.
  5.  Switched to building with libtool.
[This last make LT_CONFIG_OVERRIDE necessary.]

Revision 1.17: download - view: text, markup, annotated - select for diffs
Thu Jun 8 22:28:28 2000 UTC (24 years, 6 months ago) by jlam
Branches: MAIN
Diff to: previous 1.16: preferred, colored
Changes since revision 1.16: +3 -3 lines
USE_LIBTOOL, not pkglibtool

Revision 1.16: download - view: text, markup, annotated - select for diffs
Thu Jun 1 11:23:18 2000 UTC (24 years, 6 months ago) by rh
Branches: MAIN
Diff to: previous 1.15: preferred, colored
Changes since revision 1.15: +2 -2 lines
s/USE_LIBTOOL/USE_PKGLIBTOOL/
Add a new USE_LIBTOOL definition that uses the libtool package instead of
pkglibtool which is now considered outdated.
USE_PKGLIBTOOL is available for backwards compatibility with old packages
but is deprecated for new packages.

Revision 1.15: download - view: text, markup, annotated - select for diffs
Wed Apr 14 21:39:01 1999 UTC (25 years, 7 months ago) by tron
Branches: MAIN
CVS tags: netbsd-1-4-RELEASE, netbsd-1-4-PATCH002, netbsd-1-4-PATCH001, comdex-fall-1999
Diff to: previous 1.14: preferred, colored
Changes since revision 1.14: +2 -2 lines
Remove unnecessary slash from master site list.

Revision 1.14: download - view: text, markup, annotated - select for diffs
Mon Mar 22 16:08:31 1999 UTC (25 years, 8 months ago) by bad
Branches: MAIN
Diff to: previous 1.13: preferred, colored
Changes since revision 1.13: +2 -2 lines
Catch up with MASTER_SITE_GNU reorganization.

Revision 1.13: download - view: text, markup, annotated - select for diffs
Mon Mar 8 10:53:56 1999 UTC (25 years, 9 months ago) by agc
Branches: MAIN
Diff to: previous 1.12: preferred, colored
Changes since revision 1.12: +2 -2 lines
s/make/${MAKE}/g

Revision 1.12: download - view: text, markup, annotated - select for diffs
Thu Aug 20 15:16:44 1998 UTC (26 years, 3 months ago) by tsarna
Branches: MAIN
CVS tags: netbsd-1-3-PATCH003
Diff to: previous 1.11: preferred, colored
Changes since revision 1.11: +2 -1 lines
The Grand Homepagification:
	- New, optional Makefile variable HOMEPAGE, specifies a URL for
	  the home page of the software if it has one.
	- The value of HOMEPAGE is used to add a link from the
	  README.html files.
	- pkglint updated to know about it.  The "correct" location for
	  HOMEPAGE in the Makefile is after MAINTAINER, in that same
	  section.

Revision 1.11: download - view: text, markup, annotated - select for diffs
Mon Aug 10 15:29:39 1998 UTC (26 years, 4 months ago) by tv
Branches: MAIN
Diff to: previous 1.10: preferred, colored
Changes since revision 1.10: +9 -8 lines
Libtoolize and clean up.

Revision 1.10: download - view: text, markup, annotated - select for diffs
Tue Jul 14 16:21:35 1998 UTC (26 years, 4 months ago) by agc
Branches: MAIN
Diff to: previous 1.9: preferred, colored
Changes since revision 1.9: +1 -4 lines
Update for automatic shared object handling.

Revision 1.9: download - view: text, markup, annotated - select for diffs
Mon Jun 22 11:19:40 1998 UTC (26 years, 5 months ago) by agc
Branches: MAIN
Diff to: previous 1.8: preferred, colored
Changes since revision 1.8: +1 -2 lines
Update package Makefiles for automatic manual page handling.

Revision 1.8: download - view: text, markup, annotated - select for diffs
Wed Jun 10 08:02:08 1998 UTC (26 years, 6 months ago) by agc
Branches: MAIN
Diff to: previous 1.7: preferred, colored
Changes since revision 1.7: +2 -2 lines
Remove the trailing '-f' from MAKE_FLAGS in bsd.pkg.mk, and include it
explicitly in the commands before ${MAKEFILE}; modify package
Makefiles to conform to this rationalisation.  This was used
inconsistently in many packages, some including it, some not.

Revision 1.7: download - view: text, markup, annotated - select for diffs
Fri May 8 12:30:19 1998 UTC (26 years, 7 months ago) by frueauf
Branches: MAIN
CVS tags: netbsd-1-3-PATCH002
Diff to: previous 1.6: preferred, colored
Changes since revision 1.6: +5 -2 lines
Build and install gdbm shared library, based on pr 4924 and fixes it.

Revision 1.6: download - view: text, markup, annotated - select for diffs
Wed Apr 22 11:05:02 1998 UTC (26 years, 7 months ago) by agc
Branches: MAIN
Diff to: previous 1.5: preferred, colored
Changes since revision 1.5: +2 -2 lines
Fix INFO_FILES definitions to match the commands in bsd.pkg.mk

Revision 1.5: download - view: text, markup, annotated - select for diffs
Fri Apr 17 09:37:22 1998 UTC (26 years, 7 months ago) by agc
Branches: MAIN
Diff to: previous 1.4: preferred, colored
Changes since revision 1.4: +2 -7 lines
Introduce USE_GTEXINFO and INFO_FILES definitions to bsd.pkg.mk, and use them.

Revision 1.4: download - view: text, markup, annotated - select for diffs
Wed Apr 15 10:38:18 1998 UTC (26 years, 7 months ago) by agc
Branches: MAIN
Diff to: previous 1.3: preferred, colored
Changes since revision 1.3: +2 -7 lines
Use the bsd.pkg.mk and bsd.pkg.subdir.mk files in the pkgsrc tree.
Remove redundant (and sometimes erroneous) comments.

Revision 1.3: download - view: text, markup, annotated - select for diffs
Sat Jan 24 03:42:02 1998 UTC (26 years, 10 months ago) by hubertf
Branches: MAIN
Diff to: previous 1.2: preferred, colored
Changes since revision 1.2: +3 -2 lines
portlint: rm -> ${RM}

Revision 1.2: download - view: text, markup, annotated - select for diffs
Mon Oct 27 03:32:44 1997 UTC (27 years, 1 month ago) by hubertf
Branches: MAIN
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +9 -1 lines
Fix for NetBSD

Revision 1.1.1.1 (vendor branch): download - view: text, markup, annotated - select for diffs
Mon Oct 27 03:25:20 1997 UTC (27 years, 1 month ago) by hubertf
Branches: FREEBSD
CVS tags: FreeBSD-current-1997-09-25
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +0 -0 lines
Next one (IDs already fixed)

Revision 1.1: download - view: text, markup, annotated - select for diffs
Mon Oct 27 03:25:20 1997 UTC (27 years, 1 month ago) by hubertf
Branches: MAIN
Initial revision

Diff request

This form allows you to request diffs between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.

Log view options

CVSweb <webmaster@jp.NetBSD.org>