config.in
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. # Filename: config.in
  2. #
  3. # written by Paul Marquess <Paul.Marquess@btinternet.com>
  4. # 1. Where is the file db.h?
  5. #
  6. #    Change the path below to point to the directory where db.h is
  7. #    installed on your system.
  8. #INCLUDE = /usr/local/include
  9. #INCLUDE = /usr/local/BerkeleyDB/include
  10. #INCLUDE = ./libraries/2.7.5
  11. #INCLUDE = ./libraries/3.0.55
  12. #INCLUDE = ./libraries/3.1.17
  13. INCLUDE = ./libraries/3.2.7
  14. # 2. Where is libdb?
  15. #
  16. #    Change the path below to point to the directory where libdb is
  17. #    installed on your system.
  18. #LIB = /usr/local/lib
  19. #LIB = /usr/local/BerkeleyDB/lib
  20. #LIB = ./libraries/2.7.5
  21. #LIB = ./libraries/3.0.55
  22. #LIB = ./libraries/3.1.17
  23. LIB = ./libraries/3.2.7
  24. # 3. Is the library called libdb?
  25. #
  26. #    If you have copies of both 1.x and 2.x Berkeley DB installed on
  27. #    your system it can sometimes be tricky to make sure you are using
  28. #    the correct one. Renaming one (or creating a symbolic link) to
  29. #    include the version number of the library can help.
  30. #
  31. #    For example, if you have Berkeley DB 2.6.4  you could rename the
  32. #    Berkeley DB library from libdb.a to libdb-2.6.4.a  and change the
  33. #    DBNAME line below to look like this:
  34. #
  35. #        DBNAME = -ldb-2.6.4 
  36. #
  37. #    Note: If you are building this module with Win32, -llibdb will be
  38. #    used by default.
  39. #
  40. #    If you have changed the name of the library, uncomment the line
  41. #    below (by removing the leading #) and edit the line to use the name
  42. #    you have picked.
  43. #DBNAME = -ldb-3.0
  44. # end of file config.in