[rrd-developers] Re: Errors compiling RRDtool-1.0.03a

Blair Zajac bzajac at geostaff.com
Mon Aug 9 20:03:30 MEST 1999


This is a problem with src/Makefile.am.  I just put out a 1.0.3b with
the following fixes at ftp://ftp.gps.caltech.edu/pub/blair.  I'm
also including a patch from 1.0.3a to 1.0.3b below.

1) Include ../zlib-1.3.3 in src/Makefile.am.
2) If Perl is found on the system, then a shared librrd is built,
   otherwise only a static library is built.

This does not include any of the diffs between 1.0.3 and 1.0.4.

Tobi: I noticed that in 1.0.4 PERL gets set to no if perl cannot be
found in the 

AC_PATH_PROG(PERL, perl, no)

line, but you have a test for

if test x${PERL} = x; then
  ..
fi

This test will never be true, since PERL will never equal "".

Blair



Kevin Fenn wrote:
> 
> Can anyone help i get the following error when i try to install the
> rrdtool.
> 
> ar cru .libs/librrd_z.al adler32.lo compress.lo crc32.lo deflate.lo
> gzio.lo infblock.lo infcodes.lo inffast.lo inflate.lo inftrees.lo
> infutil.lo trees.lo uncompr.lo zutil.lo
> ranlib .libs/librrd_z.al
> creating librrd_z.la
> (cd .libs && rm -f librrd_z.la && ln -s ../librrd_z.la librrd_z.la)
> Making all in src
> /bin/sh ../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I.
> -I../config -I../cgilib-0.4 -I../gd1.3 -I../libpng-1.0.3    -g -O2 -Wall
> -pedantic -c gdpng.c
> gcc -DHAVE_CONFIG_H -I. -I. -I../config -I../cgilib-0.4 -I../gd1.3
> -I../libpng-1.0.3 -g -O2 -Wall -pedantic -c  -fPIC -DPIC gdpng.c -o
> gdpng.lo
> In file included from gdpng.c:7:
> ./libpng-1.0.3/png.h:163: zlib.h: No such file or directory
> *** Error code 1
> make: Fatal error: Command failed for target `gdpng.lo'
> Current working directory /u/kfenn/rrdtool-1.0.3a/src
> *** Error code 1
> make: Fatal error: Command failed for target `all-recursive'
> 
> Thanks in advance.
> 
> Kevin Fenn
> Nortel Networks
> 
> --
> * To unsubscribe from the rrd-developers mailing list, send a message with the
>   subject: unsubscribe to rrd-developers-request at list.ee.ethz.ch
-------------- next part --------------
diff -rc ../rrdtool-1.0.3a/Makefile.am ./Makefile.am
*** ../rrdtool-1.0.3a/Makefile.am	Fri Aug  6 15:44:08 1999
--- ./Makefile.am	Mon Aug  9 10:39:59 1999
***************
*** 11,17 ****
  	zlib-1.1.3	src		contrib		doc		\
  	examples
  
! noinst_DATA		= stamp_perl_piped stamp_perl_shared
  
  EXTRA_DIST=		CHANGES
  
--- 11,17 ----
  	zlib-1.1.3	src		contrib		doc		\
  	examples
  
! noinst_DATA		= @COMP_PERL@
  
  EXTRA_DIST=		CHANGES
  
diff -rc ../rrdtool-1.0.3a/Makefile.in ./Makefile.in
*** ../rrdtool-1.0.3a/Makefile.in	Fri Aug  6 17:15:58 1999
--- ./Makefile.in	Mon Aug  9 10:52:13 1999
***************
*** 64,69 ****
--- 64,70 ----
  CFLAGS = @CFLAGS@
  CFLAGS_EXTRA = @CFLAGS_EXTRA@
  CGI_LIB_DIR = @CGI_LIB_DIR@
+ COMP_PERL = @COMP_PERL@
  CPP = @CPP@
  GD_LIB_DIR = @GD_LIB_DIR@
  LIBTOOL = @LIBTOOL@
***************
*** 82,88 ****
  SUBDIRS = config		cgilib-0.4	gd1.3		libpng-1.0.3		zlib-1.1.3	src		contrib		doc			examples
  
  
! noinst_DATA = stamp_perl_piped stamp_perl_shared
  
  EXTRA_DIST = CHANGES
  mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs
--- 83,89 ----
  SUBDIRS = config		cgilib-0.4	gd1.3		libpng-1.0.3		zlib-1.1.3	src		contrib		doc			examples
  
  
! noinst_DATA = @COMP_PERL@
  
  EXTRA_DIST = CHANGES
  mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs
diff -rc ../rrdtool-1.0.3a/cgilib-0.4/Makefile.in ./cgilib-0.4/Makefile.in
*** ../rrdtool-1.0.3a/cgilib-0.4/Makefile.in	Fri Aug  6 17:15:56 1999
--- ./cgilib-0.4/Makefile.in	Mon Aug  9 10:52:11 1999
***************
*** 67,72 ****
--- 67,73 ----
  CFLAGS = @CFLAGS@
  CFLAGS_EXTRA = @CFLAGS_EXTRA@
  CGI_LIB_DIR = @CGI_LIB_DIR@
+ COMP_PERL = @COMP_PERL@
  CPP = @CPP@
  GD_LIB_DIR = @GD_LIB_DIR@
  LIBTOOL = @LIBTOOL@
diff -rc ../rrdtool-1.0.3a/config/Makefile.in ./config/Makefile.in
*** ../rrdtool-1.0.3a/config/Makefile.in	Fri Aug  6 17:15:56 1999
--- ./config/Makefile.in	Mon Aug  9 10:52:12 1999
***************
*** 66,71 ****
--- 66,72 ----
  CFLAGS = @CFLAGS@
  CFLAGS_EXTRA = @CFLAGS_EXTRA@
  CGI_LIB_DIR = @CGI_LIB_DIR@
+ COMP_PERL = @COMP_PERL@
  CPP = @CPP@
  GD_LIB_DIR = @GD_LIB_DIR@
  LIBTOOL = @LIBTOOL@
diff -rc ../rrdtool-1.0.3a/configure ./configure
*** ../rrdtool-1.0.3a/configure	Fri Aug  6 17:15:00 1999
--- ./configure	Mon Aug  9 10:52:15 1999
***************
*** 12,27 ****
  ac_default_prefix=/usr/local
  # Any additions from configure.in:
  ac_help="$ac_help
!   --enable-static[=PKGS]  build static libraries [default=no]"
  ac_help="$ac_help
!   --enable-shared[=PKGS]  build shared libraries [default=yes]"
  ac_help="$ac_help
    --enable-fast-install[=PKGS]  optimize for fast installation [default=yes]"
  ac_help="$ac_help
    --with-gnu-ld           assume the C compiler uses GNU ld [default=no]"
  ac_help="$ac_help
    --disable-libtool-lock  avoid locking (might break parallel builds)"
! ac_default_prefix=/usr/local/rrdtool-1.0.3
  
  # Initialize some variables set by options.
  # The variables have the same names as the options, with
--- 12,27 ----
  ac_default_prefix=/usr/local
  # Any additions from configure.in:
  ac_help="$ac_help
!   --enable-shared[=PKGS]  build shared libraries [default=no]"
  ac_help="$ac_help
!   --enable-static[=PKGS]  build static libraries [default=yes]"
  ac_help="$ac_help
    --enable-fast-install[=PKGS]  optimize for fast installation [default=yes]"
  ac_help="$ac_help
    --with-gnu-ld           assume the C compiler uses GNU ld [default=no]"
  ac_help="$ac_help
    --disable-libtool-lock  avoid locking (might break parallel builds)"
! ac_default_prefix=/usr/local/rrdtool-1.0.3b
  
  # Initialize some variables set by options.
  # The variables have the same names as the options, with
