Difference between revisions of "System.mk"
From ASSS Wiki
I88gerbils (talk | contribs) (ASSS Makefile) |
m (Formatting) |
||
Line 1: | Line 1: | ||
== Build Options == | == Build Options == | ||
− | debug = yes | + | <pre> |
− | opt = no | + | debug = yes |
− | prof = no | + | opt = no |
− | link_db_statically = no< | + | prof = no |
+ | link_db_statically = no | ||
+ | </pre> | ||
== Library Options == | == Library Options == | ||
− | have_bdb = yes | + | <pre> |
− | have_mysql = yes | + | have_bdb = yes |
− | have_python = yes< | + | have_mysql = yes |
+ | have_python = yes | ||
+ | </pre> | ||
== Library Paths == | == Library Paths == | ||
− | DB_HOME = /opt/db-4.0.14 | + | <pre> |
− | MYSQL_HOME = /opt/mysql | + | DB_HOME = /opt/db-4.0.14 |
+ | MYSQL_HOME = /opt/mysql | ||
MYSQL_LDFLAGS = -L$(MYSQL_LIB) -Wl,-rpath,$(MYSQL_LIB) -lmysqlclient_r | MYSQL_LDFLAGS = -L$(MYSQL_LIB) -Wl,-rpath,$(MYSQL_LIB) -lmysqlclient_r | ||
− | + | </pre> | |
− | * If you built MySQL without pthreads then change '''-lmysqlclient_r | + | * If you built MySQL without pthreads then change '''-lmysqlclient_r''' to '''-lmysqlclient'''. |
− | + | <pre> | |
− | PYTHON_HOME = /opt/python-2.2.2 | + | PYTHON_HOME = /opt/python-2.2.2 |
PYTHON_VERSION = 2.2 | PYTHON_VERSION = 2.2 | ||
+ | </pre> |
Revision as of 16:17, 11 January 2005
Build Options
debug = yes opt = no prof = no link_db_statically = no
Library Options
have_bdb = yes have_mysql = yes have_python = yes
Library Paths
DB_HOME = /opt/db-4.0.14 MYSQL_HOME = /opt/mysql MYSQL_LDFLAGS = -L$(MYSQL_LIB) -Wl,-rpath,$(MYSQL_LIB) -lmysqlclient_r
- If you built MySQL without pthreads then change -lmysqlclient_r to -lmysqlclient.
PYTHON_HOME = /opt/python-2.2.2 PYTHON_VERSION = 2.2