Commit 21d7c022 21d7c0226bd9697fb8c77804f9285b31d89f103e by Jeff Bailey

Always install library, add -pedantic to libmailbox CPPFLAGS

1 parent f36d1f9e
1999-10-11 Jeff Bailey <jbailey@cr499794-a.crdva1.bc.wave.home.com>
* libmailbox/Makefile.am: Remove no-install option, add -pedantic
1999-10-12 Sean 'Shaleh' Perry <shaleh@debian.org>
* made sure that the imap4 was REALLY broken
......@@ -6,7 +10,8 @@
* imap4d/Makefile.am: New file
* configure.in: Create imap4d/Makefile
* configure.in: Create imap4d/Makefile, and no install option
for library
* pop3d/Makefile.am: Add warnings, remove unneeded variable
......
......@@ -10,9 +10,6 @@ AC_PROG_LN_S
AM_PROG_LIBTOOL
dnl Check for arguments
AC_ARG_ENABLE(mailbox-install,
[ --enable-mailbox-install install libmailbox])
AC_ARG_ENABLE(pam,
[ --disable-pam disable pam],
[case "${enableval}" in
......@@ -21,8 +18,6 @@ AC_ARG_ENABLE(pam,
*) AC_MSG_ERROR(bad value ${enableval} for --disable-pam) ;;
esac],[testpam=yes])
AM_CONDITIONAL(INSTALL_MAILBOX, test x"${enable_mailbox_install-no}" != xno)
dnl Check for headers
AC_HEADER_STDC
AC_CHECK_HEADERS(malloc.h stdlib.h stdio.h errno.h unistd.h\
......
# Use automake to process this file -*-Makefile-*-
CPPFLAGS = -Wall
CPPFLAGS = -Wall -pedantic
if INSTALL_MAILBOX
include_HEADERS = mailbox.h
lib_LTLIBRARIES = libmailbox.la
else
noinst_HEADERS = mailbox.h
noinst_LTLIBRARIES = libmailbox.la
endif
libmailbox_la_SOURCES = mailbox.c unixmbox.c unixmbox.h
libmailbox_la_LDFLAGS = -version-info 0:0:0
......