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) combinatio for a given watch list. This is what FreshPorts will look for.

Port details
postgresql-odbc PostgreSQL ODBC driver
16.00.0000 databases on this many watch lists=14 search for ports that depend on this port Find issues related to this port Report an issue related to this port View this port on Repology. pkg-fallout 16.00.0000Version of this port present on the latest quarterly branch.
Maintainer: bofh@FreeBSD.org search for ports maintained by this maintainer
Port Added: 2002-02-19 05:37:32
Last Update: 2023-09-19 06:24:59
Commit Hash: f13d625
People watching this port, also watch:: postgresql-jdbc
License: LGPL20+
WWW:
https://www.postgresql.org/ftp/odbc/versions/
Description:
The official ODBC driver for connecting to PostgreSQL Database; not a part of the PostgreSQL Database distribution, though -- developed and maintained separately.
Homepage    cgit ¦ Codeberg ¦ GitHub ¦ GitLab ¦ SVNWeb

Manual pages:
FreshPorts has no man page information for this port.
pkg-plist: as obtained via: make generate-plist
Expand this list (6 items)
Collapse this list.
  1. lib/psqlodbcw.so
  2. lib/psqlodbca.so
  3. @ldconfig
  4. /usr/local/share/licenses/postgresql-odbc-16.00.0000/catalog.mk
  5. /usr/local/share/licenses/postgresql-odbc-16.00.0000/LICENSE
  6. /usr/local/share/licenses/postgresql-odbc-16.00.0000/LGPL20+
Collapse this list.
Dependency lines:
  • postgresql-odbc>0:databases/postgresql-odbc
To install the port:
cd /usr/ports/databases/postgresql-odbc/ && make install clean
To add the package, run one of these commands:
  • pkg install databases/postgresql-odbc
  • pkg install postgresql-odbc
NOTE: If this package has multiple flavors (see below), then use one of them instead of the name specified above.
PKGNAME: postgresql-odbc
Flavors: there is no flavor information for this port.
distinfo:
TIMESTAMP = 1694949477 SHA256 (postgresql/psqlodbc-16.00.0000.tar.gz) = afd892f89d2ecee8d3f3b2314f1bd5bf2d02201872c6e3431e5c31096eca4c8b SIZE (postgresql/psqlodbc-16.00.0000.tar.gz) = 946997

Packages (timestamps in pop-ups are UTC):
postgresql-odbc
ABIaarch64amd64armv6armv7i386powerpcpowerpc64powerpc64le
FreeBSD:13:latest16.00.000016.00.000013.00.000016.00.000016.00.0000-13.00.0000-
FreeBSD:13:quarterly16.00.000016.00.000015.00.000016.00.000016.00.000016.00.000016.00.000016.00.0000
FreeBSD:14:latest16.00.000016.00.000013.02.000016.00.000016.00.000013.02.0000-13.02.0000
FreeBSD:14:quarterly16.00.000016.00.0000-16.00.000016.00.000016.00.000016.00.000016.00.0000
FreeBSD:15:latest16.00.000016.00.0000n/a16.00.0000n/a16.00.000016.00.000016.00.0000
FreeBSD:15:quarterly--n/a-n/a---
Dependencies
NOTE: FreshPorts displays only information on required and default dependencies. Optional dependencies are not covered.
Library dependencies:
  1. libodbc.so : databases/unixODBC
  2. libpq.so.5 : databases/postgresql15-client
There are no ports dependent upon this port

Configuration Options:
===> The following configuration options are available for postgresql-odbc-16.00.0000: DOCS=on: Build and/or install documentation EXAMPLES=on: Build and/or install examples ===> Use 'make config' to modify these settings
Options name:
databases_postgresql-odbc
USES:
compiler:c11 libtool pgsql
FreshPorts was unable to extract/find any pkg message
Master Sites:
Expand this list (1 items)
Collapse this list.
  1. https://ftp.postgresql.org/pub/odbc/versions/src/
