Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
b9440f36
...
b9440f361f62cf36bb720300ce4facab06bbb659
authored
1999-11-09 07:15:38 +0000
by
Sean 'Shaleh' Perry
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
did some work on the automagic for non-Linux systems
1 parent
fb600737
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
17 additions
and
4 deletions
ChangeLog
configure.in
libmailbox/mailbox.h
mail/Makefile.am
pop3d/Makefile.am
ChangeLog
View file @
b9440f3
1999-11-08 Sean 'Shaleh' Perry <shaleh@debian.org>
* cleaned up some of the auto{make,conf} magic for non-Linux
1999-11-07 Sean 'Shaleh' Perry <shaleh@debian.org>
* TODO: restructuring, now split into sections
...
...
configure.in
View file @
b9440f3
...
...
@@ -45,6 +45,13 @@ fi
AC_SUBST(AUTHLIBS)
dnl Do we need extra libs for networking?
AC_CHECK_FUNC(gethostbyname, [true],
AC_CHECK_LIB(nsl, gethostbyaddr, LIBS="-lnsl $LIBS"))
AC_CHECK_FUNC(socket, [true],
AC_CHECK_LIB(socket, socket, LIBS="-lsocket $LIBS"))
dnl Output Makefiles
AC_OUTPUT(Makefile libmailbox/Makefile mail/Makefile pop3d/Makefile
imap4d/Makefile lib/Makefile doc/Makefile)
...
...
libmailbox/mailbox.h
View file @
b9440f3
...
...
@@ -68,7 +68,7 @@ typedef struct _mailbox
int
(
*
_add_message
)
__P
((
struct
_mailbox
*
,
char
*
));
int
(
*
_scan
)
__P
((
struct
_mailbox
*
));
int
(
*
_is_deleted
)
__P
((
struct
_mailbox
*
,
unsigned
int
));
int
(
*
_is_updated
)
__P
((
struct
mailbox
*
));
int
(
*
_is_updated
)
__P
((
struct
_
mailbox
*
));
int
(
*
_lock
)
__P
((
struct
_mailbox
*
,
mailbox_lock_t
));
char
*
(
*
_get_body
)
__P
((
struct
_mailbox
*
,
unsigned
int
));
char
*
(
*
_get_header
)
__P
((
struct
_mailbox
*
,
unsigned
int
));
...
...
mail/Makefile.am
View file @
b9440f3
CPPFLAGS
=
-I
$(top_srcdir)
/libmailbox -Wall -pedantic -g -DTESTING
CFLAGS
=
-Wall -pedantic -g -DTESTING
INCLUDES
=
-I
$(top_srcdir)
/libmailbox -I
$(top_srcdir)
/lib
bin_PROGRAMS
=
mail
mail_DEPENDENCIES
=
../libmailbox/libmailbox.la
mail_LDADD
=
../libmailbox/libmailbox.la
mail_LDADD
=
../libmailbox/libmailbox.la
../lib/libmailutils.a
...
...
pop3d/Makefile.am
View file @
b9440f3
...
...
@@ -6,4 +6,5 @@ sbin_PROGRAMS = pop3d
pop3d_SOURCES
=
apop.c auth.c capa.c dele.c extra.c pop3d.c pop3d.h
\
list.c noop.c quit.c retr.c rset.c stat.c top.c uidl.c user.c signal.c
pop3d_LDADD
=
../libmailbox/libmailbox.la ../lib/libmailutils.a @AUTHLIBS@
pop3d_LDADD
=
../libmailbox/libmailbox.la ../lib/libmailutils.a
\
@AUTHLIBS@
...
...
Please
register
or
sign in
to post a comment