Server Help

ASSS Questions - Compiling AS3 on ubuntu.

Anonymous - Mon Jun 25, 2007 10:36 pm
Post subject: Compiling AS3 on ubuntu.
I managed to monotone the latest version of AS3 with a nice ubuntu extension.

I also installed KDevelop: C/C++, I am assuming this is the correct application.

This is my first attempt compiling anything on Linux, but I am familliar with compiling on windows using Dev C++.
KDev is not designed the same way, and I was wondering if someone could give me a breif but fluent explanation of compiling AS3 with KDev C++



Also, I wish to include the hyperspace core modules.
http://forums.minegoboom.com/viewtopic.php?t=7409
Will I need to include this in the compilation?
Dr Brain - Mon Jun 25, 2007 11:46 pm
Post subject:
Don't use an ide. Go to the command line and:

cd /path/to/asss
cd src
make
Anonymous - Tue Jun 26, 2007 12:19 am
Post subject:
Okay, compile error here.

jesse@Ubuntu:~/Desktop/asss-1.4.3/src$ make
gcc -std=gnu99 -pipe -I. -Iinclude -I/home/jesse/Desktop/asss-1.4.3/build -D_REENTRANT -D_GNU_SOURCE -fPIC -g -Wall -c -o /home/jesse/Desktop/asss-1.4.3/build/core.o core/core.c
core/core.c:17:18: error: zlib.h: No such file or directory
core/core.c: In function ?get_checksum?:
core/core.c:97: error: ?uLong? undeclared (first use in this function)
core/core.c:97: error: (Each undeclared identifier is reported only once
core/core.c:97: error: for each function it appears in.)
core/core.c:97: error: syntax error before ?crc?
core/core.c:103: error: ?crc? undeclared (first use in this function)
core/core.c:103: warning: implicit declaration of function ?crc32?
core/core.c:107: warning: control reaches end of non-void function
core/core.c: In function ?PLogin?:
core/core.c:526: warning: pointer targets in initialization differ in signedness
core/core.c:526: warning: pointer targets in initialization differ in signedness
core/core.c: In function ?SendLoginResponse?:
core/core.c:783: warning: pointer targets in passing argument 1 of ?astrncpy? differ in signedness
core/core.c:784: warning: pointer targets in passing argument 1 of ?strlen? differ in signedness
core/core.c:790: warning: pointer targets in passing argument 2 of ?net->SendToOne? differ in signedness
make: *** [/home/jesse/Desktop/asss-1.4.3/build/core.o] Error 1
Anonymous - Tue Jun 26, 2007 12:33 am
Post subject:
Well try 'make deps' and then 'make'.

You could also comment out a few have lines in the makefile. (System.mk I think?)

Like have_python = no. Just comment out things like that if they aren't setup. MySQL, bdb, ect.

Sorry I'm on a different pc so I can't check it out right now.
Animate Dreams - Tue Jun 26, 2007 12:34 am
Post subject:
He's done that BD, that's the result from "make". He's also already commented out all 3 of those in system.mk.
Grelminar - Tue Jun 26, 2007 2:19 am
Post subject:
You need to install package zlib1g-dev or similar. While you're at it, grab the -dev packages for your versions of python, mysql, and libdb.
BDwinsAlt - Tue Jun 26, 2007 3:04 am
Post subject:
Animate Dreams wrote:
He's done that BD, that's the result from "make". He's also already commented out all 3 of those in system.mk.


Just trying to be helpful. icon_mad.gif
Anonymous - Tue Jun 26, 2007 3:37 am
Post subject:
Thanks grel, compiled fine, I think. Now that it compiled did it produce new server files? Did it just replace the files in the directory above /src?
Anonymous - Tue Jun 26, 2007 3:38 am
Post subject:
Nevermind, It goes to build duh.
Anonymous - Tue Jun 26, 2007 3:46 am
Post subject:
I can't seem to get the right command to execute bin/asss.
BDwinsAlt - Tue Jun 26, 2007 4:46 am
Post subject:
In your MAIN asss path type: ./bin/asss
Dr Brain - Tue Jun 26, 2007 7:00 am
Post subject:
Aquarius:

cd path/to/asss
bin/asss

Once you've done that, you should be able to put the hyperspace modules directly into path/to/asss/src, then type "make deps" and "make".
Animate Dreams - Tue Jun 26, 2007 9:35 am
Post subject:
BDwinsAlt wrote:
[..]



Just trying to be helpful. icon_mad.gif


Lol, so was I. I was answering for him, since we were talking on AIM.

