Consultor Eletrônico



Kbase P105892: No OE build script available for _proapsv with Oracle component on IBM AIX
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   22/06/2007
Status: Verified

FACT(s) (Environment):

OpenEdge 10.x
IBM AIX 5L
Oracle DataServer

SYMPTOM(s):

No OE build script available for _proapsv with Oracle component

No OE build script available for AppServer with Oracle component

Build scripts shipped with OE10.1B does not link to Oracle library

On AIX platform, need to build AppServer with Oracle component when using Oracle in self-service mode

There are OE build scripts for building client with Oracle component and Oracle server orasrv in $DLC/oebuild/make directory

There are OE build scripts for building regular AppServer

There are probuild options for building AppServer with Oracle component in version 9

CAUSE:


Bug# OE00152204

FIX:


Follow the steps below in order to work around the problem:

Take existing build__proapsv.sh in $DLC/oebuild/make directory, and make the following modifications to create a script for linking with Oracle:

1. comment

unset ORACLE_HOME

2. add

${ORALIB} \

after

${OEBUILD}/obj/libcrypto.a \

3. change

${OEBUILD}/obj
1orsys.o \

to

${OEBUILD}/obj/orsys.o \

Following are differences between new script and old script

< #unset ORACLE_HOME

---

> unset ORACLE_HOME

< ${OEBUILD}/obj/orsys.o \

---

> ${OEBUILD}/obj
1orsys.o \

< ${ORALIB} \