pwman

Check-in [2c363d9771]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Add notes on how to use automake and autoconf
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | origin/tweaks | trunk
Files: files | file ages | folders
SHA3-256: 2c363d97714e9801d34ba0e2e89610beb2bff4c998c6d22c901e4850230f7930
User & Date: atomicules@lavabit.com 2012-11-30 10:14:36
Context
2013-03-22
16:58
Increase width of password dialog check-in: 71d7ff8675 user: atomicules@lavabit.com tags: origin/tweaks, trunk
2012-11-30
22:31
Update via aclocal again for Automake 1.12.5 check-in: ae3b1508d1 user: atomicules@lavabit.com tags: modernise, trunk
10:14
Add notes on how to use automake and autoconf check-in: 2c363d9771 user: atomicules@lavabit.com tags: origin/tweaks, trunk
09:52
Fix automake warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS') check-in: 938da36546 user: atomicules@lavabit.com tags: origin/tweaks, trunk
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to README.

27
28
29
30
31
32
33




















34
35
36
37
38
39
40
  % sudo apt-get install libc6-dev libncurses5-dev libxml2 gcc 

 Or on Fedora with:

  % sudo yum install glibc-devel ncurses-devel libxml2-devel gcc






















COMPILATION AND INSTALLATION

 All tasks related to compilation, deployment etc. are managed by the C
 utility make. First, configure the process: from within the top-level
 directory of the distribution run

  % ./configure







>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>







27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
  % sudo apt-get install libc6-dev libncurses5-dev libxml2 gcc 

 Or on Fedora with:

  % sudo yum install glibc-devel ncurses-devel libxml2-devel gcc


PRE-COMPILATION

 If building from the repository source, as opposed to a zipped (*.tar.gz)
 release it will be necessary to generate the Makefile and configure file in
 order to proceed with complition and installation. Run:

 % automake --add-missing

 Depening on your version of automake, you may receive a warning such as "You
 should recreate aclocal.m4 with aclocal and run automake again", in which case
 run:

 % aclocal 
 % automake --add-missing
 
 Finally run: 

 % autoconf

 
COMPILATION AND INSTALLATION

 All tasks related to compilation, deployment etc. are managed by the C
 utility make. First, configure the process: from within the top-level
 directory of the distribution run

  % ./configure