Anyway, as for starting asss, I always just cd to the AS3 root and type ./scripts/run-asss . You have to modify the script(it's a text file) first, right at the top, so it knows the path to the root of your AS3 installation. I don't know if I already set your script up or not. I did in one of your AS3 folders, but I don't remember if it was the right one. =\
Anonymous - Tue Jun 26, 2007 12:05 pm
Post subject:
This is after putting the folder hscore in /src.
Code: Show/Hide
gcc -std=gnu99 -pipe -I. -Iinclude -I/home/jesse/Desktop/asss-1.4.3/build  -D_REENTRANT -D_GNU_SOURCE -fPIC -g -Wall   -c -o /home/jesse/Desktop/asss-1.4.3/build/statcodes.o scoring/statcodes.c
gcc -std=gnu99 -pipe -I. -Iinclude -I/home/jesse/Desktop/asss-1.4.3/build  -D_REENTRANT -D_GNU_SOURCE -fPIC -g -Wall   -I/opt/db-4.0.14/include  -fPIC  \
                -DNODQ -DNOTREAP -DNOSTRINGCHUNK -DNOMPQUEUE -DNOMMAP \
                -o /home/jesse/Desktop/asss-1.4.3/build/dbtool /home/jesse/Desktop/asss-1.4.3/build/statcodes.o main/util.c main/dbtool.c -L/opt/db-4.0.14/lib -Wl,-rpath,/opt/db-4.0.14/lib -ldb-4
main/dbtool.c: In function ?print_quoted?:
main/dbtool.c:177: warning: pointer targets in passing argument 1 of ?strchr? differ in signedness
main/dbtool.c:178: warning: pointer targets in passing argument 1 of ?fputs? differ in signedness
main/dbtool.c: In function ?stats_print_stats?:
main/dbtool.c:445: warning: pointer targets in passing argument 1 of ?print_quoted? differ in signedness
gcc -std=gnu99 -pipe -I. -Iinclude -I/home/jesse/Desktop/asss-1.4.3/build  -D_REENTRANT -D_GNU_SOURCE -fPIC -g -Wall   -I/opt/mysql/include -c -o /home/jesse/Desktop/asss-1.4.3/build/mysql.o database/mysql.c
database/mysql.c:17:19: error: mysql.h: No such file or directory
database/mysql.c:44: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?*? token
database/mysql.c: In function ?do_query?:
database/mysql.c:53: warning: implicit declaration of function ?mysql_real_query?
database/mysql.c:53: error: ?mydb? undeclared (first use in this function)
database/mysql.c:53: error: (Each undeclared identifier is reported only once
database/mysql.c:53: error: for each function it appears in.)
database/mysql.c:58: warning: implicit declaration of function ?mysql_error?
database/mysql.c:58: warning: format ?%s? expects type ?char *?, but argument 3 has type ?int?
database/mysql.c:60: warning: implicit declaration of function ?mysql_errno?
database/mysql.c:64: warning: implicit declaration of function ?mysql_field_count?
database/mysql.c:72: error: ?MYSQL_RES? undeclared (first use in this function)
database/mysql.c:72: error: ?res? undeclared (first use in this function)
database/mysql.c:72: warning: implicit declaration of function ?mysql_store_result?
database/mysql.c:77: warning: format ?%s? expects type ?char *?, but argument 3 has type ?int?
database/mysql.c:87: warning: implicit declaration of function ?mysql_free_result?
database/mysql.c: In function ?close_db?:
database/mysql.c:95: warning: implicit declaration of function ?mysql_close?
database/mysql.c:95: error: ?MYSQL? undeclared (first use in this function)
database/mysql.c:95: error: expected expression before ?)? token
database/mysql.c: In function ?work_thread?:
database/mysql.c:102: error: ?mydb? undeclared (first use in this function)
database/mysql.c:102: warning: implicit declaration of function ?mysql_init?
database/mysql.c:106: warning: format ?%s? expects type ?char *?, but argument 3 has type ?int?
database/mysql.c:117: warning: implicit declaration of function ?mysql_real_connect?
database/mysql.c:117: warning: comparison between pointer and integer
database/mysql.c:119: warning: format ?%s? expects type ?char *?, but argument 3 has type ?int?
database/mysql.c: In function ?Query?:
database/mysql.c:199: warning: implicit declaration of function ?mysql_escape_string?
database/mysql.c: In function ?GetRowCount?:
database/mysql.c:223: warning: implicit declaration of function ?mysql_num_rows?
database/mysql.c:223: error: ?MYSQL_RES? undeclared (first use in this function)
database/mysql.c:223: error: expected expression before ?)? token
database/mysql.c: In function ?GetFieldCount?:
database/mysql.c:228: warning: implicit declaration of function ?mysql_num_fields?
database/mysql.c:228: error: ?MYSQL_RES? undeclared (first use in this function)
database/mysql.c:228: error: expected expression before ?)? token
database/mysql.c: In function ?GetRow?:
database/mysql.c:233: warning: implicit declaration of function ?mysql_fetch_row?
database/mysql.c:233: error: ?MYSQL_RES? undeclared (first use in this function)
database/mysql.c:233: error: expected expression before ?)? token
database/mysql.c: In function ?GetField?:
database/mysql.c:238: error: ?MYSQL_ROW? undeclared (first use in this function)
database/mysql.c:238: error: expected ?)? before ?row?
database/mysql.c:239: warning: control reaches end of non-void function
database/mysql.c: In function ?GetLastInsertId?:
database/mysql.c:243: warning: implicit declaration of function ?mysql_insert_id?
database/mysql.c:243: error: ?mydb? undeclared (first use in this function)
make: *** [/home/jesse/Desktop/asss-1.4.3/build/mysql.o] Error 1

Anonymous - Tue Jun 26, 2007 12:50 pm
Post subject:
Hmm...
Code: Show/Hide
gcc -std=gnu99 -pipe  -fPIC  -shared -o /home/jesse/Desktop/asss-1.4.3/build/database.so /home/jesse/Desktop/asss-1.4.3/build/mysql.o /home/jesse/Desktop/asss-1.4.3/build/aliasdb.o  -L/opt/mysql/lib -Wl,-rpath,/opt/mysql/lib -lmysqlclient_r -lz
/home/jesse/Desktop/asss-1.4.3/build/mysql.o: file not recognized: File format not recognized
collect2: ld returned 1 exit status
make: *** [/home/jesse/Desktop/asss-1.4.3/build/database.so] Error 1

