~ubuntu-branches/ubuntu/natty/ntop/natty

« back to all changes in this revision

Viewing changes to ntop/configure.in

  • Committer: Bazaar Package Importer
  • Author(s): Dennis Schoen
  • Date: 2002-04-12 11:38:47 UTC
  • Revision ID: james.westby@ubuntu.com-20020412113847-go1hsrm93p9idz1d
Tags: 2.0.0-14
split reload and restart in init.d script in different
function blocks, reload won't restart ntop, if not already
running.
(Closes: #142372)

Show diffs side-by-side

added added

removed removed

Lines of Context:
876
876
  if test ".${GDCHART_ROOT}" != .; then
877
877
    if test -d $GDCHART_ROOT &&
878
878
       test -r $GDCHART_ROOT/libgdchart.a &&
879
 
       test -r $GDCHART_ROOT/gdc.h &&
880
 
       test -r $GDCHART_ROOT/gd-1.8.3/libgd.a &&
881
 
       test -r $GDCHART_ROOT/gd-1.8.3/gd.h &&
882
 
       test -r $GDCHART_ROOT/zlib-1.1.3/libz.a; then
 
879
       test -r $GDCHART_ROOT/gdc.h; then
883
880
         GDCHART_ROOT=`cd ${GDCHART_ROOT} && pwd`
884
 
         MORELIBS="${MORELIBS} -L$GDCHART_ROOT -lgdchart -L$GDCHART_ROOT/gd-1.8.3 -lgd -L$GDCHART_ROOT/gd-1.8.3/libpng-1.0.8 -lpng -L$GDCHART_ROOT/zlib-1.1.3 -lz"
 
881
         MORELIBS="${MORELIBS} -L$GDCHART_ROOT -lgdchart -lgd -lpng -lz"
885
882
         INCS="${INCS} -I$GDCHART_ROOT"
886
883
         AC_DEFINE(HAVE_GDCHART)
887
884
         AC_MSG_RESULT([found in $GDCHART_ROOT])