* [Buildroot] svn commit: trunk/buildroot/package: database database/mysql_client
@ 2008-06-01 18:08 antab at uclibc.org
2008-06-01 19:14 ` Peter Korsgaard
0 siblings, 1 reply; 4+ messages in thread
From: antab at uclibc.org @ 2008-06-01 18:08 UTC (permalink / raw)
To: buildroot
Author: antab
Date: 2008-06-01 11:08:48 -0700 (Sun, 01 Jun 2008)
New Revision: 22165
Log:
Added database menu to config (maybe move the other databases under it to remove the mess from the main package menu)
Added mysql 5.1 client package, can be used to provide mysql support for PHP. Note: This package has only been tested on AVR32.
Added:
trunk/buildroot/package/database/
trunk/buildroot/package/database/Config.in
trunk/buildroot/package/database/database.mk
trunk/buildroot/package/database/mysql_client/
trunk/buildroot/package/database/mysql_client/Config.in
trunk/buildroot/package/database/mysql_client/mysql_client.mk
Modified:
trunk/buildroot/package/Config.in
Changeset:
Modified: trunk/buildroot/package/Config.in
===================================================================
--- trunk/buildroot/package/Config.in 2008-06-01 18:04:13 UTC (rev 22164)
+++ trunk/buildroot/package/Config.in 2008-06-01 18:08:48 UTC (rev 22165)
@@ -127,6 +127,8 @@
source "package/which/Config.in"
endif
+source "package/database/Config.in"
+
if !BR2_PACKAGE_BUSYBOX_HIDE_OTHERS
# busybox has an editor
Added: trunk/buildroot/package/database/Config.in
===================================================================
--- trunk/buildroot/package/database/Config.in (rev 0)
+++ trunk/buildroot/package/database/Config.in 2008-06-01 18:08:48 UTC (rev 22165)
@@ -0,0 +1,5 @@
+menu "Database"
+
+source "package/database/mysql_client/Config.in"
+
+endmenu
Added: trunk/buildroot/package/database/database.mk
===================================================================
--- trunk/buildroot/package/database/database.mk (rev 0)
+++ trunk/buildroot/package/database/database.mk 2008-06-01 18:08:48 UTC (rev 22165)
@@ -0,0 +1 @@
+include package/database/*/*.mk
Added: trunk/buildroot/package/database/mysql_client/Config.in
===================================================================
--- trunk/buildroot/package/database/mysql_client/Config.in (rev 0)
+++ trunk/buildroot/package/database/mysql_client/Config.in 2008-06-01 18:08:48 UTC (rev 22165)
@@ -0,0 +1,5 @@
+config BR2_PACKAGE_MYSQL_CLIENT
+ bool "MySQL 5.1 client"
+ default n
+ help
+ MySQL 5.1 client
Added: trunk/buildroot/package/database/mysql_client/mysql_client.mk
===================================================================
--- trunk/buildroot/package/database/mysql_client/mysql_client.mk (rev 0)
+++ trunk/buildroot/package/database/mysql_client/mysql_client.mk 2008-06-01 18:08:48 UTC (rev 22165)
@@ -0,0 +1,30 @@
+#############################################################
+#
+# MySQL 5.1 Client
+#
+#############################################################
+MYSQL_CLIENT_VERSION = 5.1.23-rc
+MYSQL_CLIENT_SOURCE = mysql-$(MYSQL_CLIENT_VERSION).tar.gz
+MYSQL_CLIENT_SITE = http://mirrors.24-7-solutions.net/pub/mysql/Downloads/MySQL-5.1
+MYSQL_CLIENT_INSTALL_TARGET = YES
+MYSQL_CLIENT_INSTALL_STAGING = YES
+MYSQL_CLIENT_DEPENDENCIES = uclibc readline
+
+MYSQL_CLIENT_CONF_ENV = ac_cv_sys_restartable_syscalls=yes
+MYSQL_CLIENT_CONF_OPT = \
+ --target=$(GNU_TARGET_NAME) \
+ --host=$(GNU_TARGET_NAME) \
+ --build=$(GNU_HOST_NAME) \
+ --program-prefix="" \
+ --prefix=/usr \
+ --without-ndb-binlog \
+ --without-server \
+ --without-docs \
+ --without-man \
+ --without-readline \
+ --without-libedit \
+ --with-low-memory \
+ --enable-thread-safe-client \
+ $(ENABLE_DEBUG)
+
+$(eval $(call AUTOTARGETS,package,mysql_client))
^ permalink raw reply [flat|nested] 4+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package: database database/mysql_client
2008-06-01 18:08 [Buildroot] svn commit: trunk/buildroot/package: database database/mysql_client antab at uclibc.org
@ 2008-06-01 19:14 ` Peter Korsgaard
2008-06-01 19:35 ` Arnar Mar Sig
0 siblings, 1 reply; 4+ messages in thread
From: Peter Korsgaard @ 2008-06-01 19:14 UTC (permalink / raw)
To: buildroot
>>>>> "antab" == antab <antab@uclibc.org> writes:
antab> Author: antab
antab> Date: 2008-06-01 11:08:48 -0700 (Sun, 01 Jun 2008)
antab> New Revision: 22165
antab> Log:
antab> Added database menu to config (maybe move the other databases
antab> under it to remove the mess from the main package menu) Added
antab> mysql 5.1 client package, can be used to provide mysql support
antab> for PHP. Note: This package has only been tested on AVR32.
...
antab> Added: trunk/buildroot/package/database/Config.in
antab> ===================================================================
antab> --- trunk/buildroot/package/database/Config.in (rev 0)
antab> +++ trunk/buildroot/package/database/Config.in 2008-06-01 18:08:48 UTC (rev 22165)
antab> @@ -0,0 +1,5 @@
antab> +menu "Database"
antab> +
antab> +source "package/database/mysql_client/Config.in"
antab> +
antab> +endmenu
The other sub menus use menuconfig instead of menu, please do as well.
antab> Added: trunk/buildroot/package/database/database.mk
antab> ===================================================================
antab> --- trunk/buildroot/package/database/database.mk (rev 0)
antab> +++ trunk/buildroot/package/database/database.mk 2008-06-01 18:08:48 UTC (rev 22165)
antab> @@ -0,0 +1 @@
antab> +include package/database/*/*.mk
antab> Added: trunk/buildroot/package/database/mysql_client/Config.in
antab> ===================================================================
antab> --- trunk/buildroot/package/database/mysql_client/Config.in (rev 0)
antab> +++ trunk/buildroot/package/database/mysql_client/Config.in 2008-06-01 18:08:48 UTC (rev 22165)
antab> @@ -0,0 +1,5 @@
antab> +config BR2_PACKAGE_MYSQL_CLIENT
antab> + bool "MySQL 5.1 client"
antab> + default n
antab> + help
antab> + MySQL 5.1 client
Please don't add the version number to the help text.
antab> Added: trunk/buildroot/package/database/mysql_client/mysql_client.mk
antab> ===================================================================
antab> --- trunk/buildroot/package/database/mysql_client/mysql_client.mk (rev 0)
antab> +++ trunk/buildroot/package/database/mysql_client/mysql_client.mk 2008-06-01 18:08:48 UTC (rev 22165)
antab> @@ -0,0 +1,30 @@
antab> +#############################################################
antab> +#
antab> +# MySQL 5.1 Client
antab> +#
antab> +#############################################################
antab> +MYSQL_CLIENT_VERSION = 5.1.23-rc
antab> +MYSQL_CLIENT_SOURCE = mysql-$(MYSQL_CLIENT_VERSION).tar.gz
antab> +MYSQL_CLIENT_SITE = http://mirrors.24-7-solutions.net/pub/mysql/Downloads/MySQL-5.1
Is that the official download URL?
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 4+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package: database database/mysql_client
2008-06-01 19:14 ` Peter Korsgaard
@ 2008-06-01 19:35 ` Arnar Mar Sig
2008-06-01 20:34 ` Peter Korsgaard
0 siblings, 1 reply; 4+ messages in thread
From: Arnar Mar Sig @ 2008-06-01 19:35 UTC (permalink / raw)
To: buildroot
On Jun 1, 2008, at 7:14 PM, Peter Korsgaard wrote:
> antab> Added: trunk/buildroot/package/database/Config.in
> antab>
> ===================================================================
> antab> --- trunk/buildroot/package/database/
> Config.in (rev 0)
> antab> +++ trunk/buildroot/package/database/Config.in 2008-06-01
> 18:08:48 UTC (rev 22165)
> antab> @@ -0,0 +1,5 @@
> antab> +menu "Database"
> antab> +
> antab> +source "package/database/mysql_client/Config.in"
> antab> +
> antab> +endmenu
>
> The other sub menus use menuconfig instead of menu, please do as well.
Sorry about that, fixed
> antab> Added: trunk/buildroot/package/database/mysql_client/Config.in
> antab>
> ===================================================================
> antab> --- trunk/buildroot/package/database/mysql_client/
> Config.in (rev 0)
> antab> +++ trunk/buildroot/package/database/mysql_client/Config.in
> 2008-06-01 18:08:48 UTC (rev 22165)
> antab> @@ -0,0 +1,5 @@
> antab> +config BR2_PACKAGE_MYSQL_CLIENT
> antab> + bool "MySQL 5.1 client"
> antab> + default n
> antab> + help
> antab> + MySQL 5.1 client
>
> Please don't add the version number to the help text.
Removed from the helptext, Keeping it in the menu text, There are so
many changes between the 4.x - 5.x versions that one needs to know the
major version number.
>
> antab> Added: trunk/buildroot/package/database/mysql_client/
> mysql_client.mk
> antab>
> ===================================================================
> antab> --- trunk/buildroot/package/database/mysql_client/
> mysql_client.mk (rev 0)
> antab> +++ trunk/buildroot/package/database/mysql_client/
> mysql_client.mk 2008-06-01 18:08:48 UTC (rev 22165)
> antab> @@ -0,0 +1,30 @@
> antab> +#############################################################
> antab> +#
> antab> +# MySQL 5.1 Client
> antab> +#
> antab> +#############################################################
> antab> +MYSQL_CLIENT_VERSION = 5.1.23-rc
> antab> +MYSQL_CLIENT_SOURCE = mysql-$(MYSQL_CLIENT_VERSION).tar.gz
> antab> +MYSQL_CLIENT_SITE = http://mirrors.24-7-solutions.net/pub/mysql/Downloads/MySQL-5.1
>
> Is that the official download URL?
This mirror was found after searching the mysql.com site.
>
>
> --
> Bye, Peter Korsgaard
> _______________________________________________
> buildroot mailing list
> buildroot at uclibc.org
> http://busybox.net/mailman/listinfo/buildroot
Greets
Arnar Mar Sig
Valka ehf
^ permalink raw reply [flat|nested] 4+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package: database database/mysql_client
2008-06-01 19:35 ` Arnar Mar Sig
@ 2008-06-01 20:34 ` Peter Korsgaard
0 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2008-06-01 20:34 UTC (permalink / raw)
To: buildroot
>>>>> "Arnar" == Arnar Mar Sig <antab@valka.is> writes:
Hi,
antab> +endmenu
>>
>> The other sub menus use menuconfig instead of menu, please do as well.
Arnar> Sorry about that, fixed
No problem, but please do commit the fix (you don't seem to have done
that yet).
>> Please don't add the version number to the help text.
Arnar> Removed from the helptext, Keeping it in the menu text, There are so
Arnar> many changes between the 4.x - 5.x versions that one needs to know the
Arnar> major version number.
The maybe simply call it MYSQL5 or 5.x ?
>> Is that the official download URL?
Arnar> This mirror was found after searching the mysql.com site.
Ok, I don't really know much about mysql, just seemed odd.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2008-06-01 20:34 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-06-01 18:08 [Buildroot] svn commit: trunk/buildroot/package: database database/mysql_client antab at uclibc.org
2008-06-01 19:14 ` Peter Korsgaard
2008-06-01 19:35 ` Arnar Mar Sig
2008-06-01 20:34 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox