h1. Download, Compile & Install {{>toc}} h2. Download from site To download gmysqlcc from site, go to "Files":/projects/list_files/3 section. To uncompress the file, type this command :
$ tar zxf file_name.tar.gz
h2. Download from Subversion To download gmysqlcc via Subversion, type these commands in a terminal :
$ svn co http://svn.thepozer.org/gmysqlcc/trunk gmysqlcc
h2. Compile and Install (version >= 0.2.0) If you have got source from Subversion, you need to do some steps before in gmysqlcc directory :
$ aclocale
$ automake -a -c
$ autoconf
These steps generate the configure script. If you have downloaded the source package, start here. Now it's generics configure's steps :
$ ./configure
$ make
You can use the following option : --with-gtksourceview to activate the syntax highlighting.
$ ./configure --with-gtksourceview
$ make
This option need the development version of the library package gtksourceview. (The package name usualy end with -dev or -devel). To install gmysqlcc, you need to be root. Just type :
$ make install
h2. Compile and Install (version < 0.2.0) To generate binary of gmysqlcc, type this command in gmysqlcc directory :
$ make nodbg
To install gmysqlcc, you need to be root. These 2 commands have the same effect :
$ make install
or
$ cp gmysqlcc /usr/local/bin