Server Help Forum Index Server Help
Community forums for Subgame, ASSS, and bots
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   StatisticsStatistics   RegisterRegister 
 ProfileProfile   Login to check your private messagesLogin to check your private messages   LoginLogin (SSL) 

Server Help | ASSS Wiki (0) | Shanky.com
Compiling AS3 on ubuntu.
Goto page 1, 2  Next
 
Post new topic   Reply to topic Printable version
 View previous topic  Some wormhole help. Post :: Post Zone specific ships  View next topic  
Author Message
Aquarius
Guest


Offline

PostPosted: Mon Jun 25, 2007 10:36 pm    Post subject: Compiling AS3 on ubuntu. Reply to topic Reply with quote

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?
Back to top
Dr Brain
Flip-flopping like a wind surfer


Age:38
Gender:Gender:Male
Joined: Dec 01 2002
Posts: 3502
Location: Hyperspace
Offline

PostPosted: Mon Jun 25, 2007 11:46 pm    Post subject: Reply to topic Reply with quote

Don't use an ide. Go to the command line and:

cd /path/to/asss
cd src
make
_________________
Hyperspace Owner

Smong> so long as 99% deaths feel lame it will always be hyperspace to me
Back to top
View users profile Send private message Add User to Ignore List AIM Address Yahoo Messenger MSN Messenger
Aquarius
Guest


Offline

PostPosted: Tue Jun 26, 2007 12:19 am    Post subject: Reply to topic Reply with quote

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
Back to top
BDwinsAlt (dad pc)
Guest


Offline

PostPosted: Tue Jun 26, 2007 12:33 am    Post subject: Reply to topic Reply with quote

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.
Back to top
Animate Dreams
Gotta buy them all!
(Consumer whore)


Age:36
Gender:Gender:Male
Joined: May 01 2004
Posts: 821
Location: Middle Tennessee
Offline

PostPosted: Tue Jun 26, 2007 12:34 am    Post subject: Reply to topic Reply with quote

He's done that BD, that's the result from "make". He's also already commented out all 3 of those in system.mk.
Back to top
View users profile Send private message Add User to Ignore List Send email Visit posters website AIM Address MSN Messenger
Grelminar
Creator of Asss


Joined: Feb 26 2003
Posts: 378
Offline

PostPosted: Tue Jun 26, 2007 2:19 am    Post subject: Reply to topic Reply with quote

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.
Back to top
View users profile Send private message Add User to Ignore List Send email Visit posters website
BDwinsAlt
Agurus's Posse


Age:33
Gender:Gender:Male
Joined: Jun 16 2003
Posts: 1145
Location: Alabama
Offline

PostPosted: Tue Jun 26, 2007 3:04 am    Post subject: Reply to topic Reply with quote

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
Back to top
View users profile Send private message Add User to Ignore List Send email Visit posters website AIM Address Yahoo Messenger MSN Messenger
Aquarius
Guest


Offline

PostPosted: Tue Jun 26, 2007 3:37 am    Post subject: Reply to topic Reply with quote

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?
Back to top
Aquarius
Guest


Offline

PostPosted: Tue Jun 26, 2007 3:38 am    Post subject: Reply to topic Reply with quote

Nevermind, It goes to build duh.
Back to top
Aquarius
Guest


Offline

PostPosted: Tue Jun 26, 2007 3:46 am    Post subject: Reply to topic Reply with quote

I can't seem to get the right command to execute bin/asss.
Back to top
BDwinsAlt
Agurus's Posse


Age:33
Gender:Gender:Male
Joined: Jun 16 2003
Posts: 1145
Location: Alabama
Offline

PostPosted: Tue Jun 26, 2007 4:46 am    Post subject: Reply to topic Reply with quote

In your MAIN asss path type: ./bin/asss
Back to top
View users profile Send private message Add User to Ignore List Send email Visit posters website AIM Address Yahoo Messenger MSN Messenger
Dr Brain
Flip-flopping like a wind surfer


Age:38
Gender:Gender:Male
Joined: Dec 01 2002
Posts: 3502
Location: Hyperspace
Offline

