Changeset 2204


Ignore:
Timestamp:
2001-03-20T15:01:21+12:00 (23 years ago)
Author:
say1
Message:

fixes to corba config

Location:
trunk/gsdl
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/configure

    r2173 r2204  
    580580if test "${enable_corba+set}" = set; then
    581581  enableval="$enable_corba"
    582   USE_CORBA=1
    583 else
    584   USE_CORBA=0
     582  export USE_CORBA=1
     583else
     584  export USE_CORBA=0
    585585fi
    586586
     
    594594if test "${with_micodir+set}" = set; then
    595595  withval="$with_micodir"
    596   MICO_DIR=$enableval
    597 else
    598   MICO_DIR="default"
     596  export MICO_DIR=$enableval
     597else
     598  export MICO_DIR=default
    599599fi
    600600
     
    990990fi
    991991
    992 for ac_prog in gawk mawk nawk awk
     992for ac_prog in mawk gawk nawk awk
    993993do
    994994# Extract the first word of "$ac_prog", so it can be a program name with args.
  • trunk/gsdl/configure.in

    r2173 r2204  
    2424dnl Set use of corba
    2525dnl
    26 AC_ARG_ENABLE(corba, [  --enable-corba          Enable CORBA support], USE_CORBA=1, USE_CORBA=0)
     26AC_ARG_ENABLE(corba, [  --enable-corba          Enable CORBA support], export USE_CORBA=1, export USE_CORBA=0)
    2727AC_DEFINE(USE_CORBA)
    2828AC_SUBST(USE_CORBA)
    2929
    30 AC_ARG_WITH(micodir, [  --with-micodir          Use installed MICO directory], MICO_DIR=$enableval, MICO_DIR="default")
     30AC_ARG_WITH(micodir, [  --with-micodir          Use installed MICO directory], export MICO_DIR=$enableval, export MICO_DIR=default)
    3131AC_DEFINE(MICO_DIR)
    3232AC_SUBST(MICO_DIR)
  • trunk/gsdl/packages/configure

    r2173 r2204  
    6666
    6767
     68echo USE_CORBA = $USE_CORBA
     69echo MICO_DIR = $MICO_DIR
    6870if test -n "$USE_CORBA"; then
    6971  if test $MICO_DIR = default; then
Note: See TracChangeset for help on using the changeset viewer.