Collapse this list.
Notes from UPDATING
These upgrade notes are taken from /usr/ports/UPDATING
  • 2023-09-08
    Affects: users of databases/postgresql* and other software using PostgreSQL to run
    Author: kbowling@FreeBSD.org
    Reason: 
      The default version of PostgreSQL has been switched from 13 to 15.
      The upgrade procedure can use up twice the space the databases
      currently needs. If you have a big amount of stored data take a
      closer look at the manpage of pg_upgrade for avoidance and/or
      speedup of the upgrade.
    
      The upgrade instructions consider a basic usage and do not match
      complex scenarios like replication, sharding, or similar.
    
      Upgrade instructions:
    
      First stop your PostgreSQL, create PostgreSQL-binaries and backup your data.
      If you have another Version of PostgreSQL installed, for example 13, your
      files are named according to this.
    
      # service postgresql stop
      # pkg create postgresql13-server postgresql13-contrib
      # mkdir /tmp/pg-upgrade
      # tar xf postgresql13-server-13.12.pkg -C /tmp/pg-upgrade
      # tar xf postgresql13-contrib-13.12.pkg -C /tmp/pg-upgrade
      # pkg delete -f databases/postgresql13-server databases/postgresql13-contrib databases/postgresql13-client
    
      Now update PostgreSQL:
    
        pkg user:
        # pkg install databases/postgresql15-server databases/postgresql15-contrib
        # pkg upgrade
    
        Portmaster users:
        # portmaster databases/postgresql15-server databases/postgresql15-contrib
        # portmaster -a
    
        Portupgrade users:
        # portinstall databases/postgresql15-server databases/postgresql15-contrib
        # portupgrade -a
    
      After installing the new PostgreSQL version you need to convert
      all your databases to new version:
    
      # su -l postgres -c "/usr/local/bin/initdb --encoding=utf-8 --lc-collate=C -D /var/db/postgres/data15 -U postgres"
      # su -l postgres -c "pg_upgrade -b /tmp/pg-upgrade/usr/local/bin/ -d /var/db/postgres/data13/ -B /usr/local/bin/ -D /var/db/postgres/data15/ -U postgres "
    
      Now the migration is finished. You can start PostgreSQL again with:
    
      # service postgresql start
    
      ATTENTION:
      1) The default user changed from "pgsql" to "postgres" in 11. The migration steps above now assume
         the "postgres" database user and FreeBSD user.
      2) See the updating entry 20190829 if you are updating from a release prior to 11.
      3) If you use non-default initdb options, you have to adjust the initdb-command accordingly
    
    
Expand this list (1 items)
  • 2021-10-24
    Affects: users of databases/postgresql* and other software using PostgreSQL to run
    Author: kbowling@FreeBSD.org
    Reason: 
      The default version of PostgreSQL has been switched from 12 to 13.
      The upgrade procedure can use up twice the space the databases
      currently needs. If you have a big amount of stored data take a
      closer look at the manpage of pg_upgrade for avoidance and/or
      speedup of the upgrade.
    
      The upgrade instructions consider a basic usage and do not match
      complex scenarios like replication, sharding, or similar.
    
      Upgrade instructions:
    
      First stop your PostgreSQL, create PostgreSQL-binaries and backup your data.
      If you have another Version of PostgreSQL installed, for example 12.8, your
      files are named according to this.
    
      # service postgresql stop
      # pkg create postgresql12-server postgresql12-contrib
      # mkdir /tmp/pg-upgrade
      # tar xf postgresql12-server-12.8.pkg -C /tmp/pg-upgrade
      # tar xf postgresql12-contrib-12.8.pkg -C /tmp/pg-upgrade
      # pkg delete -f databases/postgresql12-server databases/postgresql12-contrib databases/postgresql12-client
    
      Now update PostgreSQL:
    
        pkg user:
        # pkg install databases/postgresql13-server databases/postgresql13-contrib
        # pkg upgrade
    
        Portmaster users:
        # portmaster databases/postgresql13-server databases/postgresql13-contrib
        # portmaster -a
    
        Portupgrade users:
        # portinstall databases/postgresql13-server databases/postgresql13-contrib
        # portupgrade -a
    
      After installing the new PostgreSQL version you need to convert
      all your databases to new version:
    
      # su -l postgres -c "/usr/local/bin/initdb --encoding=utf-8 --lc-collate=C -D /var/db/postgres/data13 -U postgres"
      # su -l postgres -c "pg_upgrade -b /tmp/pg-upgrade/usr/local/bin/ -d /var/db/postgres/data12/ -B /usr/local/bin/ -D /var/db/postgres/data13/ -U postgres "
    
      Now the migration is finished. You can start PostgreSQL again with:
    
      # service postgresql start
    
      ATTENTION:
      1) The default user changed from "pgsql" to "postgres" in 11. The migration steps above now assume
         the "postgres" database user and FreeBSD user.
      2) See the updating entry 20190829 if you are updating from a release prior to 11.
      3) If you use non-default initdb options, you have to adjust the initdb-command accordingly
    
    
  • Collapse this list.