***************
*** 908,917 ****
  test "$program_transform_name" = "" && program_transform_name="s,x,x,"
  
  
  # Extract the first word of "gcc", so it can be a program name with args.
  set dummy gcc; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:915: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
--- 908,982 ----
  test "$program_transform_name" = "" && program_transform_name="s,x,x,"
  
  
+ # Extract the first word of "perl", so it can be a program name with args.
+ set dummy perl; ac_word=$2
+ echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
+ echo "configure:915: checking for $ac_word" >&5
+ if eval "test \"`echo '$''{'ac_cv_path_PERL'+set}'`\" = set"; then
+   echo $ac_n "(cached) $ac_c" 1>&6
+ else
+   case "$PERL" in
+   /*)
+   ac_cv_path_PERL="$PERL" # Let the user override the test with a path.
+   ;;
+   ?:/*)			 
+   ac_cv_path_PERL="$PERL" # Let the user override the test with a dos path.
+   ;;
+   *)
+   IFS="${IFS= 	}"; ac_save_ifs="$IFS"; IFS=":"
+   ac_dummy="$PATH"
+   for ac_dir in $ac_dummy; do 
+     test -z "$ac_dir" && ac_dir=.
+     if test -f $ac_dir/$ac_word; then
+       ac_cv_path_PERL="$ac_dir/$ac_word"
+       break
+     fi
+   done
+   IFS="$ac_save_ifs"
+   ;;
+ esac
+ fi
+ PERL="$ac_cv_path_PERL"
+ if test -n "$PERL"; then
+   echo "$ac_t""$PERL" 1>&6
+ else
+   echo "$ac_t""no" 1>&6
+ fi
+ 
+ if test "x$PERL" = "x"; then
+ 	COMP_PERL=
+ 	# Check whether --enable-shared or --disable-shared was given.
+ if test "${enable_shared+set}" = set; then
+   enableval="$enable_shared"
+   p=${PACKAGE-default}
+ case "$enableval" in
+ yes) enable_shared=yes ;;
+ no) enable_shared=no ;;
+ *)
+   enable_shared=no
+   # Look at the argument we got.  We use all the common list separators.
+   IFS="${IFS= 	}"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
+   for pkg in $enableval; do
+     if test "X$pkg" = "X$p"; then
+       enable_shared=yes
+     fi
+   done
+   IFS="$ac_save_ifs"
+   ;;
+ esac
+ else
+   enable_shared=no
+ fi
+ 
+ else
+ 	COMP_PERL="stamp_perl_piped stamp_perl_shared"
+ fi
+ 
+ 
  # Extract the first word of "gcc", so it can be a program name with args.
  set dummy gcc; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:980: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
***************
*** 941,947 ****
    # Extract the first word of "cc", so it can be a program name with args.
  set dummy cc; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:945: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
--- 1006,1012 ----
    # Extract the first word of "cc", so it can be a program name with args.
  set dummy cc; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:1010: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
***************
*** 992,998 ****
        # Extract the first word of "cl", so it can be a program name with args.
  set dummy cl; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:996: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
--- 1057,1063 ----
        # Extract the first word of "cl", so it can be a program name with args.
  set dummy cl; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:1061: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
***************
*** 1024,1030 ****
  fi
  
  echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6
! echo "configure:1028: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5
  
  ac_ext=c
  # CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
--- 1089,1095 ----
  fi
  
  echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6
! echo "configure:1093: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5
  
  ac_ext=c
  # CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
***************
*** 1035,1046 ****
  
  cat > conftest.$ac_ext << EOF
  
! #line 1039 "configure"
  #include "confdefs.h"
  
  main(){return(0);}
  EOF
! if { (eval echo configure:1044: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    ac_cv_prog_cc_works=yes
    # If we can't run a trivial program, we are probably using a cross compiler.
    if (./conftest; exit) 2>/dev/null; then
--- 1100,1111 ----
  
  cat > conftest.$ac_ext << EOF
  
! #line 1104 "configure"
  #include "confdefs.h"
  
  main(){return(0);}
  EOF
! if { (eval echo configure:1109: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    ac_cv_prog_cc_works=yes
    # If we can't run a trivial program, we are probably using a cross compiler.
    if (./conftest; exit) 2>/dev/null; then
***************
*** 1066,1077 ****
    { echo "configure: error: installation or configuration problem: C compiler cannot create executables." 1>&2; exit 1; }
  fi
  echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6
! echo "configure:1070: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5
  echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6
  cross_compiling=$ac_cv_prog_cc_cross
  
  echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6
! echo "configure:1075: checking whether we are using GNU C" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
--- 1131,1142 ----
    { echo "configure: error: installation or configuration problem: C compiler cannot create executables." 1>&2; exit 1; }
  fi
  echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6
! echo "configure:1135: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5
  echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6
  cross_compiling=$ac_cv_prog_cc_cross
  
  echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6
! echo "configure:1140: checking whether we are using GNU C" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
***************
*** 1080,1086 ****
    yes;
  #endif
  EOF
! if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1084: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
    ac_cv_prog_gcc=yes
  else
    ac_cv_prog_gcc=no
--- 1145,1151 ----
    yes;
  #endif
  EOF
! if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1149: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
    ac_cv_prog_gcc=yes
  else
    ac_cv_prog_gcc=no
***************
*** 1099,1105 ****
  ac_save_CFLAGS="$CFLAGS"
  CFLAGS=
  echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6
! echo "configure:1103: checking whether ${CC-cc} accepts -g" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
--- 1164,1170 ----
  ac_save_CFLAGS="$CFLAGS"
  CFLAGS=
  echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6
! echo "configure:1168: checking whether ${CC-cc} accepts -g" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
***************
*** 1131,1137 ****
  fi
  
  echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&6
! echo "configure:1135: checking how to run the C preprocessor" >&5
  # On Suns, sometimes $CPP names a directory.
  if test -n "$CPP" && test -d "$CPP"; then
    CPP=
--- 1196,1202 ----
  fi
  
  echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&6
! echo "configure:1200: checking how to run the C preprocessor" >&5
  # On Suns, sometimes $CPP names a directory.
  if test -n "$CPP" && test -d "$CPP"; then
    CPP=
***************
*** 1146,1158 ****
    # On the NeXT, cc -E runs the code through the compiler's parser,
    # not just through cpp.
    cat > conftest.$ac_ext <<EOF
! #line 1150 "configure"
  #include "confdefs.h"
  #include <assert.h>
  Syntax Error
  EOF
  ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
! { (eval echo configure:1156: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
  ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
  if test -z "$ac_err"; then
    :
--- 1211,1223 ----
    # On the NeXT, cc -E runs the code through the compiler's parser,
    # not just through cpp.
    cat > conftest.$ac_ext <<EOF
! #line 1215 "configure"
  #include "confdefs.h"
  #include <assert.h>
  Syntax Error
  EOF
  ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
! { (eval echo configure:1221: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
  ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
  if test -z "$ac_err"; then
    :
***************
*** 1163,1175 ****
    rm -rf conftest*
    CPP="${CC-cc} -E -traditional-cpp"
    cat > conftest.$ac_ext <<EOF
! #line 1167 "configure"
  #include "confdefs.h"
  #include <assert.h>
  Syntax Error
  EOF
  ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
! { (eval echo configure:1173: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
  ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
  if test -z "$ac_err"; then
    :
--- 1228,1240 ----
    rm -rf conftest*
    CPP="${CC-cc} -E -traditional-cpp"
    cat > conftest.$ac_ext <<EOF
! #line 1232 "configure"
  #include "confdefs.h"
  #include <assert.h>
  Syntax Error
  EOF
  ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
! { (eval echo configure:1238: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
  ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
  if test -z "$ac_err"; then
    :
***************
*** 1180,1192 ****
    rm -rf conftest*
    CPP="${CC-cc} -nologo -E"
    cat > conftest.$ac_ext <<EOF
! #line 1184 "configure"
  #include "confdefs.h"
  #include <assert.h>
  Syntax Error
  EOF
  ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
! { (eval echo configure:1190: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
  ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
  if test -z "$ac_err"; then
    :
--- 1245,1257 ----
    rm -rf conftest*
    CPP="${CC-cc} -nologo -E"
    cat > conftest.$ac_ext <<EOF
! #line 1249 "configure"
  #include "confdefs.h"
  #include <assert.h>
  Syntax Error
  EOF
  ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
! { (eval echo configure:1255: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
  ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
  if test -z "$ac_err"; then
    :
***************
*** 1210,1241 ****
  fi
  echo "$ac_t""$CPP" 1>&6
  
- # Check whether --enable-static or --disable-static was given.
- if test "${enable_static+set}" = set; then
-   enableval="$enable_static"
-   p=${PACKAGE-default}
- case "$enableval" in
- yes) enable_static=yes ;;
- no) enable_static=no ;;
- *)
-   enable_static=no
-   # Look at the argument we got.  We use all the common list separators.
-   IFS="${IFS= 	}"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
-   for pkg in $enableval; do
-     if test "X$pkg" = "X$p"; then
-       enable_static=yes
-     fi
-   done
-   IFS="$ac_save_ifs"
-   ;;
- esac
- else
-   enable_static=no
- fi
- 
  
  	echo $ac_n "checking whether aclocal can find libtool macros""... $ac_c" 1>&6
! echo "configure:1239: checking whether aclocal can find libtool macros" >&5
  if eval "test \"`echo '$''{'rrd_cv_libtool_macros'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
--- 1275,1283 ----
  fi
  echo "$ac_t""$CPP" 1>&6
  
  
  	echo $ac_n "checking whether aclocal can find libtool macros""... $ac_c" 1>&6
! echo "configure:1281: checking whether aclocal can find libtool macros" >&5
  if eval "test \"`echo '$''{'rrd_cv_libtool_macros'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
***************
*** 1270,1296 ****
      
  
  
! # Check whether --enable-shared or --disable-shared was given.
! if test "${enable_shared+set}" = set; then
!   enableval="$enable_shared"
    p=${PACKAGE-default}
  case "$enableval" in
! yes) enable_shared=yes ;;
! no) enable_shared=no ;;
  *)
!   enable_shared=no
    # Look at the argument we got.  We use all the common list separators.
    IFS="${IFS= 	}"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
    for pkg in $enableval; do
      if test "X$pkg" = "X$p"; then
!       enable_shared=yes
      fi
    done
    IFS="$ac_save_ifs"
    ;;
  esac
  else
!   enable_shared=yes
  fi
  
  # Check whether --enable-fast-install or --disable-fast-install was given.
--- 1312,1338 ----
      
  
  
! # Check whether --enable-static or --disable-static was given.
! if test "${enable_static+set}" = set; then
!   enableval="$enable_static"
    p=${PACKAGE-default}
  case "$enableval" in
! yes) enable_static=yes ;;
! no) enable_static=no ;;
  *)
!   enable_static=no
    # Look at the argument we got.  We use all the common list separators.
    IFS="${IFS= 	}"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
    for pkg in $enableval; do
      if test "X$pkg" = "X$p"; then
!       enable_static=yes
      fi
    done
    IFS="$ac_save_ifs"
    ;;
  esac
  else
!   enable_static=yes
  fi
  
  # Check whether --enable-fast-install or --disable-fast-install was given.
***************
*** 1319,1325 ****
  # Extract the first word of "ranlib", so it can be a program name with args.
  set dummy ranlib; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:1323: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
--- 1361,1367 ----
  # Extract the first word of "ranlib", so it can be a program name with args.
  set dummy ranlib; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:1365: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
***************
*** 1358,1364 ****
  if test "$ac_cv_prog_gcc" = yes; then
    # Check if gcc -print-prog-name=ld gives a path.
    echo $ac_n "checking for ld used by GCC""... $ac_c" 1>&6
! echo "configure:1362: checking for ld used by GCC" >&5
    ac_prog=`($CC -print-prog-name=ld) 2>&5`
    case "$ac_prog" in
      # Accept absolute paths.
--- 1400,1406 ----
  if test "$ac_cv_prog_gcc" = yes; then
    # Check if gcc -print-prog-name=ld gives a path.
    echo $ac_n "checking for ld used by GCC""... $ac_c" 1>&6
! echo "configure:1404: checking for ld used by GCC" >&5
    ac_prog=`($CC -print-prog-name=ld) 2>&5`
    case "$ac_prog" in
      # Accept absolute paths.
***************
*** 1382,1391 ****
    esac
  elif test "$with_gnu_ld" = yes; then
    echo $ac_n "checking for GNU ld""... $ac_c" 1>&6
! echo "configure:1386: checking for GNU ld" >&5
  else
    echo $ac_n "checking for non-GNU ld""... $ac_c" 1>&6
! echo "configure:1389: checking for non-GNU ld" >&5
  fi
  if eval "test \"`echo '$''{'ac_cv_path_LD'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 1424,1433 ----
    esac
  elif test "$with_gnu_ld" = yes; then
    echo $ac_n "checking for GNU ld""... $ac_c" 1>&6
! echo "configure:1428: checking for GNU ld" >&5
  else
    echo $ac_n "checking for non-GNU ld""... $ac_c" 1>&6
! echo "configure:1431: checking for non-GNU ld" >&5
  fi
  if eval "test \"`echo '$''{'ac_cv_path_LD'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 1421,1427 ****
  test -z "$LD" && { echo "configure: error: no acceptable ld found in \$PATH" 1>&2; exit 1; }
  
  echo $ac_n "checking if the linker ($LD) is GNU ld""... $ac_c" 1>&6
! echo "configure:1425: checking if the linker ($LD) is GNU ld" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_gnu_ld'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
--- 1463,1469 ----
  test -z "$LD" && { echo "configure: error: no acceptable ld found in \$PATH" 1>&2; exit 1; }
  
  echo $ac_n "checking if the linker ($LD) is GNU ld""... $ac_c" 1>&6
! echo "configure:1467: checking if the linker ($LD) is GNU ld" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_gnu_ld'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
***************
*** 1437,1443 ****
  
  
  echo $ac_n "checking for BSD-compatible nm""... $ac_c" 1>&6
! echo "configure:1441: checking for BSD-compatible nm" >&5
  if eval "test \"`echo '$''{'ac_cv_path_NM'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
--- 1479,1485 ----
  
  
  echo $ac_n "checking for BSD-compatible nm""... $ac_c" 1>&6
! echo "configure:1483: checking for BSD-compatible nm" >&5
  if eval "test \"`echo '$''{'ac_cv_path_NM'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
***************
*** 1474,1480 ****
  
  
  echo $ac_n "checking whether ln -s works""... $ac_c" 1>&6
! echo "configure:1478: checking whether ln -s works" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_LN_S'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
--- 1516,1522 ----
  
  
  echo $ac_n "checking whether ln -s works""... $ac_c" 1>&6
! echo "configure:1520: checking whether ln -s works" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_LN_S'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
***************
*** 1518,1525 ****
  case "$host" in
  *-*-irix6*)
    # Find out which ABI we are using.
!   echo '#line 1522 "configure"' > conftest.$ac_ext
!   if { (eval echo configure:1523: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
      case "`/usr/bin/file conftest.o`" in
      *32-bit*)
        LD="${LD-ld} -32"
--- 1560,1567 ----
  case "$host" in
  *-*-irix6*)
    # Find out which ABI we are using.
!   echo '#line 1564 "configure"' > conftest.$ac_ext
!   if { (eval echo configure:1565: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
      case "`/usr/bin/file conftest.o`" in
      *32-bit*)
        LD="${LD-ld} -32"
***************
*** 1540,1558 ****
    SAVE_CFLAGS="$CFLAGS"
    CFLAGS="$CFLAGS -belf"
    echo $ac_n "checking whether the C compiler needs -belf""... $ac_c" 1>&6
! echo "configure:1544: checking whether the C compiler needs -belf" >&5
  if eval "test \"`echo '$''{'lt_cv_cc_needs_belf'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 1549 "configure"
  #include "confdefs.h"
  
  int main() {
  
  ; return 0; }
  EOF
! if { (eval echo configure:1556: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    rm -rf conftest*
    lt_cv_cc_needs_belf=yes
  else
--- 1582,1600 ----
    SAVE_CFLAGS="$CFLAGS"
    CFLAGS="$CFLAGS -belf"
    echo $ac_n "checking whether the C compiler needs -belf""... $ac_c" 1>&6
! echo "configure:1586: checking whether the C compiler needs -belf" >&5
  if eval "test \"`echo '$''{'lt_cv_cc_needs_belf'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 1591 "configure"
  #include "confdefs.h"
  
  int main() {
  
  ; return 0; }
  EOF
! if { (eval echo configure:1598: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    rm -rf conftest*
    lt_cv_cc_needs_belf=yes
  else
***************
*** 1654,1705 ****
  exec 5>>./config.log
  
  
- # Extract the first word of "perl", so it can be a program name with args.
- set dummy perl; ac_word=$2
- echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
- echo "configure:1661: checking for $ac_word" >&5
- if eval "test \"`echo '$''{'ac_cv_path_PERL'+set}'`\" = set"; then
-   echo $ac_n "(cached) $ac_c" 1>&6
- else
-   case "$PERL" in
-   /*)
-   ac_cv_path_PERL="$PERL" # Let the user override the test with a path.
-   ;;
-   ?:/*)			 
-   ac_cv_path_PERL="$PERL" # Let the user override the test with a dos path.
-   ;;
-   *)
-   IFS="${IFS= 	}"; ac_save_ifs="$IFS"; IFS=":"
-   ac_dummy="$PATH"
-   for ac_dir in $ac_dummy; do 
-     test -z "$ac_dir" && ac_dir=.
-     if test -f $ac_dir/$ac_word; then
-       ac_cv_path_PERL="$ac_dir/$ac_word"
-       break
-     fi
-   done
-   IFS="$ac_save_ifs"
-   test -z "$ac_cv_path_PERL" && ac_cv_path_PERL="no"
-   ;;
- esac
- fi
- PERL="$ac_cv_path_PERL"
- if test -n "$PERL"; then
-   echo "$ac_t""$PERL" 1>&6
- else
-   echo "$ac_t""no" 1>&6
- fi
- 
- 
  
  
  echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&6
! echo "configure:1698: checking for ANSI C header files" >&5
  if eval "test \"`echo '$''{'ac_cv_header_stdc'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 1703 "configure"
  #include "confdefs.h"
  #include <stdlib.h>
  #include <stdarg.h>
--- 1696,1710 ----
  exec 5>>./config.log
  
  
  
  
  echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&6
! echo "configure:1703: checking for ANSI C header files" >&5
  if eval "test \"`echo '$''{'ac_cv_header_stdc'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 1708 "configure"
  #include "confdefs.h"
  #include <stdlib.h>
  #include <stdarg.h>
***************
*** 1707,1713 ****
  #include <float.h>
  EOF
  ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
! { (eval echo configure:1711: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
  ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
  if test -z "$ac_err"; then
    rm -rf conftest*
--- 1712,1718 ----
  #include <float.h>
  EOF
  ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
! { (eval echo configure:1716: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
  ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
  if test -z "$ac_err"; then
    rm -rf conftest*
***************
*** 1724,1730 ****
  if test $ac_cv_header_stdc = yes; then
    # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
  cat > conftest.$ac_ext <<EOF
! #line 1728 "configure"
  #include "confdefs.h"
  #include <string.h>
  EOF
--- 1729,1735 ----
  if test $ac_cv_header_stdc = yes; then
    # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
  cat > conftest.$ac_ext <<EOF
! #line 1733 "configure"
  #include "confdefs.h"
  #include <string.h>
  EOF
***************
*** 1742,1748 ****
  if test $ac_cv_header_stdc = yes; then
    # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
  cat > conftest.$ac_ext <<EOF
! #line 1746 "configure"
  #include "confdefs.h"
  #include <stdlib.h>
  EOF
--- 1747,1753 ----
  if test $ac_cv_header_stdc = yes; then
    # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
  cat > conftest.$ac_ext <<EOF
! #line 1751 "configure"
  #include "confdefs.h"
  #include <stdlib.h>
  EOF
***************
*** 1763,1769 ****
    :
  else
    cat > conftest.$ac_ext <<EOF
! #line 1767 "configure"
  #include "confdefs.h"
  #include <ctype.h>
  #define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
--- 1768,1774 ----
    :
  else
    cat > conftest.$ac_ext <<EOF
! #line 1772 "configure"
  #include "confdefs.h"
  #include <ctype.h>
  #define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
***************
*** 1774,1780 ****
  exit (0); }
  
  EOF
! if { (eval echo configure:1778: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
  then
    :
  else
--- 1779,1785 ----
  exit (0); }
  
  EOF
! if { (eval echo configure:1783: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
  then
    :
  else
***************
*** 1801,1817 ****
  do
  ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
  echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
! echo "configure:1805: checking for $ac_hdr" >&5
  if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 1810 "configure"
  #include "confdefs.h"
  #include <$ac_hdr>
  EOF
  ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
! { (eval echo configure:1815: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
  ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
  if test -z "$ac_err"; then
    rm -rf conftest*
--- 1806,1822 ----
  do
  ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
  echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
! echo "configure:1810: checking for $ac_hdr" >&5
  if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 1815 "configure"
  #include "confdefs.h"
  #include <$ac_hdr>
  EOF
  ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
! { (eval echo configure:1820: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
  ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
  if test -z "$ac_err"; then
    rm -rf conftest*
***************
*** 1839,1850 ****
  
  
  echo $ac_n "checking for working const""... $ac_c" 1>&6
! echo "configure:1843: checking for working const" >&5
  if eval "test \"`echo '$''{'ac_cv_c_const'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 1848 "configure"
  #include "confdefs.h"
  
  int main() {
--- 1844,1855 ----
  
  
  echo $ac_n "checking for working const""... $ac_c" 1>&6
! echo "configure:1848: checking for working const" >&5
  if eval "test \"`echo '$''{'ac_cv_c_const'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 1853 "configure"
  #include "confdefs.h"
  
  int main() {
***************
*** 1893,1899 ****
  
  ; return 0; }
  EOF
! if { (eval echo configure:1897: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
    rm -rf conftest*
    ac_cv_c_const=yes
  else
--- 1898,1904 ----
  
  ; return 0; }
  EOF
! if { (eval echo configure:1902: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
    rm -rf conftest*
    ac_cv_c_const=yes
  else
***************
*** 1914,1925 ****
  fi
  
  echo $ac_n "checking whether time.h and sys/time.h may both be included""... $ac_c" 1>&6
! echo "configure:1918: checking whether time.h and sys/time.h may both be included" >&5
  if eval "test \"`echo '$''{'ac_cv_header_time'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 1923 "configure"
  #include "confdefs.h"
  #include <sys/types.h>
  #include <sys/time.h>
--- 1919,1930 ----
  fi
  
  echo $ac_n "checking whether time.h and sys/time.h may both be included""... $ac_c" 1>&6
! echo "configure:1923: checking whether time.h and sys/time.h may both be included" >&5
  if eval "test \"`echo '$''{'ac_cv_header_time'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 1928 "configure"
  #include "confdefs.h"
  #include <sys/types.h>
  #include <sys/time.h>
***************
*** 1928,1934 ****
  struct tm *tp;
  ; return 0; }
  EOF
! if { (eval echo configure:1932: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
    rm -rf conftest*
    ac_cv_header_time=yes
  else
--- 1933,1939 ----
  struct tm *tp;
  ; return 0; }
  EOF
! if { (eval echo configure:1937: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
    rm -rf conftest*
    ac_cv_header_time=yes
  else
***************
*** 1949,1960 ****
  fi
  
  echo $ac_n "checking whether struct tm is in sys/time.h or time.h""... $ac_c" 1>&6
! echo "configure:1953: checking whether struct tm is in sys/time.h or time.h" >&5
  if eval "test \"`echo '$''{'ac_cv_struct_tm'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 1958 "configure"
  #include "confdefs.h"
  #include <sys/types.h>
  #include <time.h>
--- 1954,1965 ----
  fi
  
  echo $ac_n "checking whether struct tm is in sys/time.h or time.h""... $ac_c" 1>&6
! echo "configure:1958: checking whether struct tm is in sys/time.h or time.h" >&5
  if eval "test \"`echo '$''{'ac_cv_struct_tm'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 1963 "configure"
  #include "confdefs.h"
  #include <sys/types.h>
  #include <time.h>
***************
*** 1962,1968 ****
  struct tm *tp; tp->tm_sec;
  ; return 0; }
  EOF
! if { (eval echo configure:1966: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
    rm -rf conftest*
    ac_cv_struct_tm=time.h
  else
--- 1967,1973 ----
  struct tm *tp; tp->tm_sec;
  ; return 0; }
  EOF
! if { (eval echo configure:1971: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
    rm -rf conftest*
    ac_cv_struct_tm=time.h
  else
***************
*** 1984,1990 ****
  
  
  echo $ac_n "checking for acos in -lm""... $ac_c" 1>&6
! echo "configure:1988: checking for acos in -lm" >&5
  ac_lib_var=`echo m'_'acos | sed 'y%./+-%__p_%'`
  if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 1989,1995 ----
  
  
  echo $ac_n "checking for acos in -lm""... $ac_c" 1>&6
! echo "configure:1993: checking for acos in -lm" >&5
  ac_lib_var=`echo m'_'acos | sed 'y%./+-%__p_%'`
  if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 1992,1998 ****
    ac_save_LIBS="$LIBS"
  LIBS="-lm  $LIBS"
  cat > conftest.$ac_ext <<EOF
! #line 1996 "configure"
  #include "confdefs.h"
  /* Override any gcc2 internal prototype to avoid an error.  */
  /* We use char because int might match the return type of a gcc2
--- 1997,2003 ----
    ac_save_LIBS="$LIBS"
  LIBS="-lm  $LIBS"
  cat > conftest.$ac_ext <<EOF
! #line 2001 "configure"
  #include "confdefs.h"
  /* Override any gcc2 internal prototype to avoid an error.  */
  /* We use char because int might match the return type of a gcc2
***************
*** 2003,2009 ****
  acos()
  ; return 0; }
  EOF
! if { (eval echo configure:2007: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    rm -rf conftest*
    eval "ac_cv_lib_$ac_lib_var=yes"
  else
--- 2008,2014 ----
  acos()
  ; return 0; }
  EOF
! if { (eval echo configure:2012: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    rm -rf conftest*
    eval "ac_cv_lib_$ac_lib_var=yes"
  else
***************
*** 2035,2054 ****
  	oCFLAGS_EXTRA=$CFLAGS_EXTRA
  	CFLAGS_EXTRA="$CFLAGS_EXTRA -Wall -pedantic"
  	echo $ac_n "checking if we can use GCC-specific compiler options""... $ac_c" 1>&6
! echo "configure:2039: checking if we can use GCC-specific compiler options" >&5
  if eval "test \"`echo '$''{'rd_cv_gcc_opt'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    
  	cat > conftest.$ac_ext <<EOF
! #line 2045 "configure"
  #include "confdefs.h"
  
  int main() {
  return 0 
  ; return 0; }
  EOF
! if { (eval echo configure:2052: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
    rm -rf conftest*
    rd_cv_gcc_opt=yes
  else
--- 2040,2059 ----
  	oCFLAGS_EXTRA=$CFLAGS_EXTRA
  	CFLAGS_EXTRA="$CFLAGS_EXTRA -Wall -pedantic"
  	echo $ac_n "checking if we can use GCC-specific compiler options""... $ac_c" 1>&6
! echo "configure:2044: checking if we can use GCC-specific compiler options" >&5
  if eval "test \"`echo '$''{'rd_cv_gcc_opt'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    
  	cat > conftest.$ac_ext <<EOF
! #line 2050 "configure"
  #include "confdefs.h"
  
  int main() {
  return 0 
  ; return 0; }
  EOF
! if { (eval echo configure:2057: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
    rm -rf conftest*
    rd_cv_gcc_opt=yes
  else
***************
*** 2068,2079 ****
  fi
  
  echo $ac_n "checking for strftime""... $ac_c" 1>&6
! echo "configure:2072: checking for strftime" >&5
  if eval "test \"`echo '$''{'ac_cv_func_strftime'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 2077 "configure"
  #include "confdefs.h"
  /* System header to define __stub macros and hopefully few prototypes,
      which can conflict with char strftime(); below.  */
