Changes between Version 60 and Version 61 of FAQ


Ignore:
Timestamp:
Jul 21, 2011, 10:42:14 AM (13 years ago)
Author:
Peter Baumann
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • FAQ

    v60 v61  
    22
    33= How-To and FAQ =
     4
     5Here you find:
     6[http://kahlua.eecs.jacobs-university.de/trac/rasdaman/wiki/FAQ#QuestionsandAnswers Questions and Answers]
     7[http://kahlua.eecs.jacobs-university.de/trac/rasdaman/wiki/FAQ#SubmittingPatches Submitting Patches]
     8
    49
    510You may want to consult these sources of information in addition:
     
    2833    A: retry {{{./configure}}} after running
    2934{{{
    30 automake --add-missing
     35$ automake --add-missing
    3136}}}
    3237
     
    3540    A: retry {{{./configure}}} after running
    3641{{{
    37 autoreconf
    38 automake
     42$ autoreconf
     43$ automake
    3944}}}
    4045
     
    138143   A: HDF4 needs to be compiled in explicitly. Re-generate rasdaman saying
    139144{{{
    140 autoreconf;
    141 ./configure --with-hdf4 ...other options...
     145$ autoreconf;
     146$ ./configure --with-hdf4 ...other options...
    142147}}}
    143148
    144149
     150=== Submitting Patches ===
     151
     152 * '''Q: I want to submit a patch, how do I do this?
     153A: Follow these steps:
     154  * Set your credentials:
     155{{{
     156$ git config user.name "Konstantin Kozlov"
     157$ git config user.email ...
     158}}}
     159  * When you commit your changes to your local copy put a meaningful message:
     160{{{
     161$ git commit -a -m "commit message"
     162}}}
     163      * Then you can make the patch, e.g:
     164{{{
     165$ git-format-patch HEAD~1
     166}}}