Changes between Version 60 and Version 61 of FAQ
- Timestamp:
- Jul 21, 2011, 10:42:14 AM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
FAQ
v60 v61 2 2 3 3 = How-To and FAQ = 4 5 Here 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 4 9 5 10 You may want to consult these sources of information in addition: … … 28 33 A: retry {{{./configure}}} after running 29 34 {{{ 30 automake --add-missing35 $ automake --add-missing 31 36 }}} 32 37 … … 35 40 A: retry {{{./configure}}} after running 36 41 {{{ 37 autoreconf38 automake42 $ autoreconf 43 $ automake 39 44 }}} 40 45 … … 138 143 A: HDF4 needs to be compiled in explicitly. Re-generate rasdaman saying 139 144 {{{ 140 autoreconf;141 ./configure --with-hdf4 ...other options...145 $ autoreconf; 146 $ ./configure --with-hdf4 ...other options... 142 147 }}} 143 148 144 149 150 === Submitting Patches === 151 152 * '''Q: I want to submit a patch, how do I do this? 153 A: 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 }}}