diff options
author | Andrey A. Chernov <ache@FreeBSD.org> | 1999-03-29 02:35:24 +0000 |
---|---|---|
committer | Andrey A. Chernov <ache@FreeBSD.org> | 1999-03-29 02:35:24 +0000 |
commit | 426d697985966a8e4976e99b2dd85a0c09ad138f (patch) | |
tree | f9bd750bd36fc149adb86c575dcf5a907d4e5382 /mail/cucipop/files/patch-ad | |
parent | Install with the correct modes. (diff) |
comment out vhost support since it brings db2 vs. libc conflict in
certain situations.
Describe why it is impossible to use APOP in such situation even for
real accounts
Notes
Notes:
svn path=/head/; revision=17424
Diffstat (limited to 'mail/cucipop/files/patch-ad')
-rw-r--r-- | mail/cucipop/files/patch-ad | 31 |
1 files changed, 18 insertions, 13 deletions
diff --git a/mail/cucipop/files/patch-ad b/mail/cucipop/files/patch-ad index 7fd7c42b3c75..fbb90352a538 100644 --- a/mail/cucipop/files/patch-ad +++ b/mail/cucipop/files/patch-ad @@ -1,6 +1,6 @@ --- Makefile.orig Wed May 13 01:09:14 1998 -+++ Makefile Mon Mar 29 00:38:08 1999 -@@ -1,30 +1,31 @@ ++++ Makefile Mon Mar 29 06:29:31 1999 +@@ -1,30 +1,32 @@ #$Id: Makefile,v 1.18 1998/05/12 21:09:14 srb Exp $ -BASENAME= /usr @@ -18,8 +18,8 @@ -CFLAGS = -O -DUSE_DB #$(GCC_WARNINGS) -LDFLAGS = -lcrypt -ldb2 -+CFLAGS += -DUSE_DB -DSENDMAILLIB=\"${PREFIX}/etc\" -I${PREFIX}/include -+LDFLAGS += -lcrypt -lmd -L${PREFIX}/lib -ldb2 ++#CFLAGS += -DUSE_DB -DSENDMAILLIB=\"${PREFIX}/etc\" -I${PREFIX}/include ++LDFLAGS += -lcrypt #-lmd -L${PREFIX}/lib -ldb2 # If you change this, edit config.h as well -CUCIPOPLIB=/var/lib/cucipop @@ -36,12 +36,13 @@ -BINPERM=02755 -s -g mail -REGPERM=0644 +INSTALL=install -c -o bin -m -+BINPERM=02555 -s -g mail ++BINLPERM=02555 -s -g mail ++BINSPERM=555 -s +REGPERM=0444 # # When compiling without APOP support, the md5 library can be omitted. -@@ -32,13 +33,14 @@ +@@ -32,13 +34,14 @@ MD5_OBJ=md5/md5c.$(O) OBJS=cucipop.$(O) authenticate.$(O) atotime.$(O) locking.$(O) xcreat.$(O) \ @@ -52,27 +53,31 @@ +BINL=cucipop +BINS=makevpopdb - MANS=cucipop.8 makevpopdb.8 +-MANS=cucipop.8 makevpopdb.8 ++MANS=cucipop.8 #makevpopdb.8 -all: $(BINS) -+all: $(BINS) $(BINL) ++all: $(BINL) #$(BINS) cucipop: $(OBJS) $(CC) $(CFLAGS) $(OBJS) -o $@ $(LDFLAGS) $(LIBS) -@@ -67,11 +69,13 @@ +@@ -67,12 +70,14 @@ $(MD5_OBJ): md5/md5c.c md5/md5.h cd md5; $(CC) $(CFLAGS) -c md5c.c -install: $(BINS) $(MANS) -+install: $(BINS) $(BINL) $(MANS) -+ $(INSTALL) $(BINPERM) $(BINL) $(LIBEXECDIR) - $(INSTALL) $(BINPERM) $(BINS) $(BINDIR) +- $(INSTALL) $(BINPERM) $(BINS) $(BINDIR) ++install: $(BINL) $(MANS) #$(BINS) ++ $(INSTALL) $(BINLPERM) $(BINL) $(LIBEXECDIR) ++# $(INSTALL) $(BINSPERM) $(BINS) $(BINDIR) $(INSTALL) $(REGPERM) $(MANS) $(MANDIR) - mkdir $(CUCIPOPLIB) 2>/dev/null; exit 0 - mkdir $(CUCIPOPBULLETINS) 2>/dev/null; exit 0 +- @for a in $(BINS); do ls -l $(BINDIR)/$$a; done + mkdir -p $(CUCIPOPLIB) 2>/dev/null; exit 0 + mkdir -p $(CUCIPOPBULLETINS) 2>/dev/null; exit 0 + @for a in $(BINL); do ls -l $(LIBEXECDIR)/$$a; done - @for a in $(BINS); do ls -l $(BINDIR)/$$a; done ++# @for a in $(BINS); do ls -l $(BINDIR)/$$a; done @for a in $(MANS); do ls -l $(MANDIR)/$$a; done + deinstall: |