Changeset 1842
- Timestamp:
- 10/19/06 16:28:56 (2 years ago)
- Files:
-
- trunk/swish-e/README.cvs (modified) (2 diffs)
- trunk/swish-e/pod/CHANGES.pod (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/swish-e/README.cvs
r1762 r1842 145 145 basically the swish_website script (bin/build) needs to know where to find the 146 146 source for both the release and the current development builds. This is currently done by 147 two symlinks "swishsrc" and "develsrc". develsrc points to the daily build directory: 147 two symlinks "swishsrc" and "develsrc". develsrc points to the daily build directory. 148 The symlinks go in the swish_website directory: 148 149 149 150 … … 283 284 284 285 286 Developer Hints 287 =============== 288 289 There's a bunch of debugging techniques, but I do this: 290 291 $ ./configure --prefix=$HOME/swt --enable-memtrace CFLAGS='-O0 -g' 292 $ make install 293 294 Then I cd to src and create a test config 295 296 $ gdb ~/swt/bin/swish-e 297 run -c c -i test.doc 298 299 Changes to source in another window and in gdb "make install" will 300 build without having to exit. trunk/swish-e/pod/CHANGES.pod
r1831 r1842 6 6 7 7 This document contains list of bug fixes and feature additions to Swish-e. 8 9 =head2 Version 2.4.x - 10 11 =over 4 12 13 =item Now fork/exec to run filters 14 15 FileFilter* was using popen to run the filter, which could pass user 16 data though the shell. Now uses fork/exec if fork is available which 17 should be everywhere except Windows. In windows popen is used but all 18 parameters are double-quoted. -- moseley 19 20 =back 8 21 9 22 =head2 Version 2.4.4 - 11 Oct 2006
