博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
UnixODBC
阅读量:5767 次
发布时间:2019-06-18

本文共 2725 字,大约阅读时间需要 9 分钟。

UnixODBC下载安装地址:http://www.unixodbc.org/

 

DOWNLOAD

Distribution Format

unixODBC is currently availible in a gzip, tar format. This means that you should;

1. copy the  file somewhere you can create files and directories 

2. gunzip unixODBC*.tar.gz 
3. tar xvf unixODBC*.tar

Doing so will create a unixODBC directory with all source files inside.

Via HTTP: 

MD5 (bd25d261ca1808c947cb687e2034be81): 

For software that still needs it, 2.3.0 is also available for download 

Source Access

Public SVN access is also availible for those that want the very latest sources (bleeding edge).

So you may want to use these commands, When prompted for a password for anonymous, simply press the Enter key

svn co svn://svn.code.sf.net/p/unixodbc/code/trunk unixodbc

Developers of unixODBC work from this SVN so the state of the sources in there will vary.

To build from the tree downloaded by svn, run the following command (in the root of the downloaded tree)

make -f Makefile.svn

This will build the configure script.

To build from SVN, you need some current tools, these are what we recommend:

  • automake 1.11
  • autoconf 2.6.4
  • libtool 2.2.6
These can be found from the  web site or its many mirrors.

Make the Libraries and Programs

The install uses the standard GNU autoconf process. So its simply a matter of running

./configure 

make 
make install

By default the files are installed into /usr/local. As is usual with configure, this location can be changed by altering the prefix option to configure. i.e.

./configure --prefix=/usr/local/unixODBC

This will install the lib, bin, include and etc directories in /usr/local/unixODBC/lib etc.

To conform with the GNU guidelines the odbcinst file is now installed by default in {prefix}/etc, this can be altered using the --sysconfdir option to configure. To install the files in the old default /etc you would run configure like this

./configure --sysconfdir=/etc

RPM's

if you want some RPMS have a look at the sourceforge  page.

 

Andre Felipe Machado has also made up some RPM's for use with the version 7.0 and 8.0 version of  Linux. These can be found 

I have also built a  install which is 

FreeBSD Ports's

Nick Sayer has created a FreeBSD port of unixODBC. Have a look at the  site and search for unixODBC

Solaris PKG of 2.2.14

I have created Solaris packages of 2.2.14 for    and  
!!! WARNING (Will Robinson) - these packages expect to install in /usr/local/bin etc, and will remove any non pkgmgr contents of those directories. It will warn you, but if you say yes, they will be gone.

Finally

Everyone should take a look at the README and INSTALL files. If you still have problems then it is likely our fault so just send an  and I will see what I can do.

  

转载于:https://www.cnblogs.com/saratearing/p/6264163.html

你可能感兴趣的文章
Windows Phone的Silverlight Toolkit 安装及其使用
查看>>
DBS:同学录
查看>>
Mysql备份系列(1)--备份方案总结性梳理
查看>>
[CareerCup] 1.6 Rotate Image 翻转图像
查看>>
Python中的画图初体验
查看>>
Java程序员的日常 —— 响应式导航Demo
查看>>
objective-c内存管理基础
查看>>
sap关于价值串的说法(转载)
查看>>
Migration to S/4HANA
查看>>
sed 对目录进行操作
查看>>
什么是代码
查看>>
移动端开发单位——rem,动态使用
查看>>
系列文章目录
查看>>
手把手教你如何提高神经网络的性能
查看>>
前端布局原理涉及到的相关概念总结
查看>>
递归调用 VS 循环调用
查看>>
使用sstream读取字符串中的数字(c++)
查看>>
树莓派下实现ngrok自启动
查看>>
javascript静态类型检测工具—Flow
查看>>
MachineLearning-Sklearn——环境搭建
查看>>