Ignore:
Timestamp:
Nov 14, 2013, 6:01:50 PM (11 years ago)
Author:
ldelgass
Message:

Remove references to Rappture, as it isn't a dependency of geovis

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/packages/vizservers/geovis/configure.in

    r4024 r4057  
    99    [with_tcllib=$withval],
    1010    [with_tcllib=""])
    11 
    12 AC_ARG_WITH(
    13     [rappture],
    14     [AS_HELP_STRING([--with-rappture[=DIR]],
    15         [location of rappture files lib/librappture.a and include/rappture.h @<:@default=/usr@:>@])],
    16     [with_rappture=$withval],
    17     [with_rappture=yes])
    1811
    1912AC_ARG_WITH(
     
    8174#
    8275# Need to check for the following dependencies:
    83 #       Rappture headers and library (done)
    84 #       Tcl headers and library (done)
     76#       Tcl headers and library
    8577#       GL headers and library
    8678#       pthread library
     
    9284for dir in \
    9385 ${exec_prefix} \
    94  ${exec_prefix}/lib \
    95  ${with_rappture} \
    96  ${with_rappture}/lib ; do
     86 ${exec_prefix}/lib ; do
    9787  tclconfig="${dir}/tclConfig.sh"
    9888  if test -f "$tclconfig" ; then
     
    112102if test "x$with_tclinclude" != "x" ; then
    113103   TCL_INC_SPEC="-I${with_tclinclude}"
    114 fi
    115 
    116 RP_DIR=""
    117 AC_MSG_CHECKING([for rappture])
    118 if test "$with_rappture" == "yes" ; then
    119   for dir in "$exec_prefix" "/usr" ; do
    120     if test -r "$dir/include/rappture2/rappture2.h" -a \
    121      -r "$dir/lib/librappture.a"; then
    122       RP_DIR="$dir"
    123       RP_INC_SPEC="-I$dir/include -I$dir/include/rappture2"
    124       RP_LIB_DIR="$dir/lib"
    125       AC_MSG_RESULT([$dir])
    126       break
    127     fi
    128   done
    129 else
    130   if test ! -d "$with_rappture" ; then
    131     AC_MSG_ERROR([--with-rappture: no such directory $with_rappture])
    132   fi
    133   RP_DIR=$with_rappture
    134   RP_INC_SPEC="-I$with_rappture/include -I$with_rappture/include/rappture2"
    135   RP_LIB_DIR="$with_rappture/lib"
    136 fi
    137 if test "x${RP_DIR}" = "x" ; then
    138   AC_MSG_ERROR([cannot find rappture.h and librappture2.a, try using --with-rappture])
    139 else
    140   AC_MSG_RESULT([$with_rappture])
    141104fi
    142105
     
    162125AC_SUBST(CFLAGS_OPTIMIZE)
    163126AC_SUBST(LD_RPATH)
    164 AC_SUBST(RP_DIR)
    165 AC_SUBST(RP_INC_SPEC)
    166 AC_SUBST(RP_LIB_DIR)
    167127AC_SUBST(SHLIB_CFLAGS)
    168128AC_SUBST(SHLIB_LD)
Note: See TracChangeset for help on using the changeset viewer.