#
# Makefile.am for psqlodbc30w (PostgreSQL ODBC driver)
#
-# $Header: /home/heikki/psqlodbc-cvs-copy/psqlodbc/Makefile.am,v 1.53 2009/11/15 05:29:03 hinoue Exp $
+# $Header: /home/heikki/psqlodbc-cvs-copy/psqlodbc/Makefile.am,v 1.54 2010/08/28 00:01:59 h-saito Exp $
#
#-------------------------------------------------------------------------
\
installer/banner.bmp installer/lgpl.rtf \
installer/Make.bat installer/upgrade.bat \
+ installer/MakeX64.bat installer/upgrade_x64.bat \
installer/psqlodbc.wxs installer/psqlodbcm.wxs \
installer/README.txt installer/background.bmp
# Process this file with autoconf to produce a configure script.
-AC_INIT(psqlodbc, 08.04.0200, [pgsql-odbc@postgresql.org])
+AC_INIT(psqlodbc, 09.00.0100, [pgsql-odbc@postgresql.org])
AC_PREREQ(2.57)
AC_CONFIG_AUX_DIR(config)
AM_INIT_AUTOMAKE
Preparation before the build:
</p>
<ol>
- <li>The Windows distribution of PostgreSQL will install the required headers and libraries into C:\Program Files\PostgreSQL\8.4
+ <li>The Windows distribution of PostgreSQL will install the required headers and libraries into C:\Program Files\PostgreSQL\9.0
<li>OpenSSL should be installed into C:\OpenSSL (OpenSSL binaries can be downloaded from <a href="http://www.slproweb.com/products/Win32OpenSSL.html">http://www.slproweb.com/products/Win32OpenSSL.html</a>)
</li></ol>
</tr>
<tr>
<td>PG_INC</td>
- <td>$(PROGRAMFILES)\PostgreSQL\8.4\include</td>
+ <td>$(PROGRAMFILES)\PostgreSQL\9.0\include</td>
</tr>
<tr>
<td>PG_LIB</td>
- <td>$(PROGRAMFILES)\PostgreSQL\8.4\lib\ms</td>
+ <td>$(PROGRAMFILES)\PostgreSQL\9.0\lib\ms</td>
</tr>
<tr>
<td>SSL_INC</td>
REM Values to change include VERSION and SUBLOC, both below.
REM The subdirectory to install into
-SET SUBLOC="0804"
+SET SUBLOC="0900"
if NOT "%1"=="" SET VERSION="%1"
if NOT "%1"=="" GOTO GOT_VERSION
REM The full version number of the build in XXXX.XX.XX format
-SET VERSION="08.04.0200"
+SET VERSION="09.00.0100"
echo.
echo Version not specified - defaulting to %VERSION%
REM Values to change include VERSION and SUBLOC, both below.
REM The subdirectory to install into
-SET SUBLOC="0804"
+SET SUBLOC="0900"
SET CPUTYPE="x64"
if "%1" == "clean" GOTO CLEAN
:NORMAL_EXEC
REM The full version number of the build in XXXX.XX.XX format
-SET VERSION="08.04.0201"
+SET VERSION="09.00.0100"
echo.
echo Version not specified - defaulting to %VERSION%
In order to build the installer, first ensure that a suitable binary is in
the $SRC\Release directory, then, from the $SRC\Installer directory run:
-C:\psqlODBC\Installer> make 08.04.0200
+C:\psqlODBC\Installer> make 09.00.0100
The version number will default to a value set in the Make.bat batch file if
not specified on the command line. 2 files will be built:
cls
echo This file will upgrade your psqlODBC installation.
echo.
-echo You must have psqlODBC 08.04.xxxx installed
+echo You must have psqlODBC 09.00.xxxx installed
echo from the official MSI installation to use this upgrade path.
echo.
echo If psqlODBC or any of it's components are in use
cls
echo This file will upgrade your psqlODBC installation.
echo.
-echo You must have psqlODBC 08.02.xxxx installed
+echo You must have psqlODBC 09.00.xxxx installed
echo from the official MSI installation to use this upgrade path.
echo.
echo If psqlODBC or any of it's components are in use
#ifndef __VERSION_H__
#define __VERSION_H__
-#define POSTGRESDRIVERVERSION "08.04.0202"
-#define POSTGRES_RESOURCE_VERSION "08.04.0202\0"
-#define PG_DRVFILE_VERSION 8,4,02,02
-#define PG_BUILD_VERSION "201008210001"
+#define POSTGRESDRIVERVERSION "09.00.0100"
+#define POSTGRES_RESOURCE_VERSION "09.00.0100\0"
+#define PG_DRVFILE_VERSION 9,0,01,00
+#define PG_BUILD_VERSION "201008280001"
#endif
#
#
!IF "$(PG_INC)" == ""
-PG_INC=$(PROGRAMFILES)\PostgreSQL\8.4\include
+PG_INC=$(PROGRAMFILES)\PostgreSQL\9.0\include
!MESSAGE Using default PostgreSQL Include directory: $(PG_INC)
!ENDIF
!IF "$(PG_LIB)" == ""
-PG_LIB=$(PROGRAMFILES)\PostgreSQL\8.4\lib
+PG_LIB=$(PROGRAMFILES)\PostgreSQL\9.0\lib
!MESSAGE Using default PostgreSQL Library directory: $(PG_LIB)
!ENDIF
#
#
!IF "$(PG_INC)" == ""
-PG_INC=$(PROGRAMFILES)\PostgreSQL\8.4\include
+PG_INC=$(PROGRAMFILES)\PostgreSQL\9.0\include
!MESSAGE Using default PostgreSQL Include directory: $(PG_INC)
!ENDIF