Mercurial > noffle
diff Makefile @ 38:8e972daaeab9 noffle
[svn] Applied patch from Jim Hague:
- Forget cached group info when group database closed.
- Added list of 'forbidden' newsgroup specs.
- Fixed problem with article numbering if the overview file empties.
- Changed %i to %d in sscanfs (%i interprets leading zeros as octal numbers)
- New groups now always start numbering at article 1.
- Record newsgroup posting status. Enforce it at posting time.
Added --modify
- Added group deletion.
- Added wildmat code taken from INN
author | enz |
---|---|
date | Fri, 05 May 2000 08:23:15 +0100 |
parents | cf838072290d |
children |
line wrap: on
line diff
--- a/Makefile Thu May 04 09:16:09 2000 +0100 +++ b/Makefile Fri May 05 08:23:15 2000 +0100 @@ -2,7 +2,7 @@ # # Makefile for Noffle news server # -# $Id: Makefile 37 2000-04-30 14:22:12Z enz $ +# $Id: Makefile 44 2000-05-05 07:23:15Z enz $ # ############################################################################### @@ -23,12 +23,12 @@ FILESH = client.h common.h config.h content.h control.h database.h \ dynamicstring.h fetch.h fetchlist.h group.h itemlist.h lock.h log.h \ online.h outgoing.h over.h post.h protocol.h pseudo.h request.h \ - server.h util.h + server.h util.h wildmat.h FILESC = fetch.c client.c config.c content.c control.c database.c \ dynamicstring.c fetchlist.c group.c itemlist.c lock.c log.c noffle.c \ online.c outgoing.c over.c post.c protocol.c pseudo.c request.c \ - server.c util.c + server.c util.c wildmat.c OBJS = $(patsubst %.c,%.o,$(FILESC)) @@ -65,17 +65,17 @@ install -o news -g news -d $(RPM_BUILD_ROOT)$(SPOOLDIR)/outgoing install -o news -g news -d $(RPM_BUILD_ROOT)$(SPOOLDIR)/overview install -o 0 -g 0 -d $(RPM_BUILD_ROOT)$(DOCDIR) - install -m 0644 -o 0 -g 0 README.txt $(RPM_BUILD_ROOT)$(DOCDIR) - install -m 0644 -o 0 -g 0 NOTES.txt $(RPM_BUILD_ROOT)$(DOCDIR) - install -m 0644 -o 0 -g 0 INSTALL.txt $(RPM_BUILD_ROOT)$(DOCDIR) - install -m 0644 -o 0 -g 0 CHANGELOG.txt $(RPM_BUILD_ROOT)$(DOCDIR) - install -m 0644 -o 0 -g 0 FAQ.txt $(RPM_BUILD_ROOT)$(DOCDIR) - install -m 0644 -o 0 -g 0 COPYING.txt $(RPM_BUILD_ROOT)$(DOCDIR) + install -m 0644 -o 0 -g 0 README.html $(RPM_BUILD_ROOT)$(DOCDIR) + install -m 0644 -o 0 -g 0 NOTES.html $(RPM_BUILD_ROOT)$(DOCDIR) + install -m 0644 -o 0 -g 0 INSTALL.html $(RPM_BUILD_ROOT)$(DOCDIR) + install -m 0644 -o 0 -g 0 CHANGELOG.html $(RPM_BUILD_ROOT)$(DOCDIR) + install -m 0644 -o 0 -g 0 FAQ.html $(RPM_BUILD_ROOT)$(DOCDIR) + install -m 0644 -o 0 -g 0 COPYING.html $(RPM_BUILD_ROOT)$(DOCDIR) install -m 0644 -o 0 -g 0 noffle.conf.example \ $(RPM_BUILD_ROOT)$(DOCDIR) chown -R news.news $(RPM_BUILD_ROOT)$(SPOOLDIR) @echo - @echo Read INSTALL.txt for further instructions. + @echo Read INSTALL.html for further instructions. tags: ctags -e $(FILESC) $(FILESH)