diff options
author | Nicolas Thill <nico@openwrt.org> | 2005-08-30 08:03:58 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2005-08-30 08:03:58 +0000 |
commit | 504d33b860434708c3c31e32148b2b063ed71a3d (patch) | |
tree | da70bdaa5b4cbe5a5ee5f189d7764b1069b5add1 /package/curl/Config.in | |
parent | dff508d7732b22e8aa6a42de4014b26bedff61f9 (diff) | |
download | upstream-504d33b860434708c3c31e32148b2b063ed71a3d.tar.gz upstream-504d33b860434708c3c31e32148b2b063ed71a3d.tar.bz2 upstream-504d33b860434708c3c31e32148b2b063ed71a3d.zip |
add curl package
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1792 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/curl/Config.in')
-rw-r--r-- | package/curl/Config.in | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/package/curl/Config.in b/package/curl/Config.in new file mode 100644 index 0000000000..6f360557f4 --- /dev/null +++ b/package/curl/Config.in @@ -0,0 +1,29 @@ +config BR2_COMPILE_CURL + bool + default n + depends BR2_PACKAGE_LIBCURL + +config BR2_PACKAGE_LIBCURL + tristate "libcurl - A client-side URL transfer library" +# default m if CONFIG_DEVEL + default n + select BR2_COMPILE_CURL + select BR2_PACKAGE_LIBOPENSSL + select BR2_PACKAGE_ZLIB + help + A client-side URL transfer library. + + http://curl.haxx.se/ + + +config BR2_PACKAGE_CURL + tristate "curl - A client-side URL transfer tool" +# default m if CONFIG_DEVEL + default n + depends BR2_PACKAGE_LIBCURL + help + A client-side URL transfer tool. + + http://curl.haxx.se/ + + |