1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-15 23:50:44 +00:00
freebsd-ports/www/WebMagick/files/patch-aa

59 lines
1.5 KiB
Plaintext
Raw Normal View History

*** webmagick.in.orig Tue Mar 24 07:45:45 1998
--- webmagick.in Thu May 21 02:35:08 1998
***************
*** 249,255 ****
# Name of per-directory rc file
$opt_webmagickrc = '.webmagickrc';
# global rc files
! @global_option_files = ("/etc/webmagickrc", "$ENV{'HOME'}/${opt_webmagickrc}");
# File naming
--- 249,255 ----
# Name of per-directory rc file
$opt_webmagickrc = '.webmagickrc';
# global rc files
! @global_option_files = ("@prefix@/etc/webmagickrc", "$ENV{'HOME'}/${opt_webmagickrc}");
# File naming
***************
*** 1584,1590 ****
# Save run status (source files and montage options)
#
writePerlIndexFiles();
! writeJavaScriptIndexFiles();
}
# Clear error flag
--- 1584,1592 ----
# Save run status (source files and montage options)
#
writePerlIndexFiles();
! if( $opt_javascript ) {
! writeJavaScriptIndexFiles();
! }
}
# Clear error flag
***************
*** 1860,1865 ****
--- 1862,1868 ----
# ----- Output Top JavaScript Index File (usually "indexjs.html") -------
#
+ if( $opt_javascript ) {
open( INDEX, ">$fileNames{'jsDirIndex'}")
|| die("$0: Failed to open file $fileNames{'jsDirIndex'} for output\n$@\n");
print( INDEX "<HTML>\n" );
***************
*** 1873,1878 ****
--- 1876,1882 ----
print( INDEX "</SCRIPT>\n" );
print( INDEX "</HTML>\n" );
close( INDEX );
+ }
# ----- Output Frame Directory File (usally ".indexdir.html") ------