--- 2073,2084 ----
  fi
  
  echo $ac_n "checking for strftime""... $ac_c" 1>&6
! echo "configure:2077: checking for strftime" >&5
  if eval "test \"`echo '$''{'ac_cv_func_strftime'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 2082 "configure"
  #include "confdefs.h"
  /* System header to define __stub macros and hopefully few prototypes,
      which can conflict with char strftime(); below.  */
***************
*** 2096,2102 ****
  
  ; return 0; }
  EOF
! if { (eval echo configure:2100: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    rm -rf conftest*
    eval "ac_cv_func_strftime=yes"
  else
--- 2101,2107 ----
  
  ; return 0; }
  EOF
! if { (eval echo configure:2105: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    rm -rf conftest*
    eval "ac_cv_func_strftime=yes"
  else
***************
*** 2118,2124 ****
    echo "$ac_t""no" 1>&6
  # strftime is in -lintl on SCO UNIX.
  echo $ac_n "checking for strftime in -lintl""... $ac_c" 1>&6
! echo "configure:2122: checking for strftime in -lintl" >&5
  ac_lib_var=`echo intl'_'strftime | sed 'y%./+-%__p_%'`
  if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 2123,2129 ----
    echo "$ac_t""no" 1>&6
  # strftime is in -lintl on SCO UNIX.
  echo $ac_n "checking for strftime in -lintl""... $ac_c" 1>&6
! echo "configure:2127: checking for strftime in -lintl" >&5
  ac_lib_var=`echo intl'_'strftime | sed 'y%./+-%__p_%'`
  if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 2126,2132 ****
    ac_save_LIBS="$LIBS"
  LIBS="-lintl  $LIBS"
  cat > conftest.$ac_ext <<EOF
! #line 2130 "configure"
  #include "confdefs.h"
  /* Override any gcc2 internal prototype to avoid an error.  */
  /* We use char because int might match the return type of a gcc2
--- 2131,2137 ----
    ac_save_LIBS="$LIBS"
  LIBS="-lintl  $LIBS"
  cat > conftest.$ac_ext <<EOF
! #line 2135 "configure"
  #include "confdefs.h"
  /* Override any gcc2 internal prototype to avoid an error.  */
  /* We use char because int might match the return type of a gcc2
***************
*** 2137,2143 ****
  strftime()
  ; return 0; }
  EOF
! if { (eval echo configure:2141: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    rm -rf conftest*
    eval "ac_cv_lib_$ac_lib_var=yes"
  else
--- 2142,2148 ----
  strftime()
  ; return 0; }
  EOF
! if { (eval echo configure:2146: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    rm -rf conftest*
    eval "ac_cv_lib_$ac_lib_var=yes"
  else
***************
*** 2164,2175 ****
  fi
  
  echo $ac_n "checking for vprintf""... $ac_c" 1>&6
! echo "configure:2168: checking for vprintf" >&5
  if eval "test \"`echo '$''{'ac_cv_func_vprintf'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 2173 "configure"
  #include "confdefs.h"
  /* System header to define __stub macros and hopefully few prototypes,
      which can conflict with char vprintf(); below.  */
--- 2169,2180 ----
  fi
  
  echo $ac_n "checking for vprintf""... $ac_c" 1>&6
! echo "configure:2173: checking for vprintf" >&5
  if eval "test \"`echo '$''{'ac_cv_func_vprintf'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 2178 "configure"
  #include "confdefs.h"
  /* System header to define __stub macros and hopefully few prototypes,
      which can conflict with char vprintf(); below.  */
***************
*** 2192,2198 ****
  
  ; return 0; }
  EOF
! if { (eval echo configure:2196: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    rm -rf conftest*
    eval "ac_cv_func_vprintf=yes"
  else
--- 2197,2203 ----
  
  ; return 0; }
  EOF
! if { (eval echo configure:2201: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    rm -rf conftest*
    eval "ac_cv_func_vprintf=yes"
  else
***************
*** 2216,2227 ****
  
  if test "$ac_cv_func_vprintf" != yes; then
  echo $ac_n "checking for _doprnt""... $ac_c" 1>&6
! echo "configure:2220: checking for _doprnt" >&5
  if eval "test \"`echo '$''{'ac_cv_func__doprnt'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 2225 "configure"
  #include "confdefs.h"
  /* System header to define __stub macros and hopefully few prototypes,
      which can conflict with char _doprnt(); below.  */
--- 2221,2232 ----
  
  if test "$ac_cv_func_vprintf" != yes; then
  echo $ac_n "checking for _doprnt""... $ac_c" 1>&6
! echo "configure:2225: checking for _doprnt" >&5
  if eval "test \"`echo '$''{'ac_cv_func__doprnt'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 2230 "configure"
  #include "confdefs.h"
  /* System header to define __stub macros and hopefully few prototypes,
      which can conflict with char _doprnt(); below.  */
***************
*** 2244,2250 ****
  
  ; return 0; }
  EOF
! if { (eval echo configure:2248: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    rm -rf conftest*
    eval "ac_cv_func__doprnt=yes"
  else
--- 2249,2255 ----
  
  ; return 0; }
  EOF
! if { (eval echo configure:2253: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    rm -rf conftest*
    eval "ac_cv_func__doprnt=yes"
  else
***************
*** 2272,2283 ****
  for ac_func in memmove strchr mktime getrusage gettimeofday
  do
  echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
! echo "configure:2276: checking for $ac_func" >&5
  if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 2281 "configure"
  #include "confdefs.h"
  /* System header to define __stub macros and hopefully few prototypes,
      which can conflict with char $ac_func(); below.  */
--- 2277,2288 ----
  for ac_func in memmove strchr mktime getrusage gettimeofday
  do
  echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
! echo "configure:2281: checking for $ac_func" >&5
  if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 2286 "configure"
  #include "confdefs.h"
  /* System header to define __stub macros and hopefully few prototypes,
      which can conflict with char $ac_func(); below.  */
***************
*** 2300,2306 ****
  
  ; return 0; }
  EOF
! if { (eval echo configure:2304: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    rm -rf conftest*
    eval "ac_cv_func_$ac_func=yes"
  else
--- 2305,2311 ----
  
  ; return 0; }
  EOF
! if { (eval echo configure:2309: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    rm -rf conftest*
    eval "ac_cv_func_$ac_func=yes"
  else
***************
*** 2326,2332 ****
  
  
  echo $ac_n "checking if realloc can deal with NULL""... $ac_c" 1>&6
! echo "configure:2330: checking if realloc can deal with NULL" >&5
  if eval "test \"`echo '$''{'rd_cv_null_realloc'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
--- 2331,2337 ----
  
  
  echo $ac_n "checking if realloc can deal with NULL""... $ac_c" 1>&6
! echo "configure:2335: checking if realloc can deal with NULL" >&5
  if eval "test \"`echo '$''{'rd_cv_null_realloc'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
***************
*** 2334,2340 ****
    :
  else
    cat > conftest.$ac_ext <<EOF
! #line 2338 "configure"
  #include "confdefs.h"
   #include <stdlib.h>
  	      int main(void){
--- 2339,2345 ----
    :
  else
    cat > conftest.$ac_ext <<EOF
! #line 2343 "configure"
  #include "confdefs.h"
   #include <stdlib.h>
  	      int main(void){
***************
*** 2344,2350 ****
  	      return 0;
               }
  EOF
! if { (eval echo configure:2348: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
  then
    rd_cv_null_realloc=yes
  else
--- 2349,2355 ----
  	      return 0;
               }
  EOF
! if { (eval echo configure:2353: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
  then
    rd_cv_null_realloc=yes
  else
***************
*** 2372,2378 ****
  oCFLAGS=$CFLAGS
  unset CFLAGS
  echo $ac_n "checking if IEEE math works""... $ac_c" 1>&6
! echo "configure:2376: checking if IEEE math works" >&5
  if eval "test \"`echo '$''{'rd_cv_ieee_works'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
--- 2377,2383 ----
  oCFLAGS=$CFLAGS
  unset CFLAGS
  echo $ac_n "checking if IEEE math works""... $ac_c" 1>&6
! echo "configure:2381: checking if IEEE math works" >&5
  if eval "test \"`echo '$''{'rd_cv_ieee_works'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
***************
*** 2380,2386 ****
    :
  else
    cat > conftest.$ac_ext <<EOF
! #line 2384 "configure"
  #include "confdefs.h"
  int main(void){
                double a=0.0/0.0;
--- 2385,2391 ----
    :
  else
    cat > conftest.$ac_ext <<EOF
! #line 2389 "configure"
  #include "confdefs.h"
  int main(void){
                double a=0.0/0.0;
***************
*** 2403,2409 ****
  	      return 0;
               }
  EOF
! if { (eval echo configure:2407: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
  then
    rd_cv_ieee_works=yes
  else
--- 2408,2414 ----
  	      return 0;
               }
  EOF
! if { (eval echo configure:2412: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
  then
    rd_cv_ieee_works=yes
  else
***************
*** 2421,2427 ****
  
  if test "$rd_cv_ieee_works" != yes ; then
  echo $ac_n "checking if IEEE math works with -ieee""... $ac_c" 1>&6
! echo "configure:2425: checking if IEEE math works with -ieee" >&5
  if eval "test \"`echo '$''{'rd_cv_ieee_switch'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
--- 2426,2432 ----
  
  if test "$rd_cv_ieee_works" != yes ; then
  echo $ac_n "checking if IEEE math works with -ieee""... $ac_c" 1>&6
! echo "configure:2430: checking if IEEE math works with -ieee" >&5
  if eval "test \"`echo '$''{'rd_cv_ieee_switch'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
***************
*** 2431,2437 ****
    :
  else
    cat > conftest.$ac_ext <<EOF
! #line 2435 "configure"
  #include "confdefs.h"
  int main(void){
                double a=0.0/0.0;
--- 2436,2442 ----
    :
  else
    cat > conftest.$ac_ext <<EOF
! #line 2440 "configure"
  #include "confdefs.h"
  int main(void){
                double a=0.0/0.0;
***************
*** 2454,2460 ****
  	      return 0;
               }
  EOF
! if { (eval echo configure:2458: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
  then
    rd_cv_ieee_switch=yes
  else
--- 2459,2465 ----
  	      return 0;
               }
  EOF
! if { (eval echo configure:2463: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
  then
    rd_cv_ieee_switch=yes
  else
***************
*** 2472,2478 ****
  
  if test "$rd_cv_ieee_switch" != yes ; then
  echo $ac_n "checking if IEEE math works with -mieee""... $ac_c" 1>&6
! echo "configure:2476: checking if IEEE math works with -mieee" >&5
  if eval "test \"`echo '$''{'rd_cv_mieee_switch'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
--- 2477,2483 ----
  
  if test "$rd_cv_ieee_switch" != yes ; then
  echo $ac_n "checking if IEEE math works with -mieee""... $ac_c" 1>&6
! echo "configure:2481: checking if IEEE math works with -mieee" >&5
  if eval "test \"`echo '$''{'rd_cv_mieee_switch'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
***************
*** 2482,2488 ****
    :
  else
    cat > conftest.$ac_ext <<EOF
! #line 2486 "configure"
  #include "confdefs.h"
  int main(void){
                double a=0.0/0.0;
--- 2487,2493 ----
    :
  else
    cat > conftest.$ac_ext <<EOF
! #line 2491 "configure"
  #include "confdefs.h"
  int main(void){
                double a=0.0/0.0;
***************
*** 2505,2511 ****
  	      return 0;
               }
  EOF
! if { (eval echo configure:2509: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
  then
    rd_cv_mieee_switch=yes
  else
--- 2510,2516 ----
  	      return 0;
               }
  EOF
! if { (eval echo configure:2514: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
  then
    rd_cv_mieee_switch=yes
  else
***************
*** 2523,2529 ****
  
  if test "$rd_cv_mieee_switch" != yes ; then
  echo $ac_n "checking if IEEE math works with fpsetmask(0)""... $ac_c" 1>&6
! echo "configure:2527: checking if IEEE math works with fpsetmask(0)" >&5
  if eval "test \"`echo '$''{'rd_cv_ieee_mask'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
--- 2528,2534 ----
  
  if test "$rd_cv_mieee_switch" != yes ; then
  echo $ac_n "checking if IEEE math works with fpsetmask(0)""... $ac_c" 1>&6
! echo "configure:2532: checking if IEEE math works with fpsetmask(0)" >&5
  if eval "test \"`echo '$''{'rd_cv_ieee_mask'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
***************
*** 2533,2539 ****
    :
  else
    cat > conftest.$ac_ext <<EOF
! #line 2537 "configure"
  #include "confdefs.h"
  #include <floatingpoint.h>
  	int main(void){
--- 2538,2544 ----
    :
  else
    cat > conftest.$ac_ext <<EOF
! #line 2542 "configure"
  #include "confdefs.h"
  #include <floatingpoint.h>
  	int main(void){
***************
*** 2560,2566 ****
  	      return 0;
               }
  EOF
! if { (eval echo configure:2564: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
  then
    rd_cv_ieee_mask=yes
  else
--- 2565,2571 ----
  	      return 0;
               }
  EOF
! if { (eval echo configure:2569: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
  then
    rd_cv_ieee_mask=yes
  else
***************
*** 2578,2584 ****
  
  if test "$rd_cv_ieee_mask" != yes; then
  echo $ac_n "checking if IEEE math works with signal(SIGFPE,SIG_IGN)""... $ac_c" 1>&6
! echo "configure:2582: checking if IEEE math works with signal(SIGFPE,SIG_IGN)" >&5
  if eval "test \"`echo '$''{'rd_cv_ieee_sigfpe'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
--- 2583,2589 ----
  
  if test "$rd_cv_ieee_mask" != yes; then
  echo $ac_n "checking if IEEE math works with signal(SIGFPE,SIG_IGN)""... $ac_c" 1>&6
! echo "configure:2587: checking if IEEE math works with signal(SIGFPE,SIG_IGN)" >&5
  if eval "test \"`echo '$''{'rd_cv_ieee_sigfpe'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
***************
*** 2588,2594 ****
    :
  else
    cat > conftest.$ac_ext <<EOF
! #line 2592 "configure"
  #include "confdefs.h"
  #include <signal.h>
  	      int main(void){
--- 2593,2599 ----
    :
  else
    cat > conftest.$ac_ext <<EOF
! #line 2597 "configure"
  #include "confdefs.h"
  #include <signal.h>
  	      int main(void){
***************
*** 2614,2620 ****
  	      return 0;
               }
  EOF
! if { (eval echo configure:2618: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
  then
    rd_cv_ieee_sigfpe=yes
  else
--- 2619,2625 ----
  	      return 0;
               }
  EOF
! if { (eval echo configure:2623: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
  then
    rd_cv_ieee_sigfpe=yes
  else
***************
*** 2844,2849 ****
--- 2849,2856 ----
  s%@GD_LIB_DIR@%$GD_LIB_DIR%g
  s%@PNG_LIB_DIR@%$PNG_LIB_DIR%g
  s%@ZLIB_LIB_DIR@%$ZLIB_LIB_DIR%g
+ s%@PERL@%$PERL%g
+ s%@COMP_PERL@%$COMP_PERL%g
  s%@CC@%$CC%g
  s%@CPP@%$CPP%g
  s%@LIBTOOL_M4_MACRO_DIR@%$LIBTOOL_M4_MACRO_DIR%g
***************
*** 2852,2858 ****
  s%@NM@%$NM%g
  s%@LN_S@%$LN_S%g
  s%@LIBTOOL@%$LIBTOOL%g
- s%@PERL@%$PERL%g
  s%@CFLAGS_EXTRA@%$CFLAGS_EXTRA%g
  
  CEOF
--- 2859,2864 ----
***************
*** 3090,3096 ****
  
  
  echo $ac_n "checking in""... $ac_c" 1>&6
! echo "configure:3094: checking in" >&5
  echo "$ac_t""and out again" 1>&6
  
  echo $ac_n "ordering CD from http://cdnow.com/gift/oetiker@ee.ethz.ch $ac_c" 1>&6
--- 3096,3102 ----
  
  
  echo $ac_n "checking in""... $ac_c" 1>&6
! echo "configure:3100: checking in" >&5
  echo "$ac_t""and out again" 1>&6
  
  echo $ac_n "ordering CD from http://cdnow.com/gift/oetiker@ee.ethz.ch $ac_c" 1>&6
diff -rc ../rrdtool-1.0.3a/configure.in ./configure.in
*** ../rrdtool-1.0.3a/configure.in	Fri Aug  6 17:12:03 1999
--- ./configure.in	Mon Aug  9 10:52:05 1999
***************
*** 50,67 ****
  dnl Host system/type.
  AC_ARG_PROGRAM
  
  dnl Check for the compiler and static/shared library creation.
  AC_PROG_CC
  AC_PROG_CPP
- AC_DISABLE_STATIC
  RRD_ACLOCAL_FIND_LIBTOOL
  AC_LIBTOOL_DLOPEN
  AM_PROG_LIBTOOL
  
! dnl Check for programs.
! AC_PATH_PROG(PERL, perl, no)
! 
! AC_PREFIX_DEFAULT(/usr/local/rrdtool-1.0.3)
  
  dnl Checks for header files.
  AC_HEADER_STDC
--- 50,75 ----
  dnl Host system/type.
  AC_ARG_PROGRAM
  
+ dnl Check for Perl.  Only build a shared library if Perl exists, otherwise
+ dnl build a shared librrd library.  Because we potentially turn off shared
+ dnl libraries, this check needs to go before AM_PROG_LIBTOOL.
+ AC_PATH_PROG(PERL, perl)
+ if test "x$PERL" = "x"; then
+ 	COMP_PERL=
+ 	AC_DISABLE_SHARED
+ else
+ 	COMP_PERL="stamp_perl_piped stamp_perl_shared"
+ fi
+ AC_SUBST(COMP_PERL)
+ 
  dnl Check for the compiler and static/shared library creation.
  AC_PROG_CC
  AC_PROG_CPP
  RRD_ACLOCAL_FIND_LIBTOOL
  AC_LIBTOOL_DLOPEN
  AM_PROG_LIBTOOL
  
! AC_PREFIX_DEFAULT(/usr/local/rrdtool-1.0.3b)
  
  dnl Checks for header files.
  AC_HEADER_STDC
diff -rc ../rrdtool-1.0.3a/contrib/Makefile.in ./contrib/Makefile.in
*** ../rrdtool-1.0.3a/contrib/Makefile.in	Fri Aug  6 17:15:56 1999
--- ./contrib/Makefile.in	Mon Aug  9 10:52:12 1999
***************
*** 67,72 ****
--- 67,73 ----
  CFLAGS = @CFLAGS@
  CFLAGS_EXTRA = @CFLAGS_EXTRA@
  CGI_LIB_DIR = @CGI_LIB_DIR@
+ COMP_PERL = @COMP_PERL@
  CPP = @CPP@
  GD_LIB_DIR = @GD_LIB_DIR@
  LIBTOOL = @LIBTOOL@
diff -rc ../rrdtool-1.0.3a/examples/Makefile.in ./examples/Makefile.in
*** ../rrdtool-1.0.3a/examples/Makefile.in	Fri Aug  6 17:15:56 1999
--- ./examples/Makefile.in	Mon Aug  9 10:52:12 1999
***************
*** 67,72 ****
--- 67,73 ----
  CFLAGS = @CFLAGS@
  CFLAGS_EXTRA = @CFLAGS_EXTRA@
  CGI_LIB_DIR = @CGI_LIB_DIR@
+ COMP_PERL = @COMP_PERL@
  CPP = @CPP@
  GD_LIB_DIR = @GD_LIB_DIR@
  LIBTOOL = @LIBTOOL@
diff -rc ../rrdtool-1.0.3a/gd1.3/Makefile.in ./gd1.3/Makefile.in
*** ../rrdtool-1.0.3a/gd1.3/Makefile.in	Fri Aug  6 17:15:57 1999
--- ./gd1.3/Makefile.in	Mon Aug  9 10:52:12 1999
***************
*** 67,72 ****
--- 67,73 ----
  CFLAGS = @CFLAGS@
  CFLAGS_EXTRA = @CFLAGS_EXTRA@
  CGI_LIB_DIR = @CGI_LIB_DIR@
+ COMP_PERL = @COMP_PERL@
  CPP = @CPP@
  GD_LIB_DIR = @GD_LIB_DIR@
  LIBTOOL = @LIBTOOL@
diff -rc ../rrdtool-1.0.3a/libpng-1.0.3/Makefile.in ./libpng-1.0.3/Makefile.in
*** ../rrdtool-1.0.3a/libpng-1.0.3/Makefile.in	Fri Aug  6 17:15:57 1999
--- ./libpng-1.0.3/Makefile.in	Mon Aug  9 10:52:12 1999
***************
*** 67,72 ****
--- 67,73 ----
  CFLAGS = @CFLAGS@
  CFLAGS_EXTRA = @CFLAGS_EXTRA@
  CGI_LIB_DIR = @CGI_LIB_DIR@
+ COMP_PERL = @COMP_PERL@
  CPP = @CPP@
  GD_LIB_DIR = @GD_LIB_DIR@
  LIBTOOL = @LIBTOOL@
Only in .: rrd103a-103b.patch
diff -rc ../rrdtool-1.0.3a/src/Makefile.am ./src/Makefile.am
*** ../rrdtool-1.0.3a/src/Makefile.am	Fri Aug  6 17:15:51 1999
--- ./src/Makefile.am	Mon Aug  9 10:13:50 1999
***************
*** 9,15 ****
  PNG_LIB_DIR	   = $(top_srcdir)/@PNG_LIB_DIR@
  ZLIB_LIB_DIR	   = $(top_srcdir)/@ZLIB_LIB_DIR@
  
! INCLUDES 	   = -I$(CGI_LIB_DIR) -I$(GD_LIB_DIR) -I$(PNG_LIB_DIR)
  
  COMPILE   = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) $(CFLAGS_EXTRA)
  LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) $(CFLAGS_EXTRA)
--- 9,15 ----
  PNG_LIB_DIR	   = $(top_srcdir)/@PNG_LIB_DIR@
  ZLIB_LIB_DIR	   = $(top_srcdir)/@ZLIB_LIB_DIR@
  
! INCLUDES 	   = -I$(CGI_LIB_DIR) -I$(GD_LIB_DIR) -I$(PNG_LIB_DIR) -I$(ZLIB_LIB_DIR)
  
  COMPILE   = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) $(CFLAGS_EXTRA)
  LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) $(CFLAGS_EXTRA)
diff -rc ../rrdtool-1.0.3a/src/Makefile.in ./src/Makefile.in
*** ../rrdtool-1.0.3a/src/Makefile.in	Fri Aug  6 17:15:58 1999
--- ./src/Makefile.in	Mon Aug  9 10:52:13 1999
***************
*** 66,71 ****
--- 66,72 ----
  CC = @CC@
  CFLAGS = @CFLAGS@
  CFLAGS_EXTRA = @CFLAGS_EXTRA@
+ COMP_PERL = @COMP_PERL@
  CPP = @CPP@
  LIBTOOL = @LIBTOOL@
  PERL = @PERL@
***************
*** 80,86 ****
  PNG_LIB_DIR = $(top_srcdir)/@PNG_LIB_DIR@
  ZLIB_LIB_DIR = $(top_srcdir)/@ZLIB_LIB_DIR@
  
! INCLUDES = -I$(CGI_LIB_DIR) -I$(GD_LIB_DIR) -I$(PNG_LIB_DIR)
  
  COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) $(CFLAGS_EXTRA)
  LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) $(CFLAGS_EXTRA)
--- 81,87 ----
  PNG_LIB_DIR = $(top_srcdir)/@PNG_LIB_DIR@
  ZLIB_LIB_DIR = $(top_srcdir)/@ZLIB_LIB_DIR@
  
! INCLUDES = -I$(CGI_LIB_DIR) -I$(GD_LIB_DIR) -I$(PNG_LIB_DIR) -I$(ZLIB_LIB_DIR)
  
  COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) $(CFLAGS_EXTRA)
  LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) $(CFLAGS_EXTRA)
diff -rc ../rrdtool-1.0.3a/zlib-1.1.3/Makefile.in ./zlib-1.1.3/Makefile.in
*** ../rrdtool-1.0.3a/zlib-1.1.3/Makefile.in	Fri Aug  6 17:15:57 1999
--- ./zlib-1.1.3/Makefile.in	Mon Aug  9 10:52:13 1999
***************
*** 67,72 ****
--- 67,73 ----
  CFLAGS = @CFLAGS@
  CFLAGS_EXTRA = @CFLAGS_EXTRA@
  CGI_LIB_DIR = @CGI_LIB_DIR@
+ COMP_PERL = @COMP_PERL@
  CPP = @CPP@
  GD_LIB_DIR = @GD_LIB_DIR@
  LIBTOOL = @LIBTOOL@
-------------- next part --------------
A non-text attachment was scrubbed...
Name: bzajac.vcf
Type: text/x-vcard
Size: 311 bytes
Desc: Card for Blair Zajac
Url : https://lists.oetiker.ch/pipermail/rrd-developers/attachments/19990809/cb0e70de/attachment.vcf 


More information about the rrd-developers mailing list