Anonymous - Tue Jun 26, 2007 12:53 pm
Post subject:
This might be helpful.
Code: Show/Hide
jesse@Ubuntu:~/Desktop/asss-1.4.3/src$ make deps
python /home/jesse/Desktop/asss-1.4.3/scripts/makedeps.py -I. -Iinclude -I/home/jesse/Desktop/asss-1.4.3/build  -D_REENTRANT -D_GNU_SOURCE -fPIC -I/opt/db-4.0.14/include -I/opt/mysql/include -I/usr/include/python2.4 \
                */*.c -P '$(BUILDDIR)/' -o /home/jesse/Desktop/asss-1.4.3/build/deps.mk
makedeps: ignoring option: -I/home/jesse/Desktop/asss-1.4.3/build
makedeps: ignoring option: -D_REENTRANT
makedeps: ignoring option: -D_GNU_SOURCE
makedeps: ignoring option: -fPIC
makedeps: ignoring option: -I/opt/db-4.0.14/include
makedeps: ignoring option: -I/opt/mysql/include
makedeps: ignoring option: -I/usr/include/python2.4
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

Smong - Tue Jun 26, 2007 2:59 pm
Post subject:
Try typing make clean, make deps, then make. Looks like you have a .o file that was compiled with a different (version) compiler.
Anonymous - Tue Jun 26, 2007 3:09 pm
Post subject:
Ok.
Code: Show/Hide
jesse@Ubuntu:~/Desktop/asss-1.4.3/src$ make
gcc -std=gnu99 -pipe -I. -Iinclude -I/home/jesse/Desktop/asss-1.4.3/build  -D_REENTRANT -D_GNU_SOURCE -fPIC -g -Wall   -I/opt/mysql/include -c -o /home/jesse/Desktop/asss-1.4.3/build/mysql.o database/mysql.c
In file included from database/mysql.c:17:
database/mysql.h:8: error: redefinition of typedef ?db_res?
include/reldb.h:8: error: previous declaration of ?db_res? was here
database/mysql.h:9: error: redefinition of typedef ?db_row?
include/reldb.h:10: error: previous declaration of ?db_row? was here
database/mysql.h:11: error: redefinition of typedef ?query_callback?
include/reldb.h:13: error: previous declaration of ?query_callback? was here
database/mysql.c:44: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?*? token
database/mysql.c: In function ?do_query?:
database/mysql.c:53: warning: implicit declaration of function ?mysql_real_query?
database/mysql.c:53: error: ?mydb? undeclared (first use in this function)
database/mysql.c:53: error: (Each undeclared identifier is reported only once
database/mysql.c:53: error: for each function it appears in.)
database/mysql.c:58: warning: implicit declaration of function ?mysql_error?
database/mysql.c:58: warning: format ?%s? expects type ?char *?, but argument 3 has type ?int?
database/mysql.c:60: warning: implicit declaration of function ?mysql_errno?
database/mysql.c:64: warning: implicit declaration of function ?mysql_field_count?
database/mysql.c:72: error: ?MYSQL_RES? undeclared (first use in this function)
database/mysql.c:72: error: ?res? undeclared (first use in this function)
database/mysql.c:72: warning: implicit declaration of function ?mysql_store_result?
database/mysql.c:77: warning: format ?%s? expects type ?char *?, but argument 3 has type ?int?
database/mysql.c:87: warning: implicit declaration of function ?mysql_free_result?
database/mysql.c: In function ?close_db?:
database/mysql.c:95: warning: implicit declaration of function ?mysql_close?
database/mysql.c:95: error: ?MYSQL? undeclared (first use in this function)
database/mysql.c:95: error: expected expression before ?)? token
database/mysql.c: In function ?work_thread?:
database/mysql.c:102: error: ?mydb? undeclared (first use in this function)
database/mysql.c:102: warning: implicit declaration of function ?mysql_init?
database/mysql.c:106: warning: format ?%s? expects type ?char *?, but argument 3 has type ?int?
database/mysql.c:117: warning: implicit declaration of function ?mysql_real_connect?
database/mysql.c:117: warning: comparison between pointer and integer
database/mysql.c:119: warning: format ?%s? expects type ?char *?, but argument 3 has type ?int?
database/mysql.c: In function ?Query?:
database/mysql.c:199: warning: implicit declaration of function ?mysql_escape_string?
database/mysql.c: In function ?GetRowCount?:
database/mysql.c:223: warning: implicit declaration of function ?mysql_num_rows?
database/mysql.c:223: error: ?MYSQL_RES? undeclared (first use in this function)
database/mysql.c:223: error: expected expression before ?)? token
database/mysql.c: In function ?GetFieldCount?:
database/mysql.c:228: warning: implicit declaration of function ?mysql_num_fields?
database/mysql.c:228: error: ?MYSQL_RES? undeclared (first use in this function)
database/mysql.c:228: error: expected expression before ?)? token
database/mysql.c: In function ?GetRow?:
database/mysql.c:233: warning: implicit declaration of function ?mysql_fetch_row?
database/mysql.c:233: error: ?MYSQL_RES? undeclared (first use in this function)
database/mysql.c:233: error: expected expression before ?)? token
database/mysql.c: In function ?GetField?:
database/mysql.c:238: error: ?MYSQL_ROW? undeclared (first use in this function)
database/mysql.c:238: error: expected ?)? before ?row?
database/mysql.c:239: warning: control reaches end of non-void function
database/mysql.c: In function ?GetLastInsertId?:
database/mysql.c:243: warning: implicit declaration of function ?mysql_insert_id?
database/mysql.c:243: error: ?mydb? undeclared (first use in this function)
make: *** [/home/jesse/Desktop/asss-1.4.3/build/mysql.o] Error 1

Anonymous - Tue Jun 26, 2007 3:49 pm
Post subject:
and when i rename mysql.c to mysql.o and put it in /build i get
Code: Show/Hide
gcc -std=gnu99 -pipe  -fPIC  -shared -o /home/jesse/Desktop/asss-1.4.3/build/database.so /home/jesse/Desktop/asss-1.4.3/build/mysql.o /home/jesse/Desktop/asss-1.4.3/build/aliasdb.o  -L/opt/mysql/lib -Wl,-rpath,/opt/mysql/lib -lmysqlclient_r -lz
/home/jesse/Desktop/asss-1.4.3/build/mysql.o: file not recognized: File format not recognized
collect2: ld returned 1 exit status
make: *** [/home/jesse/Desktop/asss-1.4.3/build/database.so] Error 1

Smong - Tue Jun 26, 2007 3:53 pm
Post subject:
Aquarius wrote:
and when i rename mysql.c to mysql.o and put it in /build i get <snip>
Well that explains that. Don't rename .c files to .o, .o (object) is an intermediate compiled form.
Anonymous - Tue Jun 26, 2007 3:58 pm
Post subject:
Ok. when i start from scratch we get

Code: Show/Hide
gcc -std=gnu99 -pipe -I. -Iinclude -I../build  -D_REENTRANT -D_GNU_SOURCE -fPIC -g -Wall   -I/opt/mysql/include -c -o ../build/mysql.o database/mysql.c
database/mysql.c:17:19: error: mysql.h: No such file or directory
database/mysql.c:44: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?*? token
database/mysql.c: In function ?do_query?:
database/mysql.c:55: warning: implicit declaration of function ?mysql_real_query?
database/mysql.c:55: error: ?mydb? undeclared (first use in this function)
database/mysql.c:55: error: (Each undeclared identifier is reported only once
database/mysql.c:55: error: for each function it appears in.)
database/mysql.c:60: warning: implicit declaration of function ?mysql_error?
database/mysql.c:60: warning: format ?%s? expects type ?char *?, but argument 3 has type ?int?
database/mysql.c:62: warning: implicit declaration of function ?mysql_errno?
database/mysql.c:66: warning: implicit declaration of function ?mysql_field_count?
database/mysql.c:74: error: ?MYSQL_RES? undeclared (first use in this function)
database/mysql.c:74: error: ?res? undeclared (first use in this function)
database/mysql.c:74: warning: implicit declaration of function ?mysql_store_result?
database/mysql.c:79: warning: format ?%s? expects type ?char *?, but argument 3 has type ?int?
database/mysql.c:89: warning: implicit declaration of function ?mysql_free_result?
database/mysql.c: In function ?close_db?:
database/mysql.c:97: warning: implicit declaration of function ?mysql_close?
database/mysql.c:97: error: ?MYSQL? undeclared (first use in this function)
database/mysql.c:97: error: expected expression before ?)? token
database/mysql.c: In function ?work_thread?:
database/mysql.c:105: error: ?mydb? undeclared (first use in this function)
database/mysql.c:105: warning: implicit declaration of function ?mysql_init?
database/mysql.c:109: warning: format ?%s? expects type ?char *?, but argument 3 has type ?int?
database/mysql.c:120: warning: implicit declaration of function ?mysql_real_connect?
database/mysql.c:120: error: ?CLIENT_COMPRESS? undeclared (first use in this function)
database/mysql.c:120: warning: comparison between pointer and integer
database/mysql.c:122: warning: format ?%s? expects type ?char *?, but argument 3 has type ?int?
database/mysql.c:138: warning: implicit declaration of function ?mysql_ping?
database/mysql.c: In function ?Query?:
database/mysql.c:217: warning: implicit declaration of function ?mysql_escape_string?
database/mysql.c: In function ?GetRowCount?:
database/mysql.c:241: warning: implicit declaration of function ?mysql_num_rows?
database/mysql.c:241: error: ?MYSQL_RES? undeclared (first use in this function)
database/mysql.c:241: error: expected expression before ?)? token
database/mysql.c: In function ?GetFieldCount?:
database/mysql.c:246: warning: implicit declaration of function ?mysql_num_fields?
database/mysql.c:246: error: ?MYSQL_RES? undeclared (first use in this function)
database/mysql.c:246: error: expected expression before ?)? token
database/mysql.c: In function ?GetRow?:
database/mysql.c:251: warning: implicit declaration of function ?mysql_fetch_row?
database/mysql.c:251: error: ?MYSQL_RES? undeclared (first use in this function)
database/mysql.c:251: error: expected expression before ?)? token
database/mysql.c: In function ?GetField?:
database/mysql.c:256: error: ?MYSQL_ROW? undeclared (first use in this function)
database/mysql.c:256: error: expected ?)? before ?row?
database/mysql.c:257: warning: control reaches end of non-void function
database/mysql.c: In function ?GetLastInsertId?:
database/mysql.c:261: warning: implicit declaration of function ?mysql_insert_id?
database/mysql.c:261: error: ?mydb? undeclared (first use in this function)
make: *** [../build/mysql.o] Error 1


it's still mysql.o
Dr Brain - Tue Jun 26, 2007 11:27 pm
Post subject:
Make sure mysql is installed on your system, then change system.mk to reflect the installation path.

If you don't know where it put things, type "updatedb" as root (may take several minutes to finish), and then "locate mysql.h" to find the include directory, and "locate libmysql" to find the lib directory.

This is what I had to do on my computer:
Code: Show/Hide

# change this to the directory of your mysql install.
MYSQL_HOME = /usr
# these probably won't have to change
MYSQL_INC = $(MYSQL_HOME)/include/mysql
MYSQL_LIB = $(MYSQL_HOME)/lib/mysql

Anonymous - Wed Jun 27, 2007 12:11 am
Post subject:
Simple.
Code: Show/Hide
root@Fiesty:~# locate mysql.h
/usr/include/mysql/mysql.h



Insanity.
Code: Show/Hide
/usr/share/doc/libmysql++-dev/examples/Makefile.simple
/usr/share/doc/libmysql++-dev/examples/load_file.cpp
/usr/share/doc/libmysql++-dev/examples/updel.cpp
/usr/share/doc/libmysql++-dev/examples/cgi_image.cpp
/usr/share/doc/libmysql++-dev/examples/simple3.cpp
/usr/share/doc/libmysql++-dev/examples/fieldinf1.cpp
/usr/share/doc/libmysql++-dev/examples/Makefile.gcc
/usr/share/doc/libmysql++-dev/examples/custom3.cpp
/usr/share/doc/libmysql++-dev/examples/dbinfo.cpp.gz
/usr/share/doc/libmysql++-dev/examples/util.h
/usr/share/doc/libmysql++-dev/copyright
/usr/share/doc/libmysql++-dev/README
/usr/share/doc/libmysql++-dev/changelog.Debian.gz
/usr/share/doc/libmysql++-dev/mysqlpp-refman.pdf.gz
/usr/share/doc/libmysql++-dev/ssqls-pretty
/usr/share/doc/libmysql++-dev/refman
/usr/share/doc/libmysql++-dev/refman/html
/usr/share/doc/libmysql++-dev/refman/html/null_8h-source.html
/usr/share/doc/libmysql++-dev/refman/html/compare_8h.html
/usr/share/doc/libmysql++-dev/refman/html/coldata_8h__incl.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1subscript__iterator.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1Query.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1const__subscript__container-members.html
/usr/share/doc/libmysql++-dev/refman/html/noexceptions_8h.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1BasicLock__coll__graph.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1subscript__iterator__coll__graph.png
/usr/share/doc/libmysql++-dev/refman/html/structmysqlpp_1_1Date-members.html
/usr/share/doc/libmysql++-dev/refman/html/inherit__graph__9.png
/usr/share/doc/libmysql++-dev/refman/html/inherits.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1subscript__iterator-members.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1ResUse__coll__graph.png
/usr/share/doc/libmysql++-dev/refman/html/structmysqlpp_1_1Time__inherit__graph.png
/usr/share/doc/libmysql++-dev/refman/html/stream2string_8h__dep__incl.png
/usr/share/doc/libmysql++-dev/refman/html/structmysqlpp_1_1NullisZero.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1ConnectionFailed__coll__graph.png
/usr/share/doc/libmysql++-dev/refman/html/inherit__graph__22.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1DBSelectionFailed.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1SQLString-members.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1scoped__var__set-members.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1EndOfResults__coll__graph.png
/usr/share/doc/libmysql++-dev/refman/html/tiny__int_8h__dep__incl.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1Lock.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1mysql__type__info.html
/usr/share/doc/libmysql++-dev/refman/html/datetime_8h.html
/usr/share/doc/libmysql++-dev/refman/html/structmysqlpp_1_1DateTime.html
/usr/share/doc/libmysql++-dev/refman/html/convert_8h__dep__incl.png
/usr/share/doc/libmysql++-dev/refman/html/namespaces.html
/usr/share/doc/libmysql++-dev/refman/html/lockable_8h-source.html
/usr/share/doc/libmysql++-dev/refman/html/result_8h__incl.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1Lockable.html
/usr/share/doc/libmysql++-dev/refman/html/files.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1ObjectNotInitialized__inherit__graph.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1ResNSel.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1BadQuery-members.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1const__string-members.html
/usr/share/doc/libmysql++-dev/refman/html/row_8h__dep__incl.png
/usr/share/doc/libmysql++-dev/refman/html/field__names_8h.html
/usr/share/doc/libmysql++-dev/refman/html/structmysqlpp_1_1SQLParseElement-members.html
/usr/share/doc/libmysql++-dev/refman/html/qparms_8h.html
/usr/share/doc/libmysql++-dev/refman/html/inherit__graph__33.png
/usr/share/doc/libmysql++-dev/refman/html/inherit__graph__26.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1BadFieldName__coll__graph.png
/usr/share/doc/libmysql++-dev/refman/html/inherit__graph__17.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1SQLString.html
/usr/share/doc/libmysql++-dev/refman/html/doxygen.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1Lockable__inherit__graph.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1Null-members.html
/usr/share/doc/libmysql++-dev/refman/html/noexceptions_8h-source.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1scoped__var__set__coll__graph.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1EndOfResultSets.html
/usr/share/doc/libmysql++-dev/refman/html/myset_8h-source.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1Exception.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1Lock-members.html
/usr/share/doc/libmysql++-dev/refman/html/sql__string_8h__dep__incl.png
/usr/share/doc/libmysql++-dev/refman/html/qparms_8h__incl.png
/usr/share/doc/libmysql++-dev/refman/html/vallist_8h.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1Connection__coll__graph.png
/usr/share/doc/libmysql++-dev/refman/html/doxygen.css
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1Query-members.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1EndOfResults.html
/usr/share/doc/libmysql++-dev/refman/html/structmysqlpp_1_1cstr__greater.html
/usr/share/doc/libmysql++-dev/refman/html/exceptions_8h.html
/usr/share/doc/libmysql++-dev/refman/html/structmysqlpp_1_1value__list__ba.html
/usr/share/doc/libmysql++-dev/refman/html/result_8h.html
/usr/share/doc/libmysql++-dev/refman/html/field__names_8h__incl.png
/usr/share/doc/libmysql++-dev/refman/html/structmysqlpp_1_1Time__coll__graph.png
/usr/share/doc/libmysql++-dev/refman/html/noexceptions_8h__dep__incl.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1BadNullConversion.html
/usr/share/doc/libmysql++-dev/refman/html/structmysqlpp_1_1DateTime__inherit__graph.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1EndOfResultSets-members.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1EndOfResults__inherit__graph.png
/usr/share/doc/libmysql++-dev/refman/html/refman.css
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1SQLQueryParms__coll__graph.png
/usr/share/doc/libmysql++-dev/refman/html/resiter_8h.html
/usr/share/doc/libmysql++-dev/refman/html/structmysqlpp_1_1cstr__not__equal__to.html
/usr/share/doc/libmysql++-dev/refman/html/inherit__graph__2.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1Null.html
/usr/share/doc/libmysql++-dev/refman/html/vallist_8h-source.html
/usr/share/doc/libmysql++-dev/refman/html/myset_8h__dep__incl.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1MysqlCmpCStr-members.html
/usr/share/doc/libmysql++-dev/refman/html/inherit__graph__11.png
/usr/share/doc/libmysql++-dev/refman/html/inherit__graph__15.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1DBSelectionFailed__inherit__graph.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1MysqlCmp.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1BadQuery__inherit__graph.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1BadConversion__coll__graph.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1EndOfResults-members.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1LockFailed__inherit__graph.png
/usr/share/doc/libmysql++-dev/refman/html/row_8h.html
/usr/share/doc/libmysql++-dev/refman/html/inherit__graph__27.png
/usr/share/doc/libmysql++-dev/refman/html/structmysqlpp_1_1equal__list__b.html
/usr/share/doc/libmysql++-dev/refman/html/string__util_8h__dep__incl.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1LockFailed__coll__graph.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1ConnectionFailed.html
/usr/share/doc/libmysql++-dev/refman/html/inherit__graph__37.png
/usr/share/doc/libmysql++-dev/refman/html/structmysqlpp_1_1Time-members.html
/usr/share/doc/libmysql++-dev/refman/html/sql__string_8h.html
/usr/share/doc/libmysql++-dev/refman/html/fields_8h.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1FieldNames-members.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1Fields__inherit__graph.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1BadOption__coll__graph.png
/usr/share/doc/libmysql++-dev/refman/html/query_8h__dep__incl.png
/usr/share/doc/libmysql++-dev/refman/html/field__types_8h__incl.png
/usr/share/doc/libmysql++-dev/refman/html/defs_8h__incl.png
/usr/share/doc/libmysql++-dev/refman/html/connection_8h-source.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1ColData__Tmpl__coll__graph.png
/usr/share/doc/libmysql++-dev/refman/html/mysql++_8h-source.html
/usr/share/doc/libmysql++-dev/refman/html/inherit__graph__6.png
/usr/share/doc/libmysql++-dev/refman/html/manip_8h__incl.png
/usr/share/doc/libmysql++-dev/refman/html/inherit__graph__10.png
/usr/share/doc/libmysql++-dev/refman/html/myset_8h.html
/usr/share/doc/libmysql++-dev/refman/html/connection_8h__dep__incl.png
/usr/share/doc/libmysql++-dev/refman/html/structmysqlpp_1_1Date.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1Row.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1MysqlCmpCStr__coll__graph.png
/usr/share/doc/libmysql++-dev/refman/html/query_8h-source.html
/usr/share/doc/libmysql++-dev/refman/html/fields_8h-source.html
/usr/share/doc/libmysql++-dev/refman/html/graph_legend.png
/usr/share/doc/libmysql++-dev/refman/html/_header.html
/usr/share/doc/libmysql++-dev/refman/html/inherit__graph__28.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1mysql__type__info-members.html
/usr/share/doc/libmysql++-dev/refman/html/manip_8h__dep__incl.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1Null__coll__graph.png
/usr/share/doc/libmysql++-dev/refman/html/convert_8h-source.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1NoExceptions.html
/usr/share/doc/libmysql++-dev/refman/html/vallist_8h__incl.png
/usr/share/doc/libmysql++-dev/refman/html/resiter_8h__incl.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1EndOfResultSets__inherit__graph.png
/usr/share/doc/libmysql++-dev/refman/html/inherit__graph__32.png
/usr/share/doc/libmysql++-dev/refman/html/structmysqlpp_1_1SQLParseElement__coll__graph.png
/usr/share/doc/libmysql++-dev/refman/html/inherit__graph__18.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1EndOfResultSets__coll__graph.png
/usr/share/doc/libmysql++-dev/refman/html/structmysqlpp_1_1Date__coll__graph.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1BadConversion-members.html
/usr/share/doc/libmysql++-dev/refman/html/structmysqlpp_1_1DateTime__coll__graph.png
/usr/share/doc/libmysql++-dev/refman/html/structmysqlpp_1_1value__list__b.html
/usr/share/doc/libmysql++-dev/refman/html/index.html
/usr/share/doc/libmysql++-dev/refman/html/vallist_8h__dep__incl.png
/usr/share/doc/libmysql++-dev/refman/html/compare_8h__incl.png
/usr/share/doc/libmysql++-dev/refman/html/tiny__int_8h.html
/usr/share/doc/libmysql++-dev/refman/html/myset_8h__incl.png
/usr/share/doc/libmysql++-dev/refman/html/qparms_8h__dep__incl.png
/usr/share/doc/libmysql++-dev/refman/html/structmysqlpp_1_1NullisNull.html
/usr/share/doc/libmysql++-dev/refman/html/structmysqlpp_1_1value__list__b__coll__graph.png
/usr/share/doc/libmysql++-dev/refman/html/inherit__graph__31.png
/usr/share/doc/libmysql++-dev/refman/html/platform_8h__dep__incl.png
/usr/share/doc/libmysql++-dev/refman/html/coldata_8h.html
/usr/share/doc/libmysql++-dev/refman/html/inherit__graph__20.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1BadFieldName__inherit__graph.png
/usr/share/doc/libmysql++-dev/refman/html/const__string_8h-source.html
/usr/share/doc/libmysql++-dev/refman/html/type__info_8h__incl.png
/usr/share/doc/libmysql++-dev/refman/html/structmysqlpp_1_1equal__list__b-members.html
/usr/share/doc/libmysql++-dev/refman/html/fields_8h__incl.png
/usr/share/doc/libmysql++-dev/refman/html/inherit__graph__14.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1OptionalExceptions__inherit__graph.png
/usr/share/doc/libmysql++-dev/refman/html/result_8h__dep__incl.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1FieldTypes.html
/usr/share/doc/libmysql++-dev/refman/html/connection_8h__incl.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1Result.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1tiny__int-members.html
/usr/share/doc/libmysql++-dev/refman/html/stream2string_8h__incl.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1Row__inherit__graph.png
/usr/share/doc/libmysql++-dev/refman/html/structmysqlpp_1_1equal__list__ba__coll__graph.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1ObjectNotInitialized__coll__graph.png
/usr/share/doc/libmysql++-dev/refman/html/field__types_8h-source.html
/usr/share/doc/libmysql++-dev/refman/html/const__string_8h.html
/usr/share/doc/libmysql++-dev/refman/html/inherit__graph__16.png
/usr/share/doc/libmysql++-dev/refman/html/field__types_8h.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1MysqlCmp__inherit__graph.png
/usr/share/doc/libmysql++-dev/refman/html/query_8h.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1ConnectionFailed-members.html
/usr/share/doc/libmysql++-dev/refman/html/structmysqlpp_1_1Time.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1Fields.html
/usr/share/doc/libmysql++-dev/refman/html/functions.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1ResUse__inherit__graph.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1ResUse.html
/usr/share/doc/libmysql++-dev/refman/html/hierarchy.html
/usr/share/doc/libmysql++-dev/refman/html/inherit__graph__34.png
/usr/share/doc/libmysql++-dev/refman/html/datetime_8h__dep__incl.png
/usr/share/doc/libmysql++-dev/refman/html/coldata_8h__dep__incl.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1Connection__inherit__graph.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1BadParamCount__coll__graph.png
/usr/share/doc/libmysql++-dev/refman/html/defs_8h-source.html
/usr/share/doc/libmysql++-dev/refman/html/coldata_8h-source.html
/usr/share/doc/libmysql++-dev/refman/html/inherit__graph__19.png
/usr/share/doc/libmysql++-dev/refman/html/exceptions_8h__dep__incl.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1ObjectNotInitialized.html
/usr/share/doc/libmysql++-dev/refman/html/inherit__graph__25.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1Result__inherit__graph.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1BadQuery__coll__graph.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1ColData__Tmpl.html
/usr/share/doc/libmysql++-dev/refman/html/structmysqlpp_1_1cstr__greater__equal.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1Connection-members.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1BadConversion.html
/usr/share/doc/libmysql++-dev/refman/html/structmysqlpp_1_1value__list__b-members.html
/usr/share/doc/libmysql++-dev/refman/html/lockable_8h__dep__incl.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1OptionalExceptions.html
/usr/share/doc/libmysql++-dev/refman/html/mysql++_8h.html
/usr/share/doc/libmysql++-dev/refman/html/structmysqlpp_1_1DTbase-members.html
/usr/share/doc/libmysql++-dev/refman/html/annotated.html
/usr/share/doc/libmysql++-dev/refman/html/platform_8h.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1BadParamCount.html
/usr/share/doc/libmysql++-dev/refman/html/inherit__graph__3.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1BadOption.html
/usr/share/doc/libmysql++-dev/refman/html/sql__string_8h__incl.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1Row-members.html
/usr/share/doc/libmysql++-dev/refman/html/globals.html
/usr/share/doc/libmysql++-dev/refman/html/graph_legend.html
/usr/share/doc/libmysql++-dev/refman/html/structmysqlpp_1_1DTbase__inherit__graph.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1BadNullConversion__coll__graph.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1Fields__coll__graph.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1BadParamCount-members.html
/usr/share/doc/libmysql++-dev/refman/html/inherit__graph__1.png
/usr/share/doc/libmysql++-dev/refman/html/inherit__graph__21.png
/usr/share/doc/libmysql++-dev/refman/html/sql__string_8h-source.html
/usr/share/doc/libmysql++-dev/refman/html/row_8h-source.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1Lockable__coll__graph.png
/usr/share/doc/libmysql++-dev/refman/html/query_8h__incl.png
/usr/share/doc/libmysql++-dev/refman/html/inherit__graph__38.png
/usr/share/doc/libmysql++-dev/refman/html/defs_8h.html
/usr/share/doc/libmysql++-dev/refman/html/field__names_8h__dep__incl.png
/usr/share/doc/libmysql++-dev/refman/html/exceptions_8h-source.html
/usr/share/doc/libmysql++-dev/refman/html/fields_8h__dep__incl.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1Fields-members.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1FieldNames.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1OptionalExceptions-members.html
/usr/share/doc/libmysql++-dev/refman/html/mysql++_8h__incl.png
/usr/share/doc/libmysql++-dev/refman/html/structmysqlpp_1_1value__list__ba-members.html
/usr/share/doc/libmysql++-dev/refman/html/structmysqlpp_1_1Date__inherit__graph.png
/usr/share/doc/libmysql++-dev/refman/html/inherit__graph__35.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1ConnectionFailed__inherit__graph.png
/usr/share/doc/libmysql++-dev/refman/html/field__names_8h-source.html
/usr/share/doc/libmysql++-dev/refman/html/convert_8h.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1BadNullConversion-members.html
/usr/share/doc/libmysql++-dev/refman/html/inherit__graph__0.png
/usr/share/doc/libmysql++-dev/refman/html/datetime_8h-source.html
/usr/share/doc/libmysql++-dev/refman/html/structmysqlpp_1_1value__list__ba__coll__graph.png
/usr/share/doc/libmysql++-dev/refman/html/inherit__graph__24.png
/usr/share/doc/libmysql++-dev/refman/html/structmysqlpp_1_1cstr__less.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1BasicLock-members.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1Lockable-members.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1ObjectNotInitialized-members.html
/usr/share/doc/libmysql++-dev/refman/html/structmysqlpp_1_1DTbase.html
/usr/share/doc/libmysql++-dev/refman/html/inherit__graph__7.png
/usr/share/doc/libmysql++-dev/refman/html/structmysqlpp_1_1DateTime-members.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1MysqlCmpCStr__inherit__graph.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1LockFailed.html
/usr/share/doc/libmysql++-dev/refman/html/string__util_8h-source.html
/usr/share/doc/libmysql++-dev/refman/html/type__info_8h.html
/usr/share/doc/libmysql++-dev/refman/html/string__util_8h.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1Set.html
/usr/share/doc/libmysql++-dev/refman/html/null_8h__incl.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1Result-members.html
/usr/share/doc/libmysql++-dev/refman/html/stream2string_8h.html
/usr/share/doc/libmysql++-dev/refman/html/qparms_8h-source.html
/usr/share/doc/libmysql++-dev/refman/html/structmysqlpp_1_1equal__list__ba.html
/usr/share/doc/libmysql++-dev/refman/html/string__util_8h__incl.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1BadFieldName-members.html
/usr/share/doc/libmysql++-dev/refman/html/platform_8h-source.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1Exception__coll__graph.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1NoExceptions__coll__graph.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1BadFieldName.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1ResNSel__coll__graph.png
/usr/share/doc/libmysql++-dev/refman/html/inherit__graph__8.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1BadNullConversion__inherit__graph.png
/usr/share/doc/libmysql++-dev/refman/html/structmysqlpp_1_1equal__list__b__coll__graph.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1ColData__Tmpl-members.html
/usr/share/doc/libmysql++-dev/refman/html/inherit__graph__30.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1BadOption__inherit__graph.png
/usr/share/doc/libmysql++-dev/refman/html/inherit__graph__36.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1ResNSel-members.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1ResUse-members.html
/usr/share/doc/libmysql++-dev/refman/html/datetime_8h__incl.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1null__type.html
/usr/share/doc/libmysql++-dev/refman/html/null_8h__dep__incl.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1MysqlCmp__coll__graph.png
/usr/share/doc/libmysql++-dev/refman/html/structmysqlpp_1_1cstr__less__equal.html
/usr/share/doc/libmysql++-dev/refman/html/defs_8h__dep__incl.png
/usr/share/doc/libmysql++-dev/refman/html/structmysqlpp_1_1NullisBlank.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1Exception__inherit__graph.png
/usr/share/doc/libmysql++-dev/refman/html/result_8h-source.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1Connection.html
/usr/share/doc/libmysql++-dev/refman/html/stream2string_8h-source.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1BadParamCount__inherit__graph.png
/usr/share/doc/libmysql++-dev/refman/html/compare_8h__dep__incl.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1const__subscript__container.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1SQLQueryParms-members.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1BadConversion__inherit__graph.png
/usr/share/doc/libmysql++-dev/refman/html/const__string_8h__incl.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1BasicLock__inherit__graph.png
/usr/share/doc/libmysql++-dev/refman/html/structmysqlpp_1_1cstr__equal__to.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1Result__coll__graph.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1BadQuery.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1MysqlCmpCStr.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1DBSelectionFailed__coll__graph.png
/usr/share/doc/libmysql++-dev/refman/html/resiter_8h-source.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1FieldTypes-members.html
/usr/share/doc/libmysql++-dev/refman/html/const__string_8h__dep__incl.png
/usr/share/doc/libmysql++-dev/refman/html/namespacemysqlpp.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1tiny__int.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1NoExceptions-members.html
/usr/share/doc/libmysql++-dev/refman/html/inherit__graph__29.png
/usr/share/doc/libmysql++-dev/refman/html/manip_8h-source.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1const__subscript__container__inherit__graph.png
/usr/share/doc/libmysql++-dev/refman/html/tiny__int_8h-source.html
/usr/share/doc/libmysql++-dev/refman/html/connection_8h.html
/usr/share/doc/libmysql++-dev/refman/html/inherit__graph__13.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1DBSelectionFailed-members.html
/usr/share/doc/libmysql++-dev/refman/html/inherit__graph__23.png
/usr/share/doc/libmysql++-dev/refman/html/structmysqlpp_1_1equal__list__ba-members.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1Lock__inherit__graph.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1scoped__var__set.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1LockFailed-members.html
/usr/share/doc/libmysql++-dev/refman/html/compare_8h-source.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1BasicLock.html
/usr/share/doc/libmysql++-dev/refman/html/inherit__graph__12.png
/usr/share/doc/libmysql++-dev/refman/html/lockable_8h.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1const__string.html
/usr/share/doc/libmysql++-dev/refman/html/namespacemembers.html
/usr/share/doc/libmysql++-dev/refman/html/resiter_8h__dep__incl.png
/usr/share/doc/libmysql++-dev/refman/html/structmysqlpp_1_1SQLParseElement.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1Query__inherit__graph.png
/usr/share/doc/libmysql++-dev/refman/html/type__info_8h__dep__incl.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1Query__coll__graph.png
/usr/share/doc/libmysql++-dev/refman/html/exceptions_8h__incl.png
/usr/share/doc/libmysql++-dev/refman/html/inherit__graph__5.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1SQLQueryParms.html
/usr/share/doc/libmysql++-dev/refman/html/inherit__graph__4.png
/usr/share/doc/libmysql++-dev/refman/html/type__info_8h-source.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1Row__coll__graph.png
/usr/share/doc/libmysql++-dev/refman/html/convert_8h__incl.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1BadOption-members.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1Exception-members.html
/usr/share/doc/libmysql++-dev/refman/html/row_8h__incl.png
/usr/share/doc/libmysql++-dev/refman/html/manip_8h.html
/usr/share/doc/libmysql++-dev/refman/html/field__types_8h__dep__incl.png
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1MysqlCmp-members.html
/usr/share/doc/libmysql++-dev/refman/html/classmysqlpp_1_1Set-members.html
/usr/share/doc/libmysql++-dev/refman/html/null_8h.html
/usr/share/doc/libmysql++-dev/changelog.gz
/usr/share/doc/libmysql++-dev/mysqlpp-userman.pdf.gz
/usr/share/doc/libmysql++-dev/README.mysql++
/usr/share/doc/libmysql++-dev/userman
/usr/share/doc/libmysql++-dev/userman/html.xsl
/usr/share/doc/libmysql++-dev/userman/Makefile
/usr/share/doc/libmysql++-dev/userman/README.gz
/usr/share/doc/libmysql++-dev/userman/fo.xsl
/usr/share/doc/libmysql++-dev/userman/html
/usr/share/doc/libmysql++-dev/userman/html/tquery.html
/usr/share/doc/libmysql++-dev/userman/html/licenses.html
/usr/share/doc/libmysql++-dev/userman/html/tutorial.html
/usr/share/doc/libmysql++-dev/userman/html/userman.css
/usr/share/doc/libmysql++-dev/userman/html/breakages.html
/usr/share/doc/libmysql++-dev/userman/html/index.html
/usr/share/doc/libmysql++-dev/userman/html/unicode.html
/usr/share/doc/libmysql++-dev/userman/html/ssqls.html
/usr/share/doc/libmysql++-dev/userman/html/overview.html
/usr/share/doc/libmysql++-dev/userman/mktxt
/usr/share/doc/libmysql++-dev/userman/common.xsl
/usr/share/doc/libmysql++-dev/userman/userman.xml.gz
/var/lib/dpkg/info/libmysqlclient15-dev.list
/var/lib/dpkg/info/libmysqlclient15-dev.postrm
/var/lib/dpkg/info/libmysql++2c2a.shlibs
/var/lib/dpkg/info/libmysql++2c2a.postrm
/var/lib/dpkg/info/libmysqlclient15off.shlibs
/var/lib/dpkg/info/libmysqlclient15-dev.postinst
/var/lib/dpkg/info/libmysqlclient15-dev.shlibs
/var/lib/dpkg/info/libmysql++-dev.md5sums
/var/lib/dpkg/info/libmysql++2c2a.md5sums
/var/lib/dpkg/info/libmysqlclient15off.postinst
/var/lib/dpkg/info/libmysql++2c2a.postinst
/var/lib/dpkg/info/libmysqlclient15-dev.md5sums
/var/lib/dpkg/info/libmysqlclient15off.md5sums
/var/lib/dpkg/info/libmysql++2c2a.list
/var/lib/dpkg/info/libmysql++-dev.list
/var/lib/dpkg/info/libmysqlclient15off.list
/var/lib/dpkg/info/libmysqlclient15off.postrm
/var/cache/apt/archives/libmysql++2c2a_2.0.7-3_i386.deb
/var/cache/apt/archives/libmysql++-dev_2.0.7-3_i386.deb
/var/cache/apt/archives/libmysqlclient15-dev_5.0.38-0ubuntu1_i386.deb
/var/cache/apt/archives/libmysqlclient15off_5.0.38-0ubuntu1_i386.deb
[quote]

I think it overflowed my buffer. [/quote]

Dr Brain - Wed Jun 27, 2007 12:32 am
Post subject:
"locate libmysql | grep /usr/lib"

If it's in /usr/lib/mysql, then you can use the same changes to system.mk that I have above.
Anonymous - Wed Jun 27, 2007 1:07 am
Post subject:
Oddly, I compiled as3 with no errors, and hscore got compiled after that with no errors, but now it crashes at startup when i run run-asss script, also bin/asss is not a command for me, must be a missing package

the script might have something to do with the wrong config here
Quote:
# change this to the root of your asss installation
ASSSHOME=/home/jesse/Desktop/asss/

Anonymous - Wed Jun 27, 2007 1:14 am
Post subject:
Ok bin/asss works as a command when i'm root

Error loading modules.conf
KrynetiX - Wed Jun 27, 2007 1:27 am
Post subject:
Code: Show/Hide
asss 1.4.3 built at Jun 27 2007 00:21:43
Loading modules...
Unrecoverable error (5): Error in modules.conf: Can't open file 'conf/modules.conf' for reading

BDwinsAlt - Wed Jun 27, 2007 6:52 am
Post subject:
Either you don't have modules.conf in the conf folder or you're executing it from the wrong path. I know back in the day I tried to execute it inside the bin folder. I got that exact error. When I used the batch file inside the parent directory, it worked. So in the directory with news.txt and whatnot, click asss and try to run it.

If this doesn't work, I'm sure Brain will know how to fix it.

I'm off to the beach soon. Cya.

(Whoa when I executed ASSS my computer completely powered off and started back up, I don't remember light above me blinking...)
Battery backup was making it go out. Unplug while I am on vacation. (Maybe it's a sign? Maybe the house was gonna catch on fire.)
Dr Brain - Wed Jun 27, 2007 7:11 am
Post subject:
BDwinsAlt wrote:
Either you don't have modules.conf in the conf folder or you're executing it from the wrong path. I know back in the day I tried to execute it inside the bin folder. I got that exact error. When I used the batch file inside the parent directory, it worked. So in the directory with news.txt and whatnot, click asss and try to run it.


Do your very best to ignore everything above.

Aqua, can you give the output of

ls -l /home/jesse/Desktop/asss
ls -l /home/jesse/Desktop/asss/bin

KrynetiX, make sure you type "bin/asss" and not something along the lines of "cd bin; asss" or double clicking it from some window.
KrynetiX - Wed Jun 27, 2007 7:28 am
Post subject:
Code: Show/Hide
jesse@Fiesty:~/Desktop/asss$ bin/asss
asss 1.4.3 built at Jun 27 2007 00:21:43
Loading modules...
Unrecoverable error (5): Error in modules.conf: Can't open file 'conf/modules.conf' for reading


by the way I am Aquarius

Code: Show/Hide
jesse@Fiesty:~/Desktop/asss$ ls -l /home/jesse/Desktop/asss
total 32
drwxr-xr-x  2 jesse jesse 4096 2007-06-27 01:00 bin
drwxr-xr-x  2 jesse jesse 4096 2007-06-27 00:56 build
drwxr-xr-x  6 jesse jesse 4096 2007-06-26 22:11 dist
drwxr-xr-x  5 jesse jesse 4096 2007-06-26 22:11 doc
drwxr-xr-x  6 jesse jesse 4096 2007-06-27 01:10 scripts
drwxr-xr-x 14 jesse jesse 4096 2007-06-27 00:25 src
drwxr-xr-x  2 jesse jesse 4096 2007-06-26 22:11 test
drwxr-xr-x  7 jesse jesse 4096 2007-06-26 22:11 zone1
jesse@Fiesty:~/Desktop/asss$ ls -l /home/jesse/Desktop/asss/bin
total 0
lrwxrwxrwx 1 jesse jesse 35 2007-06-27 00:25 asss -> /home/jesse/Desktop/asss/build/asss
lrwxrwxrwx 1 jesse jesse 43 2007-06-27 00:25 backtrace -> /home/jesse/Desktop/asss/src/core/backtrace
lrwxrwxrwx 1 jesse jesse 28 2007-06-27 01:00 bin -> /home/jesse/Desktop/asss/bin
lrwxrwxrwx 1 jesse jesse 42 2007-06-27 00:25 database.so -> /home/jesse/Desktop/asss/build/database.so
lrwxrwxrwx 1 jesse jesse 37 2007-06-27 00:25 dbtool -> /home/jesse/Desktop/asss/build/dbtool
lrwxrwxrwx 1 jesse jesse 39 2007-06-27 00:25 exec.py -> /home/jesse/Desktop/asss/src/py/exec.py
lrwxrwxrwx 1 jesse jesse 42 2007-06-27 00:25 fg_turf.py -> /home/jesse/Desktop/asss/src/py/fg_turf.py
lrwxrwxrwx 1 jesse jesse 40 2007-06-27 00:25 fg_wz.py -> /home/jesse/Desktop/asss/src/py/fg_wz.py
lrwxrwxrwx 1 jesse jesse 46 2007-06-27 00:25 fm_password.py -> /home/jesse/Desktop/asss/src/py/fm_password.py
lrwxrwxrwx 1 jesse jesse 39 2007-06-27 00:25 funky.so -> /home/jesse/Desktop/asss/build/funky.so
lrwxrwxrwx 1 jesse jesse 40 2007-06-27 00:25 hscore.so -> /home/jesse/Desktop/asss/build/hscore.so
lrwxrwxrwx 1 jesse jesse 39 2007-06-27 00:25 pymod.so -> /home/jesse/Desktop/asss/build/pymod.so
lrwxrwxrwx 1 jesse jesse 41 2007-06-27 00:25 scoring.so -> /home/jesse/Desktop/asss/build/scoring.so
lrwxrwxrwx 1 jesse jesse 38 2007-06-27 00:25 turf.so -> /home/jesse/Desktop/asss/build/turf.so
lrwxrwxrwx 1 jesse jesse 45 2007-06-27 00:25 watchgreen.py -> /home/jesse/Desktop/asss/src/py/watchgreen.py
jesse@Fiesty:~/Desktop/asss$

KrynetiX - Wed Jun 27, 2007 7:39 am
Post subject:
I don't mind giving anyone of you SSH to my computer to help me out, just explain to me what you did, as I'm trying to learn things on my own.
BDwinsAlt - Wed Jun 27, 2007 8:07 am
Post subject:
If that was directed to me, I'm leaving for the beach in literally minutes. Hope you get your issue fix. Please try to let us know what went wrong. Good luck!
Smong - Wed Jun 27, 2007 8:08 pm
Post subject:
That looks like the repository version, you are clearly missing the conf directory. You could use the zone1 directory for your zone files. I haven't got a copy here so I don't know if any of these will work:
a) use ./scripts/run-asss zone1
b) cd to zone1 and type bin/asss
c) copy zone1 to somewhere, then copy the contents of bin into zone1/bin (there's probably a better way, like symlinking it).
Dr Brain - Wed Jun 27, 2007 10:31 pm
Post subject:
cd zone1
ln -s ../bin bin

then use

bin/asss

to start it.

Problem is because all our instructions assumed you were using the downloaded version. But the monotone version has a slightly different structure.
BDwinsAlt - Thu Jun 28, 2007 1:00 am
Post subject:
So all of the previous information was useless anyway. sa_tongue.gif
Doc Flabby - Thu Jun 28, 2007 4:52 am
Post subject:
Dr Brain wrote:

Problem is because all our instructions assumed you were using the downloaded version. But the monotone version has a slightly different structure.


Not really, if you use the build-dist script you can create the downloaded version and use it as normal, thats what i did anyways.
All times are -5 GMT
View topic
Powered by phpBB 2.0 .0.11 © 2001 phpBB Group