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
21d7c022
...
21d7c0226bd9697fb8c77804f9285b31d89f103e
authored
1999-10-13 17:32:06 +0000
by
Jeff Bailey
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Always install library, add -pedantic to libmailbox CPPFLAGS
1 parent
f36d1f9e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
12 deletions
ChangeLog
configure.in
libmailbox/Makefile.am
ChangeLog
View file @
21d7c02
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
...
...
configure.in
View file @
21d7c02
...
...
@@ -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\
...
...
libmailbox/Makefile.am
View file @
21d7c02
# 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
...
...
Please
register
or
sign in
to post a comment