Code: Show/Hide # change this to the directory of your bdb 4.x install.
DB_HOME = /usr DB_INC = $(DB_HOME)/include DB_LIB = $(DB_HOME)/lib DB_CFLAGS = -I$(DB_INC) ifneq ($(link_db_statically),yes) # you might have to change -ldb-4 to -ldb4 in the next line: DB_LDFLAGS = -L$(DB_LIB) -Wl,-rpath,$(DB_LIB) -ldb-4 else DB_LDFLAGS = $(DB_LIB)/libdb.a endif # change this to the directory of your mysql install. MYSQL_HOME = /usr MYSQL_INC = $(MYSQL_HOME)/include/mysql MYSQL_LIB = $(MYSQL_HOME)/lib/mysql MYSQL_CFLAGS = -I$(MYSQL_INC) MYSQL_LDFLAGS = -L$(MYSQL_LIB) -Wl,-rpath,$(MYSQL_LIB) -lmysqlclient_r # change this to the location of your python 2.2 or higher install. PYTHON_HOME = /usr # change this to the major/minor version number of your python install. PYTHON_VERSION = 2.5 PYTHON_INC = $(PYTHON_HOME)/include/python$(PYTHON_VERSION) PYTHON_LIB = $(PYTHON_HOME)/lib/python$(PYTHON_VERSION) PYTHON_CFLAGS = -I$(PYTHON_INC) PYTHON_LDFLAGS = -L$(PYTHON_LIB)/config -lpython$(PYTHON_VERSION) $(UTIL_LIB) -lm |
Code: Show/Hide makedeps: warning: "pthread.h" not found
makedeps: warning: "zlib.h" not found makedeps: warning: "mysql.h" not found makedeps: warning: "db.h" not found makedeps: warning: "errno.h" not found makedeps: warning: "Python.h" not found makedeps: warning: "structmember.h" not found |
Code: Show/Hide blocks@subspace:~$ locate pthread.h
/usr/include/mysql/my_no_pthread.h /usr/include/mysql/my_pthread.h /usr/include/pthread.h blocks@subspace:~$ locate zlib.h /usr/include/zlib.h blocks@subspace:~$ locate mysql.h /usr/include/mysql/mysql.h blocks@subspace:~$ locate db.h /home/blocks/asss-1.4.4/src/include/reldb.h /usr/include/bits/netdb.h /usr/include/db.h /usr/include/linux/adb.h /usr/include/mysql/ndb/ndbapi/Ndb.hpp /usr/include/netdb.h /usr/include/rpc/netdb.h /usr/include/thread_db.h blocks@subspace:~$ locate errno.h /usr/include/asm/errno.h /usr/include/asm-generic/errno.h /usr/include/asm-i386/errno.h /usr/include/asm-x86_64/errno.h /usr/include/bits/errno.h /usr/include/errno.h /usr/include/linux/errno.h /usr/include/sys/errno.h blocks@subspace:~$ locate Python.h /usr/include/python2.5/Python.h blocks@subspace:~$ locate structmember.h /usr/include/python2.5/structmember.h |
Code: Show/Hide I <cmod> loading C module 'security' from 'security'
E <cmod> can't find file: security Unrecoverable error (5): Error in loading module 'security:security' |
Code: Show/Hide I <cmod> loading C module 'enc_cont' from 'security'
E <cmod> error loading module 'enc_cont' |