Ignore:
Timestamp:
2001-03-14T04:15:23+13:00 (23 years ago)
Author:
cs025
Message:

Improvements to configure scripts in their support of various MICO
environment considerations, particularly when MICO is on the system
paths.

Fixed CORBA version of ping to correspond with parameters etc. of the
native form.

Finally, improved PING action to be more than a simple call to
the HASCOLLECTION action in the null protocol.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/packages/configure

    r2169 r2173  
    3333        USE_CORBA=true
    3434        ;;
     35    --with-micodir=*)
     36        if test $1 = ""; then
     37          $1 = "default"
     38            fi
     39        MICO_DIR=$1
     40        ;;       
    3541    --bindir=*)
    3642        bindir=`echo $1 | sed s/--bindir=//`
     
    6066
    6167
    62   echo ""
    63   echo "Configuring MICO CORBA"
    64 if test x$USE_CORBA = xtrue ; then
    65   # configure the MICO CORBA ORB
    66   echo ""
     68if test -n "$USE_CORBA"; then
     69  if test $MICO_DIR = default; then
     70    # configure the MICO CORBA ORB
     71    echo ""
     72    echo "Configuring MICO CORBA"
     73    echo ""
    6774
    68   cd "$PACKAGES/mico"
    69   gzip -dc mico-2.3.5.tar.gz | tar -xf -
    70   cd mico
    71   ./configure $CACHE_FILE    --prefix=$PACKAGES/mico/  --disable-coss --disable-naming --disable-relship --disable-events --disable-streams --disable-property --disable-trader --disable-time --disable-debug --enable-optimize --enable-final --enable-speed-tune
    72   sed 's/tools//'  $PACKAGES/mico/mico/Makefile | sed 's/ldconfig//' >$PACKAGES/mico/mico/Makefile.out
    73   mv $PACKAGES/mico/mico/Makefile.out $PACKAGES/mico/mico/Makefile
     75    cd "$PACKAGES/mico"
     76    gzip -dc mico-2.3.5.tar.gz | tar -xf -
     77    cd mico
     78    ./configure $CACHE_FILE    --prefix=$PACKAGES/mico/  --disable-coss --disable-naming --disable-relship --disable-events --disable-streams --disable-property --disable-trader --disable-time --disable-debug --enable-optimize --enable-final --enable-speed-tune
     79    sed 's/tools//'  $PACKAGES/mico/mico/Makefile | sed 's/ldconfig//' >$PACKAGES/mico/mico/Makefile.out
     80    mv $PACKAGES/mico/mico/Makefile.out $PACKAGES/mico/mico/Makefile
     81  else
     82    #MICO is on the system path
     83    echo ""
     84    echo "Taking MICO from system paths"
     85    echo ""
     86  fi
    7487else
    7588  echo "corba support disabled - mico compiler not required."
Note: See TracChangeset for help on using the changeset viewer.