source: git/doc/HACKING.htm @ 6127c82

RELEASE/1.2debug-cidebug-ci-sanitisersstereowalls-data
Last change on this file since 6127c82 was 6127c82, checked in by Olly Betts <olly@…>, 13 years ago

doc/HACKING.htm: Note Debian packages to install for docs.

git-svn-id: file:///home/survex-svn/survex/trunk@3584 4b37db11-9a0c-4f06-9ece-9ab7cdaee568

  • Property mode set to 100644
File size: 3.3 KB
Line 
1<HTML><HEAD>
2<TITLE>Survex Hacker's Guide</TITLE>
3<STYLE type="text/css"><!--
4BODY, TD, CENTER, UL, OL {font-family: sans-serif;}
5-->
6</STYLE>
7</HEAD><BODY BGCOLOR=white TEXT=black>
8<H1>Hacking Survex</H1>
9
10<p>(That's hacking in the "tinkering with code" sense, not in the
11"breaking into other people's computer systems" sense).
12
13<p>This is currently a random collection of notes that need to be written
14down while I remember.  With time it should evolve into a more
15coherent document.  If you have any questions which this should answer
16but doesn't then ask me and I'll add them.
17
18<H2>Network code debugging</H2>
19
20<P>You can pick which network simplifications are attempted using "-z"
21with an argument listing code letters.  So:
22
23<ul>
24<li>-z=    no special simplifications (articulation still performed)
25<li>-z=l   remove "lollipops"
26<li>-z=p   remove parallel legs
27<li>-z=d   convert deltas to stars
28</ul>
29
30<P>And you can combine these in any combination:
31
32<ul>
33<li>-z=lp  remove "lollipops" and parallel legs
34<li>-z=lpd remove "lollipops" and parallel legs; convert deltas to stars
35</ul>
36
37<P>"-z=lpd" is the default (in 0.99 at least - more transformations may
38conceivably be added in future, although the simple common cases are
39already covered).
40
41<H2>Developing on Unix Platforms</H2>
42
43<P>You'll need automake 1.5 or later (earlier versions don't support
44per-executable CFLAGS; 1.6 has been tested and works, but wasn't a
45very stable release - automake 1.6.1 is a better bet)
46and autoconf 2.50 or later (autoconf 2.52, 2.53 and 2.64 have all
47been used successfully).
48
49<P>For building the documentation you'll need sgmltools 2 or later,
50jadetex, docbook-to-man, and w3m.
51
52<P>On debian squeeze: sudo apt-get install sgmltools-lite jadetex docbook-to-man w3m
53
54<H2>Building on Non-Unix Platforms</H2>
55
56<H3>Mingw (Microsoft Windows)</H3>
57
58<P>Currently I build this with a Linux hosted cross-compiler.  I use
59the packaged cross-compiler in the debian testing/unstable distribution.
60You can probably install these on other distributions using alien to
61convert them to RPMs or similar.
62
63<P>Building on Windows in a native mingw environment will probably
64require tinkering.  Best bet is probably to install bash and use the
65current configure script.  I'm happy to help if you want to try this,
66and I'll incorporate patches provided they're fairly clean.
67
68<H2>Microsoft Windows Installer Builder</H2>
69
70<P>We use <A HREF="http://www.jrsoftware.org/isinfo.php">InnoSetup</A> to
71build the MS Windows Installer.  Survex 1.1.3 was built using InnoSetup
725.3.9 (non-unicode version, so that the installer works on older versions
73of Microsoft Windows).
74
75<P>Here are some random notes:
76
77<H3>Translations</H3>
78
79<P>In addition to the translations included with InnoSetup as standard, we also
80add these, which you can find in the <code>lib</code> subdirectory of Xapian's
81SVN tree:
82
83<UL>
84<LI>English_GB.isl (unofficial, done by Olly)
85<LI>Romanian-7-5.1.11.isl (unofficial, asked Cristian to check it over)
86</UL>
87
88<H3>survex.iss</H3>
89
90<P>This file is generated by configure (from the template survex.iss.in).
91We could instead have a static survex.iss which uses #include to pull in
92a file with the Survex version info in, but the current method works well
93enough so we'll stick with it for now (I suspect #include was introduced since
94we started using InnoSetup).
95
96</BODY></HTML>
Note: See TracBrowser for help on using the repository browser.