Skip to content

Commit bc7b2c3

Browse files
committed
build: Add README overlay. Explain build process.
1 parent ffedddf commit bc7b2c3

File tree

4 files changed

+36
-0
lines changed

4 files changed

+36
-0
lines changed

.gitignore

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
Makefile
2+
*~
3+
*.o
4+
*.swp
5+
6+
/autom4te.cache/
7+
/configure
8+
/config.h
9+
/config.log
10+
/config.status
11+
/install-sh
12+
/pam_imap.so

README renamed to README.orig

File renamed without changes.

README.rst

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
pam_imap for 2017+
2+
==================
3+
4+
This is an updated version of pam_imap 0.3.8, taken from
5+
http://pam-imap.sourceforge.net/. See README.orig for the original
6+
readme.
7+
8+
These files were mostly updated last in 2003, 2004 and imap.c in 2009.
9+
These edits might make it work in 2017 again.
10+
11+
12+
Compiling
13+
---------
14+
15+
Install prerequisites: libssl-dev libpam0g-dev zlib1g-dev
16+
17+
.. code-block:: console
18+
19+
# ./bootstrap
20+
# ./configure CPPFLAGS=-DVERIFY_CERT
21+

bootstrap

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/sh
2+
automake --add-missing 2>/dev/null || true # for install-sh
3+
autoreconf -ivf

0 commit comments

Comments
 (0)