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
6f2e533e
...
6f2e533ef9c42a96266fad30cac2a964d8903022
authored
1999-10-08 02:04:00 +0000
by
Jeff Bailey
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Fix pop3d compile problems
1 parent
7962bf1b
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
26 additions
and
11 deletions
ChangeLog
Makefile.am
configure.in
lib/Makefile.am
pop3d/Makefile.am
ChangeLog
View file @
6f2e533
1999-10-07 Jeff Bailey <jbailey@cr499794-a.crdva1.bc.wave.home.com>
* Makefile.am: Compile libsrc/ first.
* pop3d/Makefile.am: Link properly with crypt and libmailutils.a
from libsrc/
* libsrc/Makefile.am: Produce one library for all functions.
Do not use libtool for this library, it will never be shared.
* configure.in: Remove AM_MAINTAINER_MODE. Export crypt detection
to Makefiles
Sean 'Shaleh' Perry <shaleh@debian.org> Thu, 7 Oct 1999 18:31:57 -0700
* included my read_a_line() in examples/
...
...
Makefile.am
View file @
6f2e533
AUTOMAKE_OPTIONS
=
gnu 1.4
SUBDIRS
=
lib
mailbox mail pop3d libsrc
SUBDIRS
=
lib
src libmailbox mail pop3d
...
...
configure.in
View file @
6f2e533
...
...
@@ -2,7 +2,6 @@ dnl Process this file with autoconf to procude a configure script. -*-m4-*-
AC_INIT(libmailbox/mailbox.c)
AM_INIT_AUTOMAKE(mailutils, 0.9.7.1999.09.12)
AM_CONFIG_HEADER(config.h)
AM_MAINTAINER_MODE
dnl Check for programs
AC_PROG_CC
...
...
@@ -28,13 +27,15 @@ if test x"$ac_cv_header_security_pam_appl_h" = x"yes"; then
AM_CONDITIONAL(USE_LIBPAM, test x"$ac_cv_have_libpam" != xno)
##fi
##if test x"$ac_cv_have_libpam" != x"yes"; then
else
AC_CHECK_FUNCS(crypt)
if test x"$ac_cv_func_crypt" = x"no"; then
AC_CHECK_LIB(crypt, crypt, AUTHLIBS="-lcrypt",, -lcrypt)
fi
fi
AC_CHECK_FUNCS(crypt)
if test x"$ac_cv_func_crypt" = x"no"; then
AC_CHECK_LIB(crypt, crypt, AUTHLIBS="-lcrypt",, -lcrypt)
fi
AC_SUBST(AUTHLIBS)
dnl Output Makefiles
AC_OUTPUT(Makefile libmailbox/Makefile mail/Makefile pop3d/Makefile
libsrc/Makefile)
...
...
lib/Makefile.am
View file @
6f2e533
noinst_L
TLIBRARIES
=
libgetopt.la libmd5.l
a
noinst_L
IBRARIES
=
libmailutils.
a
libgetopt_la_SOURCES
=
getopt.c getopt.h getopt1.c
libmailutils_a_SOURCES
=
getopt.c getopt1.c md5.c
noinst_HEADERS
=
getopt.h md5.h
libmd5_la_SOURCES
=
md5.c md5.h
\ No newline at end of file
...
...
pop3d/Makefile.am
View file @
6f2e533
...
...
@@ -12,4 +12,4 @@ pop3d_SOURCES = apop.c auth.c capa.c dele.c extra.c pop3d.c pop3d.h\
#else
#pop3d_LDADD = ../libmailbox/libmailbox.la
#endif
pop3d_L
ADADD
=
../libmailbox/libmailbox.la
$(AUTHLIBS)
pop3d_L
DADD
=
../libmailbox/libmailbox.la ../libsrc/libmailutils.a @AUTHLIBS@
...
...
Please
register
or
sign in
to post a comment