Changeset 14687

Show
Ignore:
Timestamp:
04/11/04 22:45:14 (5 years ago)
Author:
patrickh
Message:

We now depend on an installed version of GMTL rather than one acquired
via cvs-gather.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/juggler/autogen.sh

    r13898 r14687  
    88: ${DPP_PATH=`pwd`/Doozer++} 
    99: ${MACRO_PATH=`pwd`/macros} 
    10 : ${GGT_MACRO_PATH=`pwd`/macros.GGT
     10: ${GGT_MACRO_PATH=`pwd`/external/macros
    1111 
    1212if [ -n "$DPP_PATH" ]; then 
  • trunk/juggler/external/Makefile.in

    r14269 r14687  
    8080endif 
    8181 
    82 links-gmtl: 
    83         cd $(instlinks)/include && $(RM_LN) ./gmtl &&                   \ 
    84           $(LN_S) $(EXTROOT_ABS)/GMTL/gmtl ./ 
    85  
    8682links-doozer: 
    8783        $(SHELL) $(MKINSTALLDIRS) $(instlinks)/share 
     
    9793          done 
    9894endif 
    99  
    100 install-gmtl: 
    101         @$(MAKE) DIRS="GMTL/gmtl" generic-header-install 
    10295 
    10396install-doozer: 
  • trunk/juggler/external/configure.in

    r14682 r14687  
    5858cd "$topdir" 
    5959 
    60 # Enable/disable installation of GMTL from juggler/external. 
    61 AC_ARG_ENABLE([gmtl-install], 
    62               [  --disable-gmtl-install 
    63                           Disable installation of 
    64                           juggler/external/GMTL], 
    65               [install_gmtl="$enableval"], [install_gmtl='yes']) 
    66  
    6760# Enable/disable installation of Doozer from juggler/external. 
    6861AC_ARG_ENABLE([doozer-install], 
     
    7164                          juggler/external/Doozer], 
    7265              [install_doozer="$enableval"], [install_doozer='yes']) 
    73  
    74 # Name the path to a GMTL installation.  This defaults to juggler/external/GMTL 
    75 # (using an absolute path). 
    76 AC_ARG_WITH([gmtl-prefix], 
    77             [  --with-gmtl-prefix=<PATH> 
    78                           GMTL installation directory], 
    79             [GMTL_ROOT="$withval"], 
    80             [GMTL_ROOT="$JUGGLERROOT_ABS/external/GMTL"]) 
    8166 
    8267# Name the path to a Doozer installation.  This defaults to 
     
    10792# Deal with installing our fun external software. 
    10893# ----------------------------------------------------------------------------- 
    109 if test "x$GMTL_ROOT" != "x$JUGGLERROOT_ABS/external/GMTL" ; then 
    110    install_gmtl='no' 
    111 fi 
    112  
    11394if test "x$DOOZER_ROOT" != "x$JUGGLERROOT_ABS/external/Doozer" ; then 
    11495   install_doozer='no' 
     
    11697 
    11798TARGETS='' 
    118  
    119 if test "x$install_gmtl" != "xno" ; then 
    120    TARGETS="$TARGETS gmtl" 
    121 fi 
    12299 
    123100if test "x$install_doozer" != "xno" ; then