Number of commits found: 70

Commit History - (may be incomplete: for full details, see links to repositories near top of page)
CommitCreditsLog message
16.00.0000
19 Sep 2023 06:24:59
commit hash: f13d6252ad3d0540ecb49d8e523abb28372083efcommit hash: f13d6252ad3d0540ecb49d8e523abb28372083efcommit hash: f13d6252ad3d0540ecb49d8e523abb28372083efcommit hash: f13d6252ad3d0540ecb49d8e523abb28372083ef files touched by this commit
Muhammad Moinur Rahman (bofh) search for other commits by this committer
databases/postgresql-odbc: Update version 15.00.000=>16.00.000
15.00.0000
29 Jun 2023 22:33:24
commit hash: 561a9c02ad858347797078a7facb05db73387a38commit hash: 561a9c02ad858347797078a7facb05db73387a38commit hash: 561a9c02ad858347797078a7facb05db73387a38commit hash: 561a9c02ad858347797078a7facb05db73387a38 files touched by this commit
Muhammad Moinur Rahman (bofh) search for other commits by this committer
databases/postgresql-odbc: Update version 13.02.0000=>15.00.0000
07 Sep 2022 21:58:51
commit hash: fb16dfecae4a6efac9f3a78e0b759fb7a3c53de4commit hash: fb16dfecae4a6efac9f3a78e0b759fb7a3c53de4commit hash: fb16dfecae4a6efac9f3a78e0b759fb7a3c53de4commit hash: fb16dfecae4a6efac9f3a78e0b759fb7a3c53de4 files touched by this commit
Stefan Eßer (se) search for other commits by this committer
Remove WWW entries moved into port Makefiles

Commit b7f05445c00f has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.

This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.

Approved by:		portmgr (tcberner)
13.02.0000
07 Sep 2022 21:10:59
commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 files touched by this commit
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.
(Only the first 15 lines of the commit message are shown above View all of this commit message)
13.02.0000
27 Sep 2021 20:03:43
commit hash: c4b81619d42eb1188bad882f1b65bc413aa0a197commit hash: c4b81619d42eb1188bad882f1b65bc413aa0a197commit hash: c4b81619d42eb1188bad882f1b65bc413aa0a197commit hash: c4b81619d42eb1188bad882f1b65bc413aa0a197 files touched by this commit
Muhammad Moinur Rahman (bofh) search for other commits by this committer
databases/postgresql-odbc: Update version 13.01.0000=>13.02.0000
13.01.0000
07 May 2021 21:14:20
commit hash: b43687e354f62d17cfcd405e6bb993d8864d8033commit hash: b43687e354f62d17cfcd405e6bb993d8864d8033commit hash: b43687e354f62d17cfcd405e6bb993d8864d8033commit hash: b43687e354f62d17cfcd405e6bb993d8864d8033 files touched by this commit
Muhammad Moinur Rahman (bofh) search for other commits by this committer
databases/postgresql-odbc: Update version 13.00.0000=>13.01.0000
13.00.0000
07 Apr 2021 08:09:01
commit hash: cf118ccf875508b9a1c570044c93cfcc82bd455ccommit hash: cf118ccf875508b9a1c570044c93cfcc82bd455ccommit hash: cf118ccf875508b9a1c570044c93cfcc82bd455ccommit hash: cf118ccf875508b9a1c570044c93cfcc82bd455c files touched by this commit
Mathieu Arnold (mat) search for other commits by this committer
One more small cleanup, forgotten yesterday.
Reported by:	lwhsu
13.00.0000
06 Apr 2021 14:31:07
commit hash: 305f148f482daf30dcf728039d03d019f88344ebcommit hash: 305f148f482daf30dcf728039d03d019f88344ebcommit hash: 305f148f482daf30dcf728039d03d019f88344ebcommit hash: 305f148f482daf30dcf728039d03d019f88344eb files touched by this commit
Mathieu Arnold (mat) search for other commits by this committer
Remove # $FreeBSD$ from Makefiles.
13.00.0000
27 Dec 2020 11:21:41
Revision:559349Original commit files touched by this commit
bofh search for other commits by this committer
databases/postgresql-odbc: Update version 12.02.0000=>13.00.0000
12.02.0000
28 May 2020 05:04:53
Revision:536735Original commit files touched by this commit
bofh search for other commits by this committer
databases/postgresql-odbc: Update version 12.01.0000=>12.02.0000
12.01.0000
04 Feb 2020 10:50:10
Revision:525144Original commit files touched by this commit
bofh search for other commits by this committer
databases/postgresql-odbc: Update version 12.00.0000=>12.01.0000
12.00.0000
27 Nov 2019 19:46:18
Revision:518527Original commit files touched by this commit
bofh search for other commits by this committer
databases/postgresql-odbc: Fix build on GCC architectures

