mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
153 lines
3.8 KiB
Plaintext
153 lines
3.8 KiB
Plaintext
*** Makefile.dist Thu Jul 6 16:40:36 1995
|
|
--- Makefile Sun Jul 23 02:09:47 1995
|
|
***************
|
|
*** 7,13 ****
|
|
#
|
|
# Where to put the programs
|
|
#
|
|
! SERVBINDIR =../bin
|
|
BINDIR = ../bin
|
|
LIBDIR = ../lib
|
|
|
|
--- 7,13 ----
|
|
#
|
|
# Where to put the programs
|
|
#
|
|
! SERVBINDIR = ../bin
|
|
BINDIR = ../bin
|
|
LIBDIR = ../lib
|
|
|
|
***************
|
|
*** 22,28 ****
|
|
#
|
|
# Libraries to be included.
|
|
#
|
|
! LIBS =
|
|
|
|
#For Solaris 5.X or SVR4.2 use
|
|
#LIBS = -lsocket -lnsl
|
|
--- 22,28 ----
|
|
#
|
|
# Libraries to be included.
|
|
#
|
|
! LIBS = -lcrypt
|
|
|
|
#For Solaris 5.X or SVR4.2 use
|
|
#LIBS = -lsocket -lnsl
|
|
*** config.h.dist Wed Sep 3 17:22:17 1997
|
|
--- config.h Mon Sep 15 21:39:32 1997
|
|
***************
|
|
*** 7,13 ****
|
|
********************************************************/
|
|
|
|
|
|
! #define LINUX /* Operating System */
|
|
/*
|
|
Pick one of the following Operating System types which describes
|
|
your system and replace the SUN_OS4 value above
|
|
--- 7,13 ----
|
|
********************************************************/
|
|
|
|
|
|
! #define FREE_BSD_2 /* Operating System */
|
|
/*
|
|
Pick one of the following Operating System types which describes
|
|
your system and replace the SUN_OS4 value above
|
|
***************
|
|
*** 30,37 ****
|
|
* Enter the complete path of your root data directory here.
|
|
*/
|
|
|
|
! #define WN_LOGFILE "/usr/local/wnlogs/wn.log"
|
|
! #define WN_ERRLOGFILE "/usr/local/wnlogs/wn.log.err"
|
|
|
|
/*
|
|
* Full path of the file you want to use for a log file and the
|
|
--- 30,37 ----
|
|
* Enter the complete path of your root data directory here.
|
|
*/
|
|
|
|
! #define WN_LOGFILE "/usr/local/wn/wnlogs/run.log"
|
|
! #define WN_ERRLOGFILE "/usr/local/wn/wnlogs/err.log"
|
|
|
|
/*
|
|
* Full path of the file you want to use for a log file and the
|
|
***************
|
|
*** 41,47 ****
|
|
* To do no logging set all the logfiles above to "", the empty string.
|
|
*/
|
|
|
|
! #define SWN_PID_FILE "/usr/local/wnlogs/wn.pid"
|
|
/*
|
|
* Full path of the file in which you wish the standalone server swn
|
|
* to deposit its process id on startup. Comment this out or set
|
|
--- 41,47 ----
|
|
* To do no logging set all the logfiles above to "", the empty string.
|
|
*/
|
|
|
|
! #define SWN_PID_FILE "/var/run/swn.pid"
|
|
/*
|
|
* Full path of the file in which you wish the standalone server swn
|
|
* to deposit its process id on startup. Comment this out or set
|
|
***************
|
|
*** 59,65 ****
|
|
*/
|
|
|
|
|
|
! #define MIME_TYPE_FILE "/usr/local/lib/wn/mime.types"
|
|
/*
|
|
* This file contains information permitting wndex to translate
|
|
* ascertain the MIME "Content-type" from the suffix of a file name
|
|
--- 59,65 ----
|
|
*/
|
|
|
|
|
|
! #define MIME_TYPE_FILE "/usr/local/etc/wn_mime.types"
|
|
/*
|
|
* This file contains information permitting wndex to translate
|
|
* ascertain the MIME "Content-type" from the suffix of a file name
|
|
***************
|
|
*** 84,90 ****
|
|
*/
|
|
|
|
|
|
! /* #define VERBOSELOG */
|
|
/* By default WN uses the Common Log Format used by NCSA and CERN httpd.
|
|
* Uncommenting this will cause additional information to be added to
|
|
* the end of each log line. In particular the User-Agent and Referrer
|
|
--- 84,90 ----
|
|
*/
|
|
|
|
|
|
! #define VERBOSELOG
|
|
/* By default WN uses the Common Log Format used by NCSA and CERN httpd.
|
|
* Uncommenting this will cause additional information to be added to
|
|
* the end of each log line. In particular the User-Agent and Referrer
|
|
***************
|
|
*** 259,265 ****
|
|
|
|
/* #define TILDE_TABLE "/path/to/rootdir_table" */
|
|
|
|
! /* #define TILDE_USER_PWFILE */
|
|
|
|
#define TILDE_USER_STRING "/~"
|
|
/*
|
|
--- 259,265 ----
|
|
|
|
/* #define TILDE_TABLE "/path/to/rootdir_table" */
|
|
|
|
! #define TILDE_USER_PWFILE
|
|
|
|
#define TILDE_USER_STRING "/~"
|
|
/*
|
|
***************
|
|
*** 430,435 ****
|
|
--- 430,436 ----
|
|
/************************/
|
|
#if defined(FREE_BSD_2)
|
|
#define BSD_LIKE
|
|
+ #define SIGCLD SIGCHLD
|
|
#endif
|
|
|
|
|