mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-05 22:43:24 +00:00
80 lines
2.2 KiB
Plaintext
80 lines
2.2 KiB
Plaintext
|
*** make.44bsd.orig Thu May 30 04:37:44 1996
|
||
|
--- make.44bsd Wed Apr 2 05:30:47 1997
|
||
|
***************
|
||
|
*** 3,10 ****
|
||
|
|
||
|
# Defines are described in the INSTALL document.
|
||
|
|
||
|
! PROG=popper popauth
|
||
|
! MAN8=popper.8 popauth.8
|
||
|
SRCS= pop_dele.c pop_dropcopy.c pop_get_command.c pop_get_subcommand.c \
|
||
|
pop_init.c pop_last.c pop_list.c pop_log.c pop_lower.c pop_msg.c \
|
||
|
pop_parse.c pop_pass.c pop_quit.c pop_rset.c pop_send.c pop_stat.c \
|
||
|
--- 3,12 ----
|
||
|
|
||
|
# Defines are described in the INSTALL document.
|
||
|
|
||
|
! SUBDIR=popauth
|
||
|
!
|
||
|
! PROG=popper
|
||
|
! MAN8=popper.8
|
||
|
SRCS= pop_dele.c pop_dropcopy.c pop_get_command.c pop_get_subcommand.c \
|
||
|
pop_init.c pop_last.c pop_list.c pop_log.c pop_lower.c pop_msg.c \
|
||
|
pop_parse.c pop_pass.c pop_quit.c pop_rset.c pop_send.c pop_stat.c \
|
||
|
***************
|
||
|
*** 12,32 ****
|
||
|
xtnd_xlst.c pop_uidl.c pop_rpop.c pop_apop.c md5.c
|
||
|
#SRCS+= flock.c mktemp.c
|
||
|
|
||
|
! BINDIR=/usr/local/libexec
|
||
|
! MANDIR=/usr/local/man/man
|
||
|
|
||
|
#LDADD+= -lcrypt -lndbm
|
||
|
|
||
|
! CFLAGS+=-DHAVE_PARAM_H
|
||
|
|
||
|
# if you want APOP support, uncomment the next line
|
||
|
! #CFLAGS+=-DAPOP=\"/etc/pop.auth\" -DPOPUID=\"pop\"
|
||
|
|
||
|
# if you want RPOP support, uncomment the next line
|
||
|
! #CFLAGS+=-DRPOP
|
||
|
|
||
|
# if you want to block POP access for anyone in /etc/ftpusers, uncomment
|
||
|
! #CFLAGS+=-DNONAUTHFILE=\"/etc/ftpusers\"
|
||
|
|
||
|
.include <bsd.prog.mk>
|
||
|
-
|
||
|
--- 14,45 ----
|
||
|
xtnd_xlst.c pop_uidl.c pop_rpop.c pop_apop.c md5.c
|
||
|
#SRCS+= flock.c mktemp.c
|
||
|
|
||
|
! PREFIX?=/usr/local
|
||
|
! BINDIR=${PREFIX}/libexec
|
||
|
! MANDIR=${PREFIX}/man/man
|
||
|
|
||
|
#LDADD+= -lcrypt -lndbm
|
||
|
|
||
|
! CFLAGS+=-DHAVE_PARAM_H -DSETPROCTITLE
|
||
|
! LDADD+=-lutil
|
||
|
!
|
||
|
! .if exists(/usr/lib/libskey.a) && exists(/usr/lib/libmd.a)
|
||
|
! DPADD+= ${LIBSKEY} ${LIBMD} ${LIBCRYPT}
|
||
|
! LDADD+= -lskey -lmd -lcrypt
|
||
|
! CFLAGS+= -DSKEY
|
||
|
! .endif
|
||
|
|
||
|
# if you want APOP support, uncomment the next line
|
||
|
! CFLAGS+=-DAPOP=\"${PREFIX}/etc/popper/pop.auth\" -DPOPUID=\"pop\"
|
||
|
!
|
||
|
! .if defined(APOP_ONLY)
|
||
|
! CFLAGS+=-DAPOP_ONLY
|
||
|
! .endif
|
||
|
|
||
|
# if you want RPOP support, uncomment the next line
|
||
|
! # CFLAGS+=-DRPOP
|
||
|
|
||
|
# if you want to block POP access for anyone in /etc/ftpusers, uncomment
|
||
|
! CFLAGS+=-DNONAUTHFILE=\"/etc/ftpusers\"
|
||
|
|
||
|
.include <bsd.prog.mk>
|