PostPosted: Tue Jun 26, 2007 7:00 am    Post subject: Reply to topic Reply with quote

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".
Back to top
View users profile Send private message Add User to Ignore List AIM Address Yahoo Messenger MSN Messenger
Animate Dreams
Gotta buy them all!
(Consumer whore)


Age:36
Gender:Gender:Male
Joined: May 01 2004
Posts: 821
Location: Middle Tennessee
Offline

PostPosted: Tue Jun 26, 2007 9:35 am    Post subject: Reply to topic Reply with quote

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. =\
Back to top
View users profile Send private message Add User to Ignore List Send email Visit posters website AIM Address MSN Messenger
Aquarius
Guest


Offline

PostPosted: Tue Jun 26, 2007 12:05 pm    Post subject: Reply to topic Reply with quote

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
Back to top
Aquarius
Guest


Offline

PostPosted: Tue Jun 26, 2007 12:50 pm    Post subject: Reply to topic Reply with quote

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
Back to top
Aquarius
Guest


Offline

PostPosted: Tue Jun 26, 2007 12:53 pm    Post subject: Reply to topic Reply with quote

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
Back to top
Smong
Server Help Squatter


Joined: 1043048991
Posts: 0x91E
Offline

PostPosted: Tue Jun 26, 2007 2:59 pm    Post subject: Reply to topic Reply with quote

Try typing make clean, make deps, then make. Looks like you have a .o file that was compiled with a different (version) compiler.
_________________
ss news
Back to top
View users profile Send private message Add User to Ignore List Visit posters website MSN Messenger
Aquarius
Guest


Offline

PostPosted: Tue Jun 26, 2007 3:09 pm    Post subject: Reply to topic Reply with quote

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
Back to top
Aquarius
Guest


Offline

PostPosted: Tue Jun 26, 2007 3:49 pm    Post subject: Reply to topic Reply with quote

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
Back to top
Smong
Server Help Squatter


Joined: 1043048991
Posts: 0x91E
Offline

PostPosted: Tue Jun 26, 2007 3:53 pm    Post subject: Reply to topic Reply with quote

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.
Back to top
View users profile Send private message Add User to Ignore List Visit posters website MSN Messenger
Aquarius
Guest


Offline

PostPosted: Tue Jun 26, 2007 3:58 pm    Post subject: Reply to topic Reply with quote

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
Back to top
Dr Brain
Flip-flopping like a wind surfer


Age:38
Gender:Gender:Male
Joined: Dec 01 2002
Posts: 3502
Location: Hyperspace
Offline

PostPosted: Tue Jun 26, 2007 11:27 pm    Post subject: Reply to topic Reply with quote

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
Back to top
View users profile Send private message Add User to Ignore List AIM Address Yahoo Messenger MSN Messenger
Aquarius
Guest


Offline

PostPosted: Wed Jun 27, 2007 12:11 am    Post subject: Reply to topic Reply with quote

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]
Back to top
Dr Brain
Flip-flopping like a wind surfer


Age:38
Gender:Gender:Male
Joined: Dec 01 2002
Posts: 3502
Location: Hyperspace
Offline

PostPosted: Wed Jun 27, 2007 12:32 am    Post subject: Reply to topic Reply with quote

"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.
Back to top
View users profile Send private message Add User to Ignore List AIM Address Yahoo Messenger MSN Messenger
Aquarius
Guest


Offline

PostPosted: Wed Jun 27, 2007 1:07 am    Post subject: Reply to topic Reply with quote

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/
Back to top
Display posts from previous:   
Post new topic   Reply to topic    Server Help Forum Index -> ASSS Questions All times are GMT - 5 Hours
Goto page 1, 2  Next
Page 1 of 2

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You can attach files in this forum
You can download files in this forum
View online users | View Statistics | View Ignored List


Software by php BB © php BB Group
Server Load: 663 page(s) served in previous 5 minutes.

phpBB Created this page in 0.573580 seconds : 49 queries executed (76.7%): GZIP compression disabled