Changes between Version 44 and Version 45 of FAQ
- Timestamp:
- Sep 4, 2010, 3:47:19 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
FAQ
v44 v45 25 25 * '''Q: configure complains that some required files, like install-sh, cannot be found.''' 26 26 27 A: retry ./configureafter running27 A: retry {{{./configure}}} after running 28 28 {{{ 29 29 automake --add-missing 30 30 }}} 31 32 * '''Q: I get C++ compilation errors.''' 33 34 A: Make sure you use the proper compiler version (see [wiki:Requirements]). GNU folks have a relaxed view on backwards compatibility even with minor release changes, and we have experienced problems related to this in the past. 35 36 === PostgreSQL === 31 37 32 38 * '''Q: I get a link error, function ECPGget_connection cannot be found.''' … … 37 43 38 44 A: You need to include a different JDBC postgresql driver (as a JAR) in the libraries folder and update the Makefile as needed. Then you can try out another PostgreSQL version, it may or may not work. Let us know your experiences to update this information! 39 40 * '''Q: I get C++ compilation errors.'''41 42 A: Make sure you use the proper compiler version (see [wiki:Requirements]). GNU folks have a relaxed view on backwards compatibility even with minor release changes, and we have experienced such problems indeed.43 45 44 46 * '''Q: When running the script "create_db.sh", I get the following cryptic error message: ''Creating base RASBASE...Warning/error in AdminIf Connect: SQLSTATE: 08001 SQLCODE: -402'' '''