Commit 7f3cd71c authored by Amul Shah's avatar Amul Shah
Browse files

Imported Upstream version 6.3-004

parent e19ff601
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -27,7 +27,7 @@ foreach(lang ${languages})
endforeach()

# Defaults
set(version V6.3-003A)
set(version V6.3-004)
if("${version}" STREQUAL "")
        set(version V9.9-0)
endif()
+7 −7
Original line number Diff line number Diff line
@@ -25,16 +25,16 @@ To build GT.M for Linux, do the following steps:

2. Unpack the GT.M sources
   The GT.M source tarball extracts to a directory with the version number in
   the name, fis-gtm-V6.3-003A
   $ tar xfz fis-gtm-V6.3-003A.tar.gz
   $ cd fis-gtm-V6.3-003A
   the name, fis-gtm-V6.3-004
   $ tar xfz fis-gtm-V6.3-004.tar.gz
   $ cd fis-gtm-V6.3-004

   You should find this README, LICENSE, COPYING and CMakeLists.txt file and
   sr_* source directories.

3. Building GT.M -
   <fis-gtm-build> can be a sub directory of the source directory,
   fis-gtm-V6.3-003A, or any other valid path.
   fis-gtm-V6.3-004, or any other valid path.

   $ mkdir <fis-gtm-build>
   $ cd <fis-gtm-build>
@@ -53,16 +53,16 @@ To build GT.M for Linux, do the following steps:
   #
   #     -D CMAKE_INSTALL_PREFIX:PATH=${PWD}/package
   #
   $ cmake -D CMAKE_INSTALL_PREFIX:PATH=${PWD}/package <path to>/fis-gtm-V6.3-003A
   $ cmake -D CMAKE_INSTALL_PREFIX:PATH=${PWD}/package <path to>/fis-gtm-V6.3-004

   $ make

   $ make install

   $ cd package/lib/fis-gtm/V6.3-003A_x86_64
   $ cd package/lib/fis-gtm/V6.3-004_x86_64

   # Now you are ready to install GT.M. Answer a few questions and install it.
   # The recommended installation path is /opt/fis-gtm/V6.3-003A_x86_64
   # The recommended installation path is /opt/fis-gtm/V6.3-004_x86_64

   $ sudo ./configure

+132 −300

File changed.

Preview size limit exceeded, changes collapsed.

+132 −300

File changed.

Preview size limit exceeded, changes collapsed.

+8 −4
Original line number Diff line number Diff line
@@ -128,7 +128,7 @@ const static readonly int error_ansi[] = {
	   0,	/* TRANSMINUS */
	   0,	/* MAXNRSUBSCRIPTS */
	  75,	/* MAXSTRLEN */
	   0,	/* JNLDBERR */
	   0,	/* ENCRYPTCONFLT2 */
	   0,	/* JNLFILOPN */
	   0,	/* MBXRDONLY */
	   0,	/* JNLINVALID */
@@ -517,7 +517,7 @@ const static readonly int error_ansi[] = {
	  80,	/* SOCKINIT */
	  81,	/* OPENCONN */
	   0,	/* DEVNOTIMP */
	   0,	/* JNLEXTR */
	   0,	/* UNUSEDMSG688 */
	   0,	/* DBREMOTE */
	   0,	/* JNLREQUIRED */
	   0,	/* TPMIXUP */
@@ -591,7 +591,7 @@ const static readonly int error_ansi[] = {
	   0,	/* DELIMSIZNA */
	   0,	/* INVCTLMNE */
	   0,	/* SOCKLISTEN */
	   0,	/* LQLENGTHNA */
	   0,	/* UNUSEDMSG762 */
	   0,	/* ADDRTOOLONG */
	   0,	/* GTMSECSHRGETSEMFAIL */
	   0,	/* CPBEYALLOC */
@@ -654,7 +654,7 @@ const static readonly int error_ansi[] = {
	   0,	/* MUNOFINISH */
	   0,	/* DBFILEXT */
	   0,	/* JNLFSYNCERR */
	   0,	/* FSYNCTIMOUT */
	   0,	/* UNUSEDMSG825 */
	   0,	/* ZCPREALLVALINV */
	   0,	/* NEWJNLFILECREAT */
	   0,	/* DSKSPACEFLOW */
@@ -1502,4 +1502,8 @@ const static readonly int error_ansi[] = {
	   0,	/* DBFREEZEOFF */
	   0,	/* STPCRIT */
	   0,	/* STPOFLOW */
	   0,	/* SYSUTILCONF */
	   0,	/* MSTACKSZNA */
	   0,	/* JNLEXTRCTSEQNO */
	   0,	/* INVSEQNOQUAL */
	};
Loading