Added mailbox/ subdirectories
Showing
2 changed files
with
22 additions
and
18 deletions
... | @@ -344,7 +344,7 @@ AC_ARG_WITH([included-argp], | ... | @@ -344,7 +344,7 @@ AC_ARG_WITH([included-argp], |
344 | [USE_INCLUDED_ARGP=${withval}], | 344 | [USE_INCLUDED_ARGP=${withval}], |
345 | [AC_CHECK_FUNCS(argp_parse, :, [USE_INCLUDED_ARGP=yes])]) | 345 | [AC_CHECK_FUNCS(argp_parse, :, [USE_INCLUDED_ARGP=yes])]) |
346 | 346 | ||
347 | if test $USE_INCLUDED_ARGP = yes; then | 347 | if test "$USE_INCLUDED_ARGP" = yes; then |
348 | MU_LIBOBJ(argp-ba) | 348 | MU_LIBOBJ(argp-ba) |
349 | MU_LIBOBJ(argp-eexst) | 349 | MU_LIBOBJ(argp-eexst) |
350 | MU_LIBOBJ(argp-fmtstream) | 350 | MU_LIBOBJ(argp-fmtstream) |
... | @@ -667,6 +667,11 @@ AC_CONFIG_FILES([Makefile mailutils.spec | ... | @@ -667,6 +667,11 @@ AC_CONFIG_FILES([Makefile mailutils.spec |
667 | lib/Makefile lib/posix/Makefile | 667 | lib/Makefile lib/posix/Makefile |
668 | testsuite/Makefile | 668 | testsuite/Makefile |
669 | mailbox/Makefile | 669 | mailbox/Makefile |
670 | mailbox/mbox/Makefile | ||
671 | mailbox/mh/Makefile | ||
672 | mailbox/maildir/Makefile | ||
673 | mailbox/pop/Makefile | ||
674 | mailbox/imap/Makefile | ||
670 | mailbox/testsuite/Makefile | 675 | mailbox/testsuite/Makefile |
671 | examples/Makefile | 676 | examples/Makefile |
672 | auth/Makefile | 677 | auth/Makefile | ... | ... |
... | @@ -20,7 +20,7 @@ | ... | @@ -20,7 +20,7 @@ |
20 | INCLUDES = -I${top_srcdir}/include -I${top_srcdir}/mailbox -I${top_srcdir}/mailbox/include -I${top_srcdir}/include/mailutils/gnu @INTLINCS@ | 20 | INCLUDES = -I${top_srcdir}/include -I${top_srcdir}/mailbox -I${top_srcdir}/mailbox/include -I${top_srcdir}/include/mailutils/gnu @INTLINCS@ |
21 | AM_CFLAGS = -DSITE_VIRTUAL_PWDDIR=\"@SITE_VIRTUAL_PWDDIR@\" | 21 | AM_CFLAGS = -DSITE_VIRTUAL_PWDDIR=\"@SITE_VIRTUAL_PWDDIR@\" |
22 | 22 | ||
23 | SUBDIRS = include testsuite | 23 | SUBDIRS = include mbox pop imap mh maildir testsuite |
24 | 24 | ||
25 | lib_LTLIBRARIES = libmailbox.la | 25 | lib_LTLIBRARIES = libmailbox.la |
26 | bin_PROGRAMS = mailutils-config | 26 | bin_PROGRAMS = mailutils-config |
... | @@ -28,7 +28,7 @@ bin_PROGRAMS = mailutils-config | ... | @@ -28,7 +28,7 @@ bin_PROGRAMS = mailutils-config |
28 | localedir = $(datadir)/locale | 28 | localedir = $(datadir)/locale |
29 | DEFS = @DEFS@ -DLOCALEDIR=\"$(localedir)\" | 29 | DEFS = @DEFS@ -DLOCALEDIR=\"$(localedir)\" |
30 | 30 | ||
31 | EXTRA_DIST = mbx_mboxscan.c strtok_r.c \ | 31 | EXTRA_DIST = strtok_r.c \ |
32 | strndup.c strnlen.c strchrnul.c argp-ba.c argp-eexst.c \ | 32 | strndup.c strnlen.c strchrnul.c argp-ba.c argp-eexst.c \ |
33 | argp-fmtstream.c argp-fs-xinl.c argp-help.c argp-parse.c argp-pv.c \ | 33 | argp-fmtstream.c argp-fs-xinl.c argp-help.c argp-parse.c argp-pv.c \ |
34 | argp-pvh.c argp-xinl.c getline.c getline.h pin.c | 34 | argp-pvh.c argp-xinl.c getline.c getline.h pin.c |
... | @@ -50,10 +50,6 @@ filter.c \ | ... | @@ -50,10 +50,6 @@ filter.c \ |
50 | filter_rfc822.c \ | 50 | filter_rfc822.c \ |
51 | filter_trans.c \ | 51 | filter_trans.c \ |
52 | folder.c \ | 52 | folder.c \ |
53 | folder_imap.c \ | ||
54 | folder_mbox.c \ | ||
55 | folder_mh.c \ | ||
56 | folder_pop.c \ | ||
57 | header.c \ | 53 | header.c \ |
58 | iterator.c \ | 54 | iterator.c \ |
59 | list.c \ | 55 | list.c \ |
... | @@ -64,11 +60,6 @@ mailer.c \ | ... | @@ -64,11 +60,6 @@ mailer.c \ |
64 | mapfile_stream.c \ | 60 | mapfile_stream.c \ |
65 | mbx_default.c \ | 61 | mbx_default.c \ |
66 | mbx_file.c \ | 62 | mbx_file.c \ |
67 | mbx_imap.c \ | ||
68 | mbx_maildir.c \ | ||
69 | mbx_mbox.c \ | ||
70 | mbx_mh.c \ | ||
71 | mbx_pop.c \ | ||
72 | md5.c \ | 63 | md5.c \ |
73 | message.c \ | 64 | message.c \ |
74 | memory_stream.c \ | 65 | memory_stream.c \ |
... | @@ -93,17 +84,25 @@ tcp.c \ | ... | @@ -93,17 +84,25 @@ tcp.c \ |
93 | ticket.c \ | 84 | ticket.c \ |
94 | url.c \ | 85 | url.c \ |
95 | url_file.c \ | 86 | url_file.c \ |
96 | url_imap.c \ | ||
97 | url_mbox.c \ | ||
98 | url_mh.c \ | ||
99 | url_path.c \ | 87 | url_path.c \ |
100 | url_pop.c \ | ||
101 | url_sendmail.c \ | 88 | url_sendmail.c \ |
102 | url_smtp.c \ | 89 | url_smtp.c \ |
103 | wicket.c | 90 | wicket.c |
104 | 91 | ||
105 | libmailbox_la_DEPENDENCIES = @MU_LTLIBOBJS@ | 92 | libmailbox_la_DEPENDENCIES = \ |
106 | libmailbox_la_LIBADD = @MU_LTLIBOBJS@ @LTLIBINTL@ | 93 | mbox/libmbox.la\ |
94 | pop/libpop.la\ | ||
95 | imap/libimap.la\ | ||
96 | mh/libmh.la\ | ||
97 | maildir/libmaildir.la\ | ||
98 | @MU_LTLIBOBJS@ | ||
99 | libmailbox_la_LIBADD = \ | ||
100 | mbox/libmbox.la\ | ||
101 | pop/libpop.la\ | ||
102 | imap/libimap.la\ | ||
103 | mh/libmh.la\ | ||
104 | maildir/libmaildir.la\ | ||
105 | @MU_LTLIBOBJS@ @LTLIBINTL@ | ||
107 | libmailbox_la_LDFLAGS = -version-info 0:0:0 | 106 | libmailbox_la_LDFLAGS = -version-info 0:0:0 |
108 | 107 | ||
109 | mailutils_config_SOURCES = mailutils-config.c | 108 | mailutils_config_SOURCES = mailutils-config.c | ... | ... |
-
Please register or sign in to post a comment