PR:		241897
Submitted by:	pkubaz
Approved by:	linimon
MFH:		2019Q4 (runtime fix)
12.00.0000
31 Oct 2019 21:50:26
Revision:516199Original commit files touched by this commit
bofh search for other commits by this committer
databases/postgresql-odbc: Update version 11.01.0000=>12.00.0000
11.01.0000_1
26 Jul 2019 20:46:57
Revision:507372Original commit files touched by this commit
gerald search for other commits by this committer
Bump PORTREVISION for ports depending on the canonical version of GCC
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
11.01.0000
11 Jun 2019 10:17:27
Revision:503950Original commit files touched by this commit
bofh search for other commits by this committer
databases/postgresql-odbc: Update version 11.00.0000=>11.01.0000
11.00.0000
31 Dec 2018 19:50:40
Revision:488827Original commit files touched by this commit
bofh search for other commits by this committer
databases/postgresql-odbc: Update version 10.03.0000=>11.00.0000
10.03.0000_2
12 Dec 2018 01:35:36
Revision:487272Original commit files touched by this commit
gerald search for other commits by this committer
Bump PORTREVISION for ports depending on the canonical version of GCC
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
10.03.0000_1
18 Sep 2018 11:01:51
Revision:480010Original commit files touched by this commit
linimon search for other commits by this committer
Mark these ports as broken on powerpc64.

While here, pet portlint.

Approved by:	portmgr (tier-2 blanket)
10.03.0000_1
29 Jul 2018 22:18:46
Revision:475857Original commit files touched by this commit
gerald search for other commits by this committer
Bump PORTREVISION for ports depending on the canonical version of GCC
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
10.03.0000
23 Jul 2018 21:08:09
Revision:475203Original commit files touched by this commit
bofh search for other commits by this committer
databases/postgresql-odbc: Update version 10.02.0000=>10.03.0000
10.02.0000
16 May 2018 09:34:07
Revision:470111Original commit files touched by this commit
amdmi3 search for other commits by this committer
- Fix LICENSE
- Update WWW

Approved by:	portmgr blanket
10.02.0000
23 Apr 2018 23:04:38
Revision:468146Original commit files touched by this commit
bofh search for other commits by this committer
databases/postgresql-odbc: Update version 10.01.0000=>10.02.0000

Relnotes:	https://git.postgresql.org/gitweb/?p=psqlodbc.git;a=log;h=refs/tags/REL-10_02_0000
10.01.0000
28 Dec 2017 15:28:18
Revision:457465Original commit files touched by this commit
girgen search for other commits by this committer
Update to latest version
09.06.0500_1
19 Sep 2017 15:18:53
Revision:450132Original commit files touched by this commit
bofh search for other commits by this committer
databases/postgresql-odbc: Fix c11 rompiler support

