$OpenBSD: patch-configure,v 1.2 2008/10/01 20:15:04 millert Exp $
--- configure.orig	Sat Aug 19 02:09:50 2006
+++ configure	Mon Sep 29 11:20:55 2008
@@ -274,7 +274,7 @@ PACKAGE_BUGREPORT=
 
 ac_unique_file="INSTALL"
 ac_default_prefix=/usr/local
-ac_subdirs_all="$ac_subdirs_all wml_backend/p2_mp4h wml_backend/p3_eperl wml_backend/p4_gm4 wml_aux/iselect wml_common/gd"
+ac_subdirs_all="$ac_subdirs_all wml_backend/p2_mp4h wml_backend/p3_eperl wml_backend/p4_gm4 wml_aux/iselect"
 ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS WML_VERSION VERSION WML_CONFIG_ARGS MAINT built_system built_user built_date libsubdir tmpdir build build_cpu build_vendor build_os host host_cpu host_vendor host_os target target_cpu target_vendor target_os DCOLON CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT CPP RANLIB ac_ct_RANLIB SET_MAKE PATH_PERL perlprog perlvers PERL_OPTS have_getoptlong have_bitvector have_filepathconvert have_imagesize have_io have_termreadkey INSTALLPRIVLIB INSTALLARCHLIB catdir subdirs LIBOBJS LTLIBOBJS'
 ac_subst_files=''
 
@@ -1236,7 +1236,6 @@ echo "$as_me:   current value: $ac_new_val" >&2;}
     esac
     case " $ac_configure_args " in
       *" '$ac_arg' "*) ;; # Avoid dups.  Use of quotes ensures accuracy.
-      *) ac_configure_args="$ac_configure_args '$ac_arg'" ;;
     esac
   fi
 done
@@ -2785,7 +2784,7 @@ for dir in `echo $PATH | sed -e 's/:/ /g'` $tmpdir; do
          if test -f "$dir/$perl"; then
              if test -x "$dir/$perl"; then
                  perlprog="$dir/$perl"
-                 if $perlprog -e 'require 5.003'; then
+                 if $perlprog -e 'use 5.003'; then
                      perlvers=`$perlprog -e 'printf "%.3f",$]'`
                      break 2
                  fi
@@ -2797,7 +2796,7 @@ done
 fi; PATH_PERL=$perlprog
 echo "$as_me:$LINENO: result: $perlprog v$perlvers" >&5
 echo "${ECHO_T}$perlprog v$perlvers" >&6
-if $perlprog -e 'require 5.003'; then
+if $perlprog -e 'use 5.003'; then
     :
 else
     echo ""
@@ -2856,7 +2855,7 @@ if test ".$with_openworld" = .no; then
 else
     echo "$as_me:$LINENO: checking for Perl module Getopt::Long (2.16)" >&5
 echo $ECHO_N "checking for Perl module Getopt::Long (2.16)... $ECHO_C" >&6
-rc=`$path_perl -e 'eval {require Getopt::Long 2.16}; print "ok" unless $@'`;
+rc=`$path_perl -e 'eval {use Getopt::Long 2.16}; print "ok" unless $@'`;
 if test ".$rc" = .ok; then
     have_getoptlong=1
     echo "$as_me:$LINENO: result: found" >&5
@@ -2870,7 +2869,7 @@ fi
 
     echo "$as_me:$LINENO: checking for Perl module Bit::Vector (5.2)" >&5
 echo $ECHO_N "checking for Perl module Bit::Vector (5.2)... $ECHO_C" >&6
-rc=`$path_perl -e 'eval {require Bit::Vector 5.2}; print "ok" unless $@'`;
+rc=`$path_perl -e 'eval {use Bit::Vector 5.2}; print "ok" unless $@'`;
 if test ".$rc" = .ok; then
     have_bitvector=1
     echo "$as_me:$LINENO: result: found" >&5
@@ -2882,9 +2881,9 @@ echo "${ECHO_T}not found" >&6
 fi
 
 
-    echo "$as_me:$LINENO: checking for Perl module File::PathConvert (ANY)" >&5
-echo $ECHO_N "checking for Perl module File::PathConvert (ANY)... $ECHO_C" >&6
-rc=`$path_perl -e 'eval {require File::PathConvert }; print "ok" unless $@'`;
+    echo "$as_me:$LINENO: checking for Perl module File::Spec (0.87)" >&5
+echo $ECHO_N "checking for Perl module File::Spec (0.87)... $ECHO_C" >&6
+rc=`$path_perl -e 'eval {use File::Spec 0.87}; print "ok" unless $@'`;
 if test ".$rc" = .ok; then
     have_filepathconvert=1
     echo "$as_me:$LINENO: result: found" >&5
@@ -2898,7 +2897,7 @@ fi
 
     echo "$as_me:$LINENO: checking for Perl module Image::Size (2.6)" >&5
 echo $ECHO_N "checking for Perl module Image::Size (2.6)... $ECHO_C" >&6
-rc=`$path_perl -e 'eval {require Image::Size 2.6}; print "ok" unless $@'`;
+rc=`$path_perl -e 'eval {use Image::Size 2.6}; print "ok" unless $@'`;
 if test ".$rc" = .ok; then
     have_imagesize=1
     echo "$as_me:$LINENO: result: found" >&5
@@ -2912,7 +2911,7 @@ fi
 
     echo "$as_me:$LINENO: checking for Perl module IO::File (1.07)" >&5
 echo $ECHO_N "checking for Perl module IO::File (1.07)... $ECHO_C" >&6
-rc=`$path_perl -e 'eval {require IO::File 1.07}; print "ok" unless $@'`;
+rc=`$path_perl -e 'eval {use IO::File 1.07}; print "ok" unless $@'`;
 if test ".$rc" = .ok; then
     have_io=1
     echo "$as_me:$LINENO: result: found" >&5
@@ -2926,7 +2925,7 @@ fi
 
     echo "$as_me:$LINENO: checking for Perl module Term::ReadKey (2.11)" >&5
 echo $ECHO_N "checking for Perl module Term::ReadKey (2.11)... $ECHO_C" >&6
-rc=`$path_perl -e 'eval {require Term::ReadKey 2.11}; print "ok" unless $@'`;
+rc=`$path_perl -e 'eval {use Term::ReadKey 2.11}; print "ok" unless $@'`;
 if test ".$rc" = .ok; then
     have_termreadkey=1
     echo "$as_me:$LINENO: result: found" >&5
@@ -2988,11 +2987,10 @@ catdir=cat
 fi;
 
 
-ac_configure_args="$ac_configure_args --with-tidy=`pwd`/wml_aux/tidy/tidy"
 
 
 
-subdirs="$subdirs wml_backend/p2_mp4h  wml_backend/p3_eperl wml_backend/p4_gm4 wml_aux/iselect wml_common/gd "
+subdirs="$subdirs wml_backend/p2_mp4h  wml_backend/p3_eperl wml_backend/p4_gm4 wml_aux/iselect "
 
 
 echo "$as_me:$LINENO: result: " >&5
