--- ./configure.in Wed Nov 27 16:14:29 2002 +++ ../foomatic-filters-3.0.0/./configure.in Wed Jun 18 17:11:07 2003 @@ -17,6 +17,20 @@ DATASEARCHPATH=/usr/share:/usr/local/share:/usr/lib:/usr/local/lib:/opt LIBSEARCHPATH=/usr/lib:/lib:/usr/local/lib:/opt +dnl Get the operating system and version number... +uname=`uname` +uversion=`uname -r | sed -e '1,$s/[[^0-9]]//g'` +if test x$uname = xIRIX64; then + uname="IRIX" +fi + +if test x$uname = xIRIX; then + SYSCONFSEARCHPATH="/usr/freeware/etc:$SYSCONFSEARCHPATH" + BINSEARCHPATH="/usr/freeware/bin:$BINSEARCHPATH" + DATASEARCHPATH="/usr/freeware/share:$DATASEARCHPATH" + LIBSEARCHPATH="/usr/freeware/lib32:/usr/freeware/lib:$LIBSEARCHPATH" +fi + dnl Check for Perl AC_PATH_PROGS(PERL,perl,/usr/bin/perl,$BINSEARCHPATH) --- ./foomatic-rip.in Mon Apr 21 19:38:25 2003 +++ ../foomatic-filters-3.0.0/./foomatic-rip.in Wed Jun 18 17:11:07 2003 @@ -36,7 +36,7 @@ # possibly other stuff. The default path is often fine on Linux, but # may not be on other systems. # -my $execpath = "/usr/local/bin:/usr/bin:/bin"; +my $execpath = "@prefix@/bin:/usr/local/bin:/usr/bin:/bin"; # Location of the configuration file "filter.conf", this file can be # used to change the settings of foomatic-rip without editing @@ -43,7 +43,7 @@ # foomatic-rip. itself. This variable must contain the full pathname # of the directory which contains the configuration file, usually # "/etc/foomatic". -my $configpath = "/etc/foomatic"; +my $configpath = "@sysconfdir@/foomatic"; # For the stuff below, the settings in the configuration file have priority. --- ./makeMan.in Wed Nov 27 16:14:29 2002 +++ ../foomatic-filters-3.0.0/./makeMan.in Wed Jun 18 17:11:07 2003 @@ -28,7 +28,7 @@ $append = "discard\n"; next unless -f $file and $file =~ /^(.*\.[1-9])\.in$/; my ($man) = $1; - next unless `file $file` =~ m/\b[ntg]roff\b/; + next unless (`file $file` =~ m/\b[ntg]roff\b/) or (`file $file` =~ m/\[nt\]roff/); print STDERR "MATCHED\n" if $VERBOSE; $append = ''; open IN, "<$file" or (warn "Can't read input file $file!" and next FILE); --- ./configure Tue Apr 29 22:02:25 2003 +++ ../foomatic-filters-3.0.0/./configure Wed Jun 18 17:11:07 2003 @@ -663,6 +663,19 @@ DATASEARCHPATH=/usr/share:/usr/local/share:/usr/lib:/usr/local/lib:/opt LIBSEARCHPATH=/usr/lib:/lib:/usr/local/lib:/opt +uname=`uname` +uversion=`uname -r | sed -e '1,$s/[[^0-9]]//g'` +if test x$uname = xIRIX64; then + uname="IRIX" +fi + +if test x$uname = xIRIX; then + SYSCONFSEARCHPATH="/usr/freeware/etc:$SYSCONFSEARCHPATH" + BINSEARCHPATH="/usr/freeware/bin:$BINSEARCHPATH" + DATASEARCHPATH="/usr/freeware/share:$DATASEARCHPATH" + LIBSEARCHPATH="/usr/freeware/lib32:/usr/freeware/lib:$LIBSEARCHPATH" +fi + for ac_prog in perl do # Extract the first word of "$ac_prog", so it can be a program name with args.