Changeset 1842

Show
Ignore:
Timestamp:
10/19/06 16:28:56 (2 years ago)
Author:
whmoseley
Message:

*** empty log message ***

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/swish-e/README.cvs

    r1762 r1842  
    145145basically the swish_website script (bin/build) needs to know where to find the 
    146146source 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: 
     147two symlinks "swishsrc" and "develsrc".  develsrc points to the daily build directory. 
     148The symlinks go in the swish_website directory: 
    148149 
    149150 
     
    283284 
    284285 
     286Developer Hints 
     287=============== 
     288 
     289There'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 
     294Then I cd to src and create a test config 
     295 
     296$ gdb ~/swt/bin/swish-e 
     297run -c c -i test.doc 
     298 
     299Changes to source in another window and in gdb "make install" will 
     300build without having to exit. 
  • trunk/swish-e/pod/CHANGES.pod

    r1831 r1842  
    66 
    77This 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 
     15FileFilter* was using popen to run the filter, which could pass user 
     16data though the shell.  Now uses fork/exec if fork is available which 
     17should be everywhere except Windows.  In windows popen is used but all 
     18parameters are double-quoted. -- moseley 
     19 
     20=back 
    821 
    922=head2 Version 2.4.4 - 11 Oct 2006