Commit 9b9fbddc 9b9fbddceb63fb10af572298fc0404f90384c7de by Jeff Bailey

More libsrc/ to lib/ updates. Add doc/, add mailutils.texi, THANKS

1 parent bc54c260
1 1999-10-10 Jeff Bailey <jbailey@cr499794-a.crdva1.bc.wave.home.com> 1 1999-10-10 Jeff Bailey <jbailey@cr499794-a.crdva1.bc.wave.home.com>
2 2
3 * THANKS: New file
4
5 * doc/mailutils.texi: New File
6 Provided by Alain Magloire <alainm@rcsm.ece.mcgill.ca> with some
7 changes so that Makeinfo reports no errors.
8
9 * doc/Makefile.am: New file
10
11 * configure.in: Deal with libsrc to lib rename
12
3 * pop3d/Makefile.am: Deal with libsrc to lib rename 13 * pop3d/Makefile.am: Deal with libsrc to lib rename
4 14
5 * Makefile.am: Deal with libsrc to lib rename 15 * Makefile.am: Deal with libsrc to lib rename.
16 Add reference to doc/ subdirectory.
6 17
7 * libsrc/: Rename to lib/ 18 * libsrc/: Rename to lib/
8 19
......
1 AUTOMAKE_OPTIONS = gnu 1.4 1 AUTOMAKE_OPTIONS = gnu 1.4
2 2
3 SUBDIRS = lib libmailbox mail pop3d 3 SUBDIRS = lib libmailbox mail pop3d doc
......
1 GNU mailutils THANKS file
2
3 GNU mailutils has originally been written by Jakob Kaivo, Jeff Bailey and
4 Sean 'Shaleh' Perry. Many people further contributed to GNU mailutils by
5 reporting problems, suggesting various improvements or submitting actual
6 code. Here is a list of these people. Help us keep it complete and exempt
7 of errors.
8
9 Alain Magloire <alainm@rcsm.ece.mcgill.ca>
...\ No newline at end of file ...\ No newline at end of file
...@@ -52,5 +52,5 @@ AC_SUBST(AUTHLIBS) ...@@ -52,5 +52,5 @@ AC_SUBST(AUTHLIBS)
52 52
53 dnl Output Makefiles 53 dnl Output Makefiles
54 AC_OUTPUT(Makefile libmailbox/Makefile mail/Makefile pop3d/Makefile 54 AC_OUTPUT(Makefile libmailbox/Makefile mail/Makefile pop3d/Makefile
55 libsrc/Makefile) 55 lib/Makefile doc/Makefile)
56 56
......
1 info_TEXINFOS = mailutils.texi
...@@ -7,4 +7,4 @@ pop3d_DEPENDENDENCIES = ../libmailbox/libmailbox.la ../lib/libgetopt.la\ ...@@ -7,4 +7,4 @@ pop3d_DEPENDENDENCIES = ../libmailbox/libmailbox.la ../lib/libgetopt.la\
7 pop3d_SOURCES = apop.c auth.c capa.c dele.c extra.c pop3d.c pop3d.h\ 7 pop3d_SOURCES = apop.c auth.c capa.c dele.c extra.c pop3d.c pop3d.h\
8 list.c noop.c quit.c retr.c rset.c stat.c top.c uidl.c user.c signal.c 8 list.c noop.c quit.c retr.c rset.c stat.c top.c uidl.c user.c signal.c
9 9
10 pop3d_LDADD = ../libmailbox/libmailbox.la ../libsrc/libmailutils.a @AUTHLIBS@ 10 pop3d_LDADD = ../libmailbox/libmailbox.la ../lib/libmailutils.a @AUTHLIBS@
......