25 lines
724 B
Plaintext
25 lines
724 B
Plaintext
|
--- Makefile.PL Tue Dec 30 19:22:01 2003
|
||
|
+++ Makefile.PL Tue Dec 30 19:22:36 2003
|
||
|
@@ -48,8 +48,8 @@
|
||
|
|
||
|
EOF
|
||
|
|
||
|
- $host = prompt('what is the hostname for the DICT server?', $DEFAULT_HOST);
|
||
|
- $port = prompt('what is the port for the DICT server?', $DEFAULT_PORT);
|
||
|
+ #$host = prompt('what is the hostname for the DICT server?', $DEFAULT_HOST);
|
||
|
+ #$port = prompt('what is the port for the DICT server?', $DEFAULT_PORT);
|
||
|
print "\nWriting test config $test_config_file\n\n";
|
||
|
|
||
|
open(CFGFILE, "> $test_config_file")
|
||
|
@@ -62,8 +62,8 @@
|
||
|
# This file is auto-generated by Makefile.PL
|
||
|
#
|
||
|
use vars qw(\$HOST \$PORT);
|
||
|
-\$HOST = '$host';
|
||
|
-\$PORT = $port;
|
||
|
+\$HOST = '$DEFAULT_HOST';
|
||
|
+\$PORT = $DEFAULT_PORT;
|
||
|
1;
|
||
|
EOF
|
||
|
|