Reported by:	cmt@burggraben.net
09.06.0500
19 Sep 2017 05:06:03
Revision:450102Original commit files touched by this commit
bofh search for other commits by this committer
databases/postgresql-odbc: Update version 09.06.0310=>09.06.0500
09.06.0310
20 May 2017 09:27:14
Revision:441297Original commit files touched by this commit
bofh search for other commits by this committer
databases/postgresql-odbc: Update version 09.06.0200=>09.06.3100

https://odbc.postgresql.org/docs/release.html
09.06.0200
09 Apr 2017 00:26:00
Revision:438075Original commit files touched by this commit
bofh search for other commits by this committer
databases/postgresql-odbc: Update version 09.06.0100=>09.06.0200
09.06.0100
05 Mar 2017 10:32:30
Revision:435466Original commit files touched by this commit
bofh search for other commits by this committer
databases/postgresql-odbc: Update version 09.05.0400=>09.06.0100
09.05.0400
10 Aug 2016 21:07:06
Revision:420038Original commit files touched by this commit
bofh search for other commits by this committer
databases/postgresql-odbc: Update version 09.05.0210=>09.05.0400

- Use proper usage of OPTIONSNG
09.05.0210
18 Apr 2016 08:28:46
Revision:413561Original commit files touched by this commit
bofh search for other commits by this committer
databases/postgresql-odbc: Update version 09.05.0200=>09.05.0210
09.05.0200
10 Apr 2016 15:51:01
Revision:412968Original commit files touched by this commit
bofh search for other commits by this committer
databases/postgresql-odbc: Update version 09.05.0100=>09.05.0200
09.05.0100
01 Apr 2016 14:00:57
Revision:412346Original commit files touched by this commit
mat search for other commits by this committer
Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.

With hat:	portmgr
Sponsored by:	Absolight
09.05.0100
27 Feb 2016 21:20:37
Revision:409690Original commit files touched by this commit
bofh search for other commits by this committer
databases/postgresql-odbc: Update version 09.03.0400=>09.05.0100

- Fix patch files for 'make makepatch'
09.03.0400
14 Mar 2015 12:58:53
Revision:381263Original commit files touched by this commit
bofh search for other commits by this committer
databases/postgresql-odbc: Update version 09.01.0200=>09.03.0400

- Take MAINTAINERSHIP

Approved by:	bapt marino (implicit)
09.01.0200_2
05 Mar 2015 03:11:22
Revision:380472Original commit files touched by this commit
amdmi3 search for other commits by this committer
- Simplify MASTER_SITES
- Add LICENSE_FILE
- Simplify the port
- Fix typo which prevented correct examples packaging
09.01.0200_1
17 Oct 2014 10:23:35
Revision:371040Original commit files touched by this commit
bapt search for other commits by this committer
Reset maintainership
09.01.0200_1
25 Aug 2014 17:53:27
Revision:366114Original commit files touched by this commit
crees search for other commits by this committer
Convert pgsql ports to use USES+=pgsql

Reviewed by:	bapt
09.01.0200_1
05 May 2014 16:24:01
Revision:353029Original commit files touched by this commit
bapt search for other commits by this committer
Fix unixODBC vs libiodbc conflicts

Always rely on unixODBC each time a port is looking for libodbc.so
Remove odbc compat from libiodbc
This allows to install both kde and gnome at the same time

While here:
- Convert libiodbc to USES=libtool
- Convert a bunch of libiodbc dependencies to USES=libtool
- Chase libiodbc.so shlib change
- Stagify some ports
- Convert some ports to USES=pgsql

Discussed with:	rakuco (kde)
With hat:	portmgr
09.01.0200
21 Feb 2014 13:35:58
Revision:345402Original commit files touched by this commit
ehaupt search for other commits by this committer
Remove trailing whitespaces from category databases
09.01.0200
10 Feb 2014 13:54:28
Revision:343634Original commit files touched by this commit
ehaupt search for other commits by this committer
According to the Porter's Handbook (5.12.2.3.) default options must be added to
OPTIONS_DEFINE. This policy has been implemented only recently that's why we
have many ports violating this policy.

This patch adds the default options specified in the Porter's Handbook to
OPTIONS_DEFINE where they are being used. Ports maintained by
gnome@FreeBSD.org, kde@FreeBSD.org and x11@FreeBSD.org have been excluded.

Approved by:    portmgr (bapt)
09.01.0200
11 Dec 2013 18:08:53
Revision:336187Original commit files touched by this commit
bapt search for other commits by this committer
In preparation for making libtool generate libraries with a sane name, fix all
LIB_DEPENDS in databases
09.01.0200
20 Sep 2013 16:13:49
Revision:327717Original commit files touched by this commit
bapt search for other commits by this committer
Add NO_STAGE all over the place in preparation for the staging support (cat:
databases)
09.01.0200
13 Feb 2013 06:04:09
Revision:312143Original commit files touched by this commit
pclin search for other commits by this committer
- Update MAINTAINER email address for all my ports
- Convert Makefile header to new style if needed

Approved by:	swills (mentor)
09.01.0200
13 Jan 2013 22:46:28
Revision:310348Original commit files touched by this commit
swills search for other commits by this committer
- Update to 09.01.0200
- Give maintainership to submitter
- Add LICENSE
- Switch to OptionsNG
- Switch pkg-plist to PORTDOCS and PLIST_FILES

PR:		ports/174885
Submitted by:	Po-Chien Lin <linpc@cs.nctu.edu.tw>
08.04.0200_1
10 Feb 2012 13:16:49
Original commit files touched by this commit
miwi search for other commits by this committer
- chase databases/unixODBC shlib bump
08.04.0200
17 Mar 2011 17:07:24
Original commit files touched by this commit
bapt search for other commits by this committer
- update to 08.04.0200 [1]
- cleanup the Makefile

PR:             ports/144993 [1]
Submitted by:   Berend de Boer <berend _at_ pobox.com>
08.04.0100
10 Nov 2010 10:19:45
Original commit files touched by this commit
stefan search for other commits by this committer
IGNORE until someone provides an update - contents of numeric fields returned as
0 in this version.

PR:             144993
Submitted by:   Berend de Boer <berend@pobox.com>
                (+ submitter timeout, thus no update at this point)
08.04.0100
17 Aug 2010 23:46:35
Original commit files touched by this commit
linimon search for other commits by this committer
Reassign to freebsd-ports, per maintainer email to ports@.
08.04.0100
04 Nov 2009 21:11:51
Original commit files touched by this commit
lippe search for other commits by this committer
- Update to 08.04.0100.

PR:             ports/137046
Submitted by:   Alex Goncharov <alex-goncharov@comcast.net> (maintainer)
08.03.0400_1
27 Jan 2009 05:13:10
Original commit files touched by this commit
fjoe search for other commits by this committer
Fix build with unixODBC 2.2.14: in 2.2.14 signatures of several functions
(SQLExtendedFetch, SQLColAttribute, SQLColAttributeW) were fixed.

Approved by:    portmgr (marcus)
08.03.0400
23 Jan 2009 23:43:10
Original commit files touched by this commit
pav search for other commits by this committer
- Mark BROKEN: does not compile

Reported by:    pointyhat
08.03.0400
22 Nov 2008 22:27:50
Original commit files touched by this commit
miwi search for other commits by this committer
- Update to 08.03.0400

PR:             129058
Submitted by:   Alex Goncharov <alex-goncharov@comcast.net> (maintainer)
08.03.0300
24 Oct 2008 19:00:28
Original commit files touched by this commit
miwi search for other commits by this committer
- Update to 08.03.03

PR:             128307
Submitted by:   Alex Goncharov <alex-goncharov@comcast.net> (maintainer)
08.03.0200
04 Sep 2008 21:08:16
Original commit files touched by this commit
pav search for other commits by this committer
- Try to fix plist for NOPORTDOCS

Reported by:    ionbot
08.03.0200
04 Sep 2008 20:51:13
Original commit files touched by this commit
pav search for other commits by this committer
- Update to 8.3.2

PR:             ports/126963
Submitted by:   Alex Goncharov <alex-goncharov@comcast.net> (maintainer)
7.2.5_2
18 Aug 2008 07:44:33
Original commit files touched by this commit
girgen search for other commits by this committer
Reassign this port to alex-goncharov@comcast.net.
7.2.5_2
28 Jan 2007 09:07:47
Original commit files touched by this commit
kris search for other commits by this committer
Use libtool port instead of included one to avoid objformat a.out botch
7.2.5_2
09 Oct 2006 18:51:19
Original commit files touched by this commit
alepulver search for other commits by this committer
- Unify the way to choose between ODBC flavors (WITH_IODBC / WITH_UNIXODBC).

PR:             ports/103293
Submitted by:   Ganael Laplanche <ganael.laplanche@martymac.com>
Approved by:    girgen (databases/postgresql-odbc), fjoe (databases/libodbc++),
                sergey@network-asp.biz
                (databases/mysql-connector-odbc, timeout),
                delphij@FreeBSD.org (net/openldap23-server),
                mat@FreeBSD.org (databases/p5-DBD-ODBC)
7.2.5_2
07 Mar 2006 08:28:06
Original commit files touched by this commit
ade search for other commits by this committer
Bump PORTREVISION on glib12/gtk12 consumer ports to ease the upgrade path.

Discussed with: kris
Approved by:    portmgr (implicit)
7.2.5_1
22 Jan 2006 08:23:41
Original commit files touched by this commit
edwin search for other commits by this committer
SHA256ify

Approved by:    krion@
7.2.5_1
06 Dec 2004 03:59:56
Original commit files touched by this commit
girgen search for other commits by this committer
Add myself as committer, and use my @FreeBSD.org address.

Approved by: ade (mentor)
7.2.5_1
31 Mar 2004 03:12:58
Original commit files touched by this commit
trevor search for other commits by this committer
SIZEify (maintainer timeout)
7.2.5_1
04 Feb 2004 05:21:48
Original commit files touched by this commit
marcus search for other commits by this committer
Bump PORTREVISION on all ports that depend on gettext to aid with upgrading.

(Part 2)
7.2.5
11 Jun 2003 09:23:15
Original commit files touched by this commit
osa search for other commits by this committer
Use ${MASTER_SITE_PGSQL} instead of multiple sites

Submitted by:   osa
Approved by:    maintainer
PR:             50397
Approved by:    fjoe (implicit)
7.2.5
21 Feb 2003 11:15:05
Original commit files touched by this commit
knu search for other commits by this committer
De-pkg-comment.
7.2.5
05 Jan 2003 10:07:22
Original commit files touched by this commit
olgeni search for other commits by this committer
Fix paths for ODBC support scripts.
7.2.5
05 Jan 2003 10:06:45
Original commit files touched by this commit
olgeni search for other commits by this committer
Remove POSTGRESQL_SUBPORT, as this is a standalone port now.
7.2.5
04 Jan 2003 23:47:46
Original commit files touched by this commit
seanc search for other commits by this committer
Update PostgreSQL ODBC to 7.2.5 (version number not the same as the main
distribution, this is the matching version for PostgreSQL 7.3.1).

PR:             ports/45882 && ports/41739
Submitted by:   Palle Girgensohn <girgen@pingpong.net> &&
                Dave Chapeskie <bsdport@ddm.wox.org> for fix in ports/41739
7.2.1
11 Apr 2002 05:08:34
Original commit files touched by this commit
ijliao search for other commits by this committer
use the latest postgresql7

postgresql-jdbc now uses the great new USE_JAVA stuff

PR:             36980
Submitted by:   maintainer
19 Feb 2002 08:37:32
commit hash: fp1.24907@dev.null.freshports.orgcommit hash: fp1.24907@dev.null.freshports.orgcommit hash: fp1.24907@dev.null.freshports.orgcommit hash: fp1.24907@dev.null.freshports.org files touched by this commit
vanilla search for other commits by this committer
This is a port of the client odbc support from the postgresql-7.2  
distribution, that used to be apart of the postgresql7 port.    

Number of commits found: 70