mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-01 13:58:06 +00:00
integrate fcgi-2.4.0 and add OML license file
Signed-off-by: YangHaibo <b40869@freescale.com> Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
This commit is contained in:
parent
eb45d8b6c7
commit
4d4ab8fd32
28
meta-oe/licenses/OML
Normal file
28
meta-oe/licenses/OML
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
This FastCGI application library source and object code (the
|
||||
"Software") and its documentation (the "Documentation") are
|
||||
copyrighted by Open Market, Inc ("Open Market"). The following terms
|
||||
apply to all files associated with the Software and Documentation
|
||||
unless explicitly disclaimed in individual files.
|
||||
|
||||
Open Market permits you to use, copy, modify, distribute, and license
|
||||
this Software and the Documentation for any purpose, provided that
|
||||
existing copyright notices are retained in all copies and that this
|
||||
notice is included verbatim in any distributions. No written
|
||||
agreement, license, or royalty fee is required for any of the
|
||||
authorized uses. Modifications to this Software and Documentation may
|
||||
be copyrighted by their authors and need not follow the licensing
|
||||
terms described here. If modifications to this Software and
|
||||
Documentation have new licensing terms, the new terms must be clearly
|
||||
indicated on the first page of each file where they apply.
|
||||
|
||||
OPEN MARKET MAKES NO EXPRESS OR IMPLIED WARRANTY WITH RESPECT TO THE
|
||||
SOFTWARE OR THE DOCUMENTATION, INCLUDING WITHOUT LIMITATION ANY
|
||||
WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. IN
|
||||
NO EVENT SHALL OPEN MARKET BE LIABLE TO YOU OR ANY THIRD PARTY FOR ANY
|
||||
DAMAGES ARISING FROM OR RELATING TO THIS SOFTWARE OR THE
|
||||
DOCUMENTATION, INCLUDING, WITHOUT LIMITATION, ANY INDIRECT, SPECIAL OR
|
||||
CONSEQUENTIAL DAMAGES OR SIMILAR DAMAGES, INCLUDING LOST PROFITS OR
|
||||
LOST DATA, EVEN IF OPEN MARKET HAS BEEN ADVISED OF THE POSSIBILITY OF
|
||||
SUCH DAMAGES. THE SOFTWARE AND DOCUMENTATION ARE PROVIDED "AS IS".
|
||||
OPEN MARKET HAS NO LIABILITY IN CONTRACT, TORT, NEGLIGENCE OR
|
||||
OTHERWISE ARISING OUT OF THIS SOFTWARE OR THE DOCUMENTATION.
|
||||
|
|
@ -0,0 +1,17 @@
|
|||
Upstream-Status: Pending
|
||||
|
||||
Fix EOF not declared issue, following is the error log.
|
||||
fcgio.cpp:70:72: error: 'EOF' was not declared in this scope
|
||||
if (FCGX_PutStr(pbase(), plen, this->fcgx) != plen) return EOF;
|
||||
|
||||
Signed-off-by: Yang Haibo <b40869@freescale.com>
|
||||
--- fcgi-ori/libfcgi/fcgio.cpp 2014-07-28 18:01:00.000000000 +0800
|
||||
+++ fcgi-2.4.0/libfcgi/fcgio.cpp 2014-07-28 18:01:22.000000000 +0800
|
||||
@@ -22,6 +22,7 @@
|
||||
#define DLLAPI __declspec(dllexport)
|
||||
#endif
|
||||
|
||||
+#include <stdio.h>
|
||||
#include <limits.h>
|
||||
#include "fcgio.h"
|
||||
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
Upstream-Status: Pending
|
||||
|
||||
use automake options "foreign" to set the strictness as appropriate
|
||||
|
||||
Signed-off-by: Yang Haibo <b40869@freescale.com>
|
||||
--- fcgi-ori/configure.in 2014-08-05 14:58:35.000000000 +0800
|
||||
+++ fcgi-2.4.0/configure.in 2014-08-05 14:59:08.000000000 +0800
|
||||
@@ -4,8 +4,8 @@
|
||||
dnl generate the file "configure", which is run during the build
|
||||
dnl to configure the system for the local environment.
|
||||
|
||||
-AC_INIT
|
||||
-AM_INIT_AUTOMAKE(fcgi, 2.4.0)
|
||||
+AC_INIT([fcgi], [2.4.0])
|
||||
+AM_INIT_AUTOMAKE([foreign])
|
||||
|
||||
AM_CONFIG_HEADER(fcgi_config.h)
|
||||
|
||||
15
meta-webserver/recipes-support/fcgi_2.4.0.bb
Normal file
15
meta-webserver/recipes-support/fcgi_2.4.0.bb
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
DESCRIPTION = "FastCGI is a protocol for interfacing interactive programs with a web server."
|
||||
HOMEPAGE = "http://www.fastcgi.com"
|
||||
LICENSE = "OML"
|
||||
LIC_FILES_CHKSUM = "file://LICENSE.TERMS;md5=e3aacac3a647af6e7e31f181cda0a06a"
|
||||
|
||||
SRC_URI = "http://fossies.org/linux/www/${BP}.tar.gz \
|
||||
file://Fix_EOF_not_declared_issue.patch \
|
||||
file://add_foreign_to_AM_INIT_AUTOMAKE.patch \
|
||||
"
|
||||
SRC_URI[md5sum] = "d15060a813b91383a9f3c66faf84867e"
|
||||
SRC_URI[sha256sum] = "66fc45c6b36a21bf2fbbb68e90f780cc21a9da1fffbae75e76d2b4402d3f05b9"
|
||||
|
||||
inherit autotools
|
||||
|
||||
PARALLEL_MAKE = ""
|
||||
Loading…
Reference in New Issue
Block a user