aboutsummaryrefslogtreecommitdiff
path: root/databases/libiodbc/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* Update databases/libiodbc to 3.52.12Tobias C. Berner2016-09-011-3/+6
| | | | | | | | | | While doing so, make qa.sh happy by adding some GTK2-deps. Approved by: rakuco (mentor) Differential Revision: https://reviews.freebsd.org/D7728 Notes: svn path=/head/; revision=421230
* By default libtool replaces -export-symbols <file> with -retain-symbols-fileTijl Coosemans2015-08-021-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | <file> on ELF systems, but this doesn't really do what -export-symbols is meant to do. On GNU ELF systems it converts <file> to a simple version script first and then uses -version-script instead of -retain-symbols-file. Let USES=libtool patch libtool scripts to do this on all systems with GNU ld(1). Bump PORTREVISION on all ports where the build log contains -export-symbols. audio/calf: This port builds a module that now exports only one function, but it also builds a number of executables that link to this module and expect to see other functions. Because it's already a bit dodgy to link to a module (libtool warns about this) let the module continue to export only one function and instead build an ordinary library from the same source that the executables can link to. Fix a number of other issues in the same Makefile.am and clean up the port Makefile. japanese/scim-honoka: Tries to hide all symbols that start with an underscore, but because this library is written in C++ all symbols start with _Z so it ends up hiding everything. Just don't hide anything at all like the textproc/scim configure script does. multimedia/schroedinger: Apply an upstream patch. textproc/scim-input-pad: Same as japanese/scim-honoka. PR: 201922 Approved by: portmgr (antoine) Exp-run by: antoine Notes: svn path=/head/; revision=393429
* Update to 3.52.9.Raphael Kubo da Costa2014-05-191-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | Changes upstream include: * Added support for building on recent versions of Mac OS X * Fixed warnings from autoconf/automake * Fixed infinite loop in connection pool * Fixed compiler warnings * Fixed build dependency for make -jX * Fixed check for Unicode driver * Fixed issue calling SQLCancel from other thread * Fixed SQLInstallDriverEx when driver is readonly The "Fixed build dependency for make -jX" part is important, as parallel builds (particularly with the GTK2 option on) normally fail with 3.52.8. Based on a patch by Jia-Shiun Li <jiashiun@gmail.com> [1]. PR: ports/189496 [1] Submitted by: Jia-Shiun Li <jiashiun@gmail.com> [1] MFH: 2014Q2 Notes: svn path=/head/; revision=354528
* Fix unixODBC vs libiodbc conflictsBaptiste Daroussin2014-05-051-5/+6
| | | | | | | | | | | | | | | | | | | 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 Notes: svn path=/head/; revision=353029
* When linking a library libA with a library libB using libtool, if libB.laTijl Coosemans2014-04-231-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | exists, libtool will add all libraries libB.la refers to (dependency_libs field) to the linker command line and store them in the dependency_libs field of libA.la. So everything that subsequently links with libA will also link to these extra libraries. This causes too much overlinking. This commit modifies Mk/Uses/libtool.mk so it empties the dependency_libs field in .la libraries during staging. However, because .la libraries have very limited use when dependency_libs is empty it makes sense to completely remove them during staging. So with this commit USES=libtool is modified to remove .la libraries and a new form (USES=libtool:keepla) is introduced in case they need to be kept (dependency_libs is still emptied). PORTREVISION is bumped on all ports with USES=libtool that install .la libraries. Most ports are also changed to add :keepla because .la libraries have to be kept around as long as there are dependent ports with .la libraries that refer to them in their dependency_libs field. In most cases :keepla can be removed again as soon as all dependent ports that install .la libraries have some form of USES=libtool added to their Makefile. PR: ports/188759 Exp-run: bdrewery Approved by: portmgr (bdrewery) Notes: svn path=/head/; revision=351936
* databases/libiodbc:Max Brazhnikov2014-02-201-24/+14
| | | | | | | | | | - Amend LICENSE (BSD3CLAUSE) - Convert to USES=libtool:oldver - Convert to options - Add stage support Notes: svn path=/head/; revision=345221
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | databases) Notes: svn path=/head/; revision=327717
* Eliminate USE_GNOME=pkgconfig from databasesBaptiste Daroussin2013-09-021-6/+2
| | | | | | | | | While here: - trim headers - Convert to USES=pathfix, USES=gmake Notes: svn path=/head/; revision=325950
* Update to 3.52.8.Raphael Kubo da Costa2012-04-121-10/+10
| | | | | | | | | | | | | | | | | | | This commit also tries to clean up the infrastructure a little bit. It compiled fine on 7.4, 8.2, 9.0 and 10 on redports: - Remove iodbc.org from the MASTER_SITES list, it doesn't seem to exist anymore. - Set LICENSE. - Remove USE_GMAKE, it seems to build fine with make(1). - Remove the pthreads-related hacks and seds, as they do not seem to be needed anymore, especially now that only pthreads exists. - Remove the -D_BSD_WCHAR_T_DEFINED and the patch in files/, as libiodbc itself has accounted for _BSD_WCHAR_T_DECLARED since 2003. - Act on the example code based on NOPORTEXAMPLES instead of NOPORTDOCS. Notes: svn path=/head/; revision=294734
* - Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)Dmitry Marakasov2011-09-231-3/+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
* Sync to new bsd.autotools.mkAde Lovett2010-12-041-1/+1
| | | | Notes: svn path=/head/; revision=265663
* Take maintainership for kde@Max Brazhnikov2010-07-181-1/+1
| | | | Notes: svn path=/head/; revision=257923
* - Update to 3.52.7Martin Wilke2009-09-161-10/+5
| | | | | | | | | PR: 138814 Submitted by: Ports Fury Feature safe: yes Notes: svn path=/head/; revision=241517
* - Switch SourceForge ports to the new File Release System: categories ↵Dmitry Marakasov2009-08-221-1/+2
| | | | | | | 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.52.6Martin Wilke2007-10-231-5/+4
| | | | | | | | PR: 117333 Submitted by: KATO Tsuguru <tkato432@yahoo.com> Notes: svn path=/head/; revision=201857
* - Update to version 3.52.5Ion-Mihai Tetcu2007-01-171-2/+1
| | | | | | | | PR: ports/107994 Submitted by: KATO Tsuguru Notes: svn path=/head/; revision=182649
* Bump PORTREVISION.Max Khon2006-12-111-1/+1
| | | | Notes: svn path=/head/; revision=179509
* Sync with unixODBC port: build without GUI by default.Max Khon2006-12-111-1/+1
| | | | Notes: svn path=/head/; revision=179507
* - s,INSTALLS_SHLIB,USE_LDCONFIG,gCheng-Lung Sung2006-08-141-1/+1
| | | | | | | | | | - these include comms/ converters/ databases/ devel/ maintained by ports@ PR: ports/101916 Submitted by: Gea-Suan Lin <gslin_AT_gslin dot org> Notes: svn path=/head/; revision=170639
* Remove USE_REINPLACE from all categories starting with DEdwin Groothuis2006-05-041-1/+0
| | | | Notes: svn path=/head/; revision=161363
* Bump PORTREVISION on glib12/gtk12 consumer ports to ease the upgrade path.Ade Lovett2006-03-071-0/+1
| | | | | | | | Discussed with: kris Approved by: portmgr (implicit) Notes: svn path=/head/; revision=157004
* - Update to version 3.52.4 [1]Simon Barner2006-01-311-2/+2
| | | | | | | | | | - Use less greedy CONFLICTS Submitted by: Ports fury PR: ports/92612 Notes: svn path=/head/; revision=154931
* Update to 3.52.3Marcus Alves Grando2005-11-141-6/+8
| | | | | | | | | | Add SHA256 PR: 89013 Submitted by: KATO Tsuguru <tkato432@yahoo.com> Notes: svn path=/head/; revision=148282
* - Add WITHOUT_X11 as a synonym to WITHOUT_GUIPav Lucistnik2005-09-151-1/+1
| | | | | | | | PR: ports/86183 Requested by: Vivek Khera <vivek@khera.org> Notes: svn path=/head/; revision=142858
* Update to version 3.52.2Kirill Ponomarev2005-02-251-2/+1
| | | | | | | | PR: ports/77963 Submitted by: Ports Fury Notes: svn path=/head/; revision=129750
* Fix package build.Kirill Ponomarev2004-11-161-1/+2
| | | | | | | Submitted by: Ports Fury Notes: svn path=/head/; revision=121745
* Update to version 3.52.1Kirill Ponomarev2004-11-141-11/+28
| | | | | | | | PR: ports/73901 Submitted by: Ports Fury Notes: svn path=/head/; revision=121552
* Add SourceForge to MASTER_SITES.Volker Stolz2004-07-131-1/+3
| | | | Notes: svn path=/head/; revision=113558
* Apply a big libtool patch to allow porters to use the libtool installed byJoe Marcus Clarke2004-07-091-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the libtoolX ports instead of the one included with each port. Ports that set USE_LIBTOOL_VER=X will now use the ports version of libtool instead of the included version. To restore previous behavior, use the new macro, USE_INC_LIBTOOL_VER. Both macros accept the same argument: a libtool version. For example, to use the ports version of libtool-1.5, add the following to your Makefile: USE_LIBTOOL_VER= 15 To use the included version of libtool with extra hacks provided by libtool-1.5, add the following to your Makefile: USE_INC_LIBTOOL_VER= 15 With this change, ports that had to add additional libtool hacks to prevent .la files from being installed or to fix certain threading issues can now delete those hacks (after appropriate testing, of course). PR: 63944 Based on work by:eik and marcus Approved by: ade (autotools maintainer) Tested by: kris on pointyhat Bound to be hidden problems: You bet Notes: svn path=/head/; revision=113296
* - Update to 3.51.2Pav Lucistnik2004-06-261-2/+1
| | | | | | | | PR: ports/68309 Submitted by: Idar Tollefsen <idart@performancedesign.no> Notes: svn path=/head/; revision=112341
* - Reset bouncing maintainer address:Pav Lucistnik2004-06-261-1/+1
| | | | | | | | | | This is a collection of reports about email delivery process concerning a message you originated: error: nosuchuser: ebakke@trolltech.com Notes: svn path=/head/; revision=112339
* - Fix detect of wchar_t on FreeBSD. Using _BSD_CT_RUNE_T_ is not sufficientPav Lucistnik2004-04-101-1/+1
| | | | | | | | | | | | for some version of FreeBSD, rather test on __FreeBSD__. This problem prevent other programs to include iodbc's header files on -STABLE systems. PR: ports/64743 Submitted by: eik Approved by: maintainer timeout (2 weeks) Notes: svn path=/head/; revision=106656
* Update to 3.51.1: catch up with the newest development branch, but notMark Linimon2004-03-221-5/+4
| | | | | | | | | | | | | | | | | | yet the newest release from that branch. From the PR: "I am aware that this patch does not update to the very latest version of the libiodbc library, but I will submit another update when I am back online after my move (along with a maintainer-email update)." Changes over time include: added new SQLDrivers implementation; added ODBC Tracing facility; code restructuring; fixes for installations in many more environments; bugfixes. See ChangeLog for complete details. PR: ports/62877 Submitted by: Erik H. Bakke <ebakke@trolltech.com> (maintainer) Notes: svn path=/head/; revision=104971
* Whoa there, boy, that's a mighty big commit y'all have there...Ade Lovett2004-03-141-1/+1
| | | | | | | | | | | | | | | | | | Begin autotools sanitization sequence by requiring ports to explicitly specify which version of {libtool,autoconf,automake} they need, erasing the concept of a "system default". For ports-in-waiting: USE_LIBTOOL=YES -> USE_LIBTOOL_VER=13 USE_AUTOCONF=YES -> USE_AUTOCONF_VER=213 USE_AUTOMAKE=YES -> USE_AUTOMAKE_VER=14 Ports attempting to use the old style system after June 1st 2004 will be sorely disappointed. Notes: svn path=/head/; revision=103963
* - Add CONFLICTS between libiodbc and unixODBCKirill Ponomarev2004-02-081-0/+2
| | | | | | | | PR: ports/62528 Submitted by: Ports Fury Notes: svn path=/head/; revision=100381
* Bump PORTREVISION on all ports that depend on gettext to aid with upgrading.Joe Marcus Clarke2004-02-041-1/+1
| | | | | | | (Part 2) Notes: svn path=/head/; revision=99920
* Remove USE_GNOMENG.Joe Marcus Clarke2003-04-181-1/+0
| | | | Notes: svn path=/head/; revision=79247
* De-pkg-comment.Akinori MUSHA2003-02-211-0/+1
| | | | Notes: svn path=/head/; revision=76031
* - Enable --with-pthreads option.Ying-Chieh Liao2002-10-101-3/+12
| | | | | | | | | | | - Add WITH_GUI support(not default). PR: 36129 Submitted by: Hidekazu Kuroki <hidekazu@pc88.gr.jp> Approved by: maintainer timeout Notes: svn path=/head/; revision=67728
* Deploy USE_GNOMENG infrastructureMario Sergio Fujikawa Ferreira2002-08-301-1/+2
| | | | | | | | PR: 42192 Submitted by: Edwin Groothuis <edwin@mavetju.org> Notes: svn path=/head/; revision=65300
* update maintainer emailYing-Chieh Liao2001-12-021-1/+1
| | | | | | | | PR: 32402 Submitted by: maintainer Notes: svn path=/head/; revision=50846
* - Update to version 3.0.5Johann Visagie2001-10-031-2/+21
| | | | | | | | | | | | | | | | | - Add dependency on GTK (new in this version) via USE_GTK knob - Install sample configuration files - Install odbctest binary - Tweak installation directory of configuration files, and name of odbctest binary so as not to conflict with the port databases/unixODBC - Install some basic documentation in $DOCSDIR - Expand and clarify pkg-descr; reword pkg-comment to be more correct Approved by: No response in ~25h from maintainer. (Apologies for the short wait; I have a port waiting in the wings which depends on this one.) Notes: svn path=/head/; revision=48390
* Add libiodbc, a library which allows access to ODBC databases.Will Andrews2000-05-291-0/+18
PR: 17587 Submitted by: Erik H. Bakke <erikhb@bgnett.no> Notes: svn path=/head/; revision=28920