Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update 2.4.3 #66

Merged
merged 36 commits into from
Nov 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
b4e48a7
Trim trailing whitespace
bobtfish Nov 29, 2009
6447e29
Add FILENO method to FCGI.pm to comply with IO:: interface
bobtfish Nov 29, 2009
f834c17
merge of https://github.com/perl-catalyst/FCGI/perl in perl
mcarbonneaux Nov 4, 2024
65571da
change LICENSE.TERMS to LICENSE
mcarbonneaux Nov 4, 2024
c5d5c02
fix EXTRA_DIST and DISTCLEANFILES files list
mcarbonneaux Nov 4, 2024
6b7914b
bump version to 2.4.3
mcarbonneaux Nov 4, 2024
ec8c97f
fix autoreconf
mcarbonneaux Nov 4, 2024
e13a1f9
modify build instruction
mcarbonneaux Nov 4, 2024
29750f0
add MYMETA.*
mcarbonneaux Nov 4, 2024
054cb00
fix clean list
mcarbonneaux Nov 4, 2024
18c403d
fix autoreconf warning
mcarbonneaux Nov 4, 2024
fbce823
add github actions
mcarbonneaux Nov 4, 2024
8a63108
change branch of flow to test
mcarbonneaux Nov 5, 2024
4a369ef
fix package name in flow build
mcarbonneaux Nov 5, 2024
9f5789a
fix no answer package install
mcarbonneaux Nov 5, 2024
0d59256
add perl module build and test
mcarbonneaux Nov 5, 2024
45aaffd
try to fix step name
mcarbonneaux Nov 5, 2024
556e40d
try run-name in place of name for display step name
mcarbonneaux Nov 5, 2024
c149f33
fix step name
mcarbonneaux Nov 5, 2024
e72ab5f
fix multiple run
mcarbonneaux Nov 5, 2024
f3fe46a
fix working-directory
mcarbonneaux Nov 5, 2024
bf8231d
try windows build
mcarbonneaux Nov 5, 2024
80b7e27
try build windows
mcarbonneaux Nov 5, 2024
25eb76e
try use msvc dev cmd
mcarbonneaux Nov 5, 2024
920a651
try 2019
mcarbonneaux Nov 5, 2024
37160df
rollback to 2022
mcarbonneaux Nov 5, 2024
a9f6876
try to fix windows about wait.h
mcarbonneaux Nov 5, 2024
99c1b0a
try to fix SIGHUP not existing in windows in cgi-fcgi
mcarbonneaux Nov 5, 2024
27553b9
try to fix windows version of cgi-fcgi
mcarbonneaux Nov 5, 2024
c288b24
force x86
mcarbonneaux Nov 5, 2024
d4dfb79
try to fixx arch
mcarbonneaux Nov 5, 2024
aa57f8d
remove tab in yaml
mcarbonneaux Nov 5, 2024
06ce2e5
remove the last kill for windows
mcarbonneaux Nov 5, 2024
608d0b9
remove amd64_x86 arch
mcarbonneaux Nov 5, 2024
99a4b98
add amd64 to windows build
mcarbonneaux Nov 5, 2024
1cb472d
remove machine option in link.exe
mcarbonneaux Nov 5, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 49 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: Build CI

on:
push:
branches: [ perl-FCGI-merge ]
pull_request:
branches: [ perl-FCGI-merge ]

jobs:
build-linux:

runs-on: ubuntu-latest
container: ubuntu:24.04

steps:
- uses: actions/checkout@v4
- name: setup os
run: apt-get update && apt-get -y install libfcgi-client-perl autoconf automake libtool make gcc make m4 g++
- name: libfcgi - autogen.sh
run: ./autogen.sh
- name: libfcgi-configure
run: ./configure
- name: libfcgi - make
run: make
- name: perl module - distrib and perl Makefile.PL
working-directory: perl
run: ./distrib && perl Makefile.PL
- name: perl module - make
working-directory: perl
run: make
- name: perl module - make test
working-directory: perl
run: make test

build-windows:
runs-on: windows-2022
strategy:
matrix:
arch:
- x86
- amd64

steps:
- uses: actions/checkout@v4
- uses: ilammy/msvc-dev-cmd@v1
with:
arch: ${{ matrix.arch }}
- name: build with nmake
run: nmake -f Makefile.nt
File renamed without changes.
38 changes: 19 additions & 19 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@

ACLOCAL_AMFLAGS = -I m4

DISTCLEANFILES= compile config.guess config.sub configure depcomp fcgi_config.h.in fcgi_config.h.in~ \
DISTCLEANFILES= compile config.guess config.sub configure configure~ depcomp fcgi_config.h.in fcgi_config.h.in~ \
aclocal.m4 m4/libtool.m4 m4/lt*.m4 Makefile.in install-sh missing ltmain.sh \
COPYING INSTALL
COPYING INSTALL fcgi-*.tar.gz

SUBDIRS = libfcgi cgi-fcgi include

Expand All @@ -28,7 +28,7 @@ pkgconfigdir = @pkgconfigdir@
pkgconfig_DATA = fcgi.pc \
fcgi++.pc

EXTRA_DIST = LICENSE.TERMS \
EXTRA_DIST = LICENSE \
Makefile.nt \
cgi-fcgi/cgi-fcgi.mak \
examples/authorizer.mak \
Expand All @@ -53,22 +53,22 @@ EXTRA_DIST = LICENSE.TERMS \
java/FCGIRequest.java \
libfcgi/os_unix.c \
libfcgi/os_win32.c \
perl/ChangeLog \
perl/FCGI.PL \
perl/FCGI.XL \
perl/MANIFEST \
perl/Makefile.PL \
perl/README \
perl/aclocal.m4 \
perl/configure \
perl/configure.in \
perl/echo.PL \
perl/fcgi_config.h.in \
perl/oldinterface.pod \
perl/remote.PL \
perl/threaded.PL \
perl/typemap \
perl/version.pm \
perl/eg/echo.pl \
perl/eg/remote.pl \
perl/eg/threaded.pl \
perl/README \
perl/ChangeLog \
perl/t/02-unix_domain_socket.t \
perl/t/01-load.t \
perl/FCGI.pm \
perl/Makefile.PL \
perl/MANIFEST \
perl/MANIFEST.SKIP \
perl/configure.in \
perl/distrib \
perl/configure.readme \
perl/typemap \
perl/FCGI.xs \
Win32/FastCGI.dsw \
Win32/authorizer.dsp \
Win32/cgifcgi.dsp \
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ FastCGI Developer's Kit
-----------------------

Copyright (c) 1996 Open Market, Inc.
See the file "[LICENSE.TERMS](LICENSE.TERMS)" for information on usage and redistribution
See the file "[LICENSE](LICENSE)" for information on usage and redistribution
of this file, and for a DISCLAIMER OF ALL WARRANTIES.

Documentations
Expand Down
12 changes: 11 additions & 1 deletion cgi-fcgi/cgi-fcgi.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*
* Copyright (c) 1996 Open Market, Inc.
*
* See the file "LICENSE.TERMS" for information on usage and redistribution
* See the file "LICENSE" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
*/
Expand All @@ -18,7 +18,9 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#ifndef _WIN32
#include <sys/wait.h>
#endif
#include <signal.h>

#include "fcgi_config.h"
Expand Down Expand Up @@ -742,7 +744,9 @@ void handle_shutdown(int s)
{
/* Kill our children processes */
signal(s, SIG_IGN);
#ifndef _WIN32
kill(0, s);
#endif

exit(0);
}
Expand Down Expand Up @@ -787,11 +791,13 @@ int main(int argc, char **argv)
bytesToRead = 0;
}

#ifndef _WIN32
/* Become a process group leader */
setsid();

/* Register our signal handler */
signal(SIGHUP, handle_shutdown);
#endif
signal(SIGINT, handle_shutdown);
signal(SIGTERM, handle_shutdown);

Expand All @@ -801,13 +807,17 @@ int main(int argc, char **argv)
if(doStart && (!doBind || appServerSock < 0)) {
FCGI_Start(bindPath, appPath, nServers);
if(!doBind) {
#ifndef _WIN32
if(!doDaemon) {
for(pid=nServers; pid != 0; pid--) {
wait(0);
}
}
#endif
signal(SIGTERM, SIG_IGN);
#ifndef _WIN32
kill(0, SIGTERM);
#endif
exit(0);
} else {
appServerSock = OS_FcgiConnect(bindPath);
Expand Down
4 changes: 2 additions & 2 deletions cgi-fcgi/cgi-fcgi.mak
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ BSC32_FLAGS=/nologo /o"$(OUTDIR)\cgifcgi.bsc"
BSC32_SBRS= \

LINK32=link.exe
LINK32_FLAGS=libfcgi.lib /nologo /pdb:none /machine:IX86 /out:"$(OUTDIR)\cgi-fcgi.exe" /libpath:"..\libfcgi\Release"
LINK32_FLAGS=libfcgi.lib /nologo /pdb:none /out:"$(OUTDIR)\cgi-fcgi.exe" /libpath:"..\libfcgi\Release"
LINK32_OBJS= \
"$(INTDIR)\cgi-fcgi.obj" \
"..\libfcgi\Release\libfcgi.lib"
Expand Down Expand Up @@ -162,7 +162,7 @@ BSC32_SBRS= \
<<

LINK32=link.exe
LINK32_FLAGS=libfcgi.lib /nologo /profile /debug /machine:IX86 /out:"$(OUTDIR)\cgi-fcgi.exe" /libpath:"..\libfcgi\Debug"
LINK32_FLAGS=libfcgi.lib /nologo /profile /debug /out:"$(OUTDIR)\cgi-fcgi.exe" /libpath:"..\libfcgi\Debug"
LINK32_OBJS= \
"$(INTDIR)\cgi-fcgi.obj" \
"..\libfcgi\Debug\libfcgi.lib"
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ dnl This file is an input file used by the GNU "autoconf" program to
dnl generate the file "configure", which is run during the build
dnl to configure the system for the local environment.

AC_INIT([fcgi], [2.4.2])
AC_INIT([fcgi], [2.4.3])
AM_INIT_AUTOMAKE([1.11 foreign])
AC_CONFIG_MACRO_DIR([m4])
AM_CONFIG_HEADER(fcgi_config.h)
Expand Down
2 changes: 1 addition & 1 deletion doc/FCGI_Accept.3
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,6 @@ SEE ALSO

HISTORY
Copyright (c) 1996 Open Market, Inc.
See the file "LICENSE.TERMS" for information on usage and redistribution
See the file "LICENSE" for information on usage and redistribution
of this file, and for a DISCLAIMER OF ALL WARRANTIES.
$Id: FCGI_Accept.3,v 1.1.1.1 1997/09/16 15:36:25 stanleyg Exp $
2 changes: 1 addition & 1 deletion doc/FCGI_Finish.3
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@ SEE ALSO

HISTORY
Copyright (c) 1996 Open Market, Inc.
See the file "LICENSE.TERMS" for information on usage and redistribution
See the file "LICENSE" for information on usage and redistribution
of this file, and for a DISCLAIMER OF ALL WARRANTIES.
$Id: FCGI_Finish.3,v 1.1.1.1 1997/09/16 15:36:25 stanleyg Exp $
2 changes: 1 addition & 1 deletion doc/FCGI_SetExitStatus.3
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ SEE ALSO

HISTORY
Copyright (c) 1996 Open Market, Inc.
See the file "LICENSE.TERMS" for information on usage and redistribution
See the file "LICENSE" for information on usage and redistribution
of this file, and for a DISCLAIMER OF ALL WARRANTIES.
$Id: FCGI_SetExitStatus.3,v 1.1.1.1 1997/09/16 15:36:25 stanleyg Exp $
2 changes: 1 addition & 1 deletion doc/FCGI_StartFilterData.3
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,6 @@ SEE ALSO

HISTORY
Copyright (c) 1996 Open Market, Inc.
See the file "LICENSE.TERMS" for information on usage and redistribution
See the file "LICENSE" for information on usage and redistribution
of this file, and for a DISCLAIMER OF ALL WARRANTIES.
$Id: FCGI_StartFilterData.3,v 1.1.1.1 1997/09/16 15:36:26 stanleyg Exp $
2 changes: 1 addition & 1 deletion doc/cgi-fcgi.1
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,6 @@ BUGS

HISTORY
Copyright (c) 1996 Open Market, Inc.
See the file "LICENSE.TERMS" for information on usage and redistribution
See the file "LICENSE" for information on usage and redistribution
of this file, and for a DISCLAIMER OF ALL WARRANTIES.
$Id: cgi-fcgi.1,v 1.1.1.1 1997/09/16 15:36:26 stanleyg Exp $
2 changes: 1 addition & 1 deletion doc/fastcgi-whitepaper/fastcgi.htm
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
</STYLE>
</HEAD>
<!--Copyright (c) 1996 Open Market, Inc. -->
<!--See the file "LICENSE.TERMS" for information on usage and redistribution-->
<!--See the file "LICENSE" for information on usage and redistribution-->
<!--of this file, and for a DISCLAIMER OF ALL WARRANTIES. -->
<!-- $Id: fastcgi.htm,v 1.4 2002/02/25 00:45:06 robs Exp $ -->
<BODY>
Expand Down
2 changes: 1 addition & 1 deletion doc/fcgi-devel-kit.htm
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ <H3 CLASS="c2">
FastCGI Developer&#39;s Kit
</H3>
<!--Copyright (c) 1996 Open Market, Inc. -->
<!--See the file "LICENSE.TERMS" for information on usage and redistribution-->
<!--See the file "LICENSE" for information on usage and redistribution-->
<!--of this file, and for a DISCLAIMER OF ALL WARRANTIES. -->
<P CLASS="c1">
Mark R. Brown<BR>
Expand Down
2 changes: 1 addition & 1 deletion doc/fcgi-java.htm
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ <H3>
</H3>
</DIV>
<!--Copyright (c) 1996 Open Market, Inc. -->
<!--See the file "LICENSE.TERMS" for information on usage and redistribution-->
<!--See the file "LICENSE" for information on usage and redistribution-->
<!--of this file, and for a DISCLAIMER OF ALL WARRANTIES. -->
<!-- $Id: fcgi-java.htm,v 1.4 2002/02/25 00:42:59 robs Exp $ -->
<P CLASS="c2">
Expand Down
2 changes: 1 addition & 1 deletion doc/fcgi-perf.htm
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ <H3>
</H3>
</DIV>
<!--Copyright (c) 1996 Open Market, Inc. -->
<!--See the file "LICENSE.TERMS" for information on usage and redistribution-->
<!--See the file "LICENSE" for information on usage and redistribution-->
<!--of this file, and for a DISCLAIMER OF ALL WARRANTIES. -->
<DIV CLASS="c1">
Mark R. Brown<BR>
Expand Down
2 changes: 1 addition & 1 deletion doc/fcgi-perl.htm
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ <H3>
</H3>
</DIV>
<!--Copyright (c) 1996 Open Market, Inc. -->
<!--See the file "LICENSE.TERMS" for information on usage and redistribution-->
<!--See the file "LICENSE" for information on usage and redistribution-->
<!--of this file, and for a DISCLAIMER OF ALL WARRANTIES. -->
<H5 CLASS="c2">
Copyright &copy; 1996 Open Market, Inc. 245 First Street, Cambridge, MA 02142 U.S.A.<BR>
Expand Down
2 changes: 1 addition & 1 deletion doc/fcgi-spec.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<!--Copyright (c) 1996 Open Market, Inc. -->
<!--See the file "LICENSE.TERMS" for information on usage and redistribution-->
<!--See the file "LICENSE" for information on usage and redistribution-->
<!--of this file, and for a DISCLAIMER OF ALL WARRANTIES. -->
<HEAD>
<TITLE>
Expand Down
2 changes: 1 addition & 1 deletion doc/fcgi-tcl.htm
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ <H3>
</H3>
</DIV>
<!--Copyright (c) 1996 Open Market, Inc. -->
<!--See the file "LICENSE.TERMS" for information on usage and redistribution-->
<!--See the file "LICENSE" for information on usage and redistribution-->
<!--of this file, and for a DISCLAIMER OF ALL WARRANTIES. -->
<P CLASS="c2">
Michael S. Shanzer<BR>
Expand Down
2 changes: 1 addition & 1 deletion doc/overview.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ <H2>
</H2>
</DIV>
<!--Copyright (c) 1996 Open Market, Inc. -->
<!--See the file "LICENSE.TERMS" for information on usage and redistribution-->
<!--See the file "LICENSE" for information on usage and redistribution-->
<!--of this file, and for a DISCLAIMER OF ALL WARRANTIES. -->
<!-- $Id: overview.html,v 1.4 2002/02/25 00:42:59 robs Exp $ -->
<UL>
Expand Down
2 changes: 1 addition & 1 deletion examples/authorizer.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* FastCGI example Authorizer program using fcgi_stdio library
*
* Copyright (c) 1996 Open Market, Inc.
* See the file "LICENSE.TERMS" for information on usage and redistribution
* See the file "LICENSE" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
* $Id: authorizer.c,v 1.1 2001/06/19 15:30:02 robs Exp $
Expand Down
4 changes: 2 additions & 2 deletions examples/authorizer.mak
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ BSC32_FLAGS=/nologo /o"$(OUTDIR)\authorizer.bsc"
BSC32_SBRS= \

LINK32=link.exe
LINK32_FLAGS=libfcgi.lib /nologo /pdb:none /machine:IX86 /out:"$(OUTDIR)\authorizer.exe" /libpath:"..\libfcgi\Release"
LINK32_FLAGS=libfcgi.lib /nologo /pdb:none /out:"$(OUTDIR)\authorizer.exe" /libpath:"..\libfcgi\Release"
LINK32_OBJS= \
"$(INTDIR)\authorizer.obj" \
"..\libfcgi\Release\libfcgi.lib"
Expand Down Expand Up @@ -162,7 +162,7 @@ BSC32_SBRS= \
<<

LINK32=link.exe
LINK32_FLAGS=libfcgi.lib /nologo /profile /debug /machine:IX86 /out:"$(OUTDIR)\authorizer.exe" /libpath:"..\libfcgi\Debug"
LINK32_FLAGS=libfcgi.lib /nologo /profile /debug /out:"$(OUTDIR)\authorizer.exe" /libpath:"..\libfcgi\Debug"
LINK32_OBJS= \
"$(INTDIR)\authorizer.obj" \
"..\libfcgi\Debug\libfcgi.lib"
Expand Down
4 changes: 2 additions & 2 deletions examples/echo-cpp.mak
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ BSC32_FLAGS=/nologo /o"$(OUTDIR)\echo-cpp.bsc"
BSC32_SBRS= \

LINK32=link.exe
LINK32_FLAGS=libfcgi.lib /nologo /pdb:none /machine:IX86 /out:"$(OUTDIR)\echo-cpp.exe" /libpath:"..\libfcgi\Release"
LINK32_FLAGS=libfcgi.lib /nologo /pdb:none /out:"$(OUTDIR)\echo-cpp.exe" /libpath:"..\libfcgi\Release"
LINK32_OBJS= \
"$(INTDIR)\echo-cpp.obj"

Expand Down Expand Up @@ -162,7 +162,7 @@ BSC32_SBRS= \
<<

LINK32=link.exe
LINK32_FLAGS=libfcgi.lib /nologo /profile /debug /machine:IX86 /out:"$(OUTDIR)\echo-cpp.exe" /libpath:"..\libfcgi\Debug"
LINK32_FLAGS=libfcgi.lib /nologo /profile /debug /out:"$(OUTDIR)\echo-cpp.exe" /libpath:"..\libfcgi\Debug"
LINK32_OBJS= \
"$(INTDIR)\echo-cpp.obj"

Expand Down
2 changes: 1 addition & 1 deletion examples/echo-x.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*
* Copyright (c) 1996 Open Market, Inc.
*
* See the file "LICENSE.TERMS" for information on usage and redistribution
* See the file "LICENSE" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
*/
Expand Down
2 changes: 1 addition & 1 deletion examples/echo.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*
* Copyright (c) 1996 Open Market, Inc.
*
* See the file "LICENSE.TERMS" for information on usage and redistribution
* See the file "LICENSE" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
*/
Expand Down
4 changes: 2 additions & 2 deletions examples/echo.mak
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ BSC32_FLAGS=/nologo /o"$(OUTDIR)\echo.bsc"
BSC32_SBRS= \

LINK32=link.exe
LINK32_FLAGS=libfcgi.lib /nologo /pdb:none /machine:IX86 /out:"$(OUTDIR)\echo.exe" /libpath:"..\libfcgi\Release"
LINK32_FLAGS=libfcgi.lib /nologo /pdb:none /out:"$(OUTDIR)\echo.exe" /libpath:"..\libfcgi\Release"
LINK32_OBJS= \
"$(INTDIR)\echo.obj" \
"..\libfcgi\Release\libfcgi.lib"
Expand Down Expand Up @@ -163,7 +163,7 @@ BSC32_SBRS= \
<<

LINK32=link.exe
LINK32_FLAGS=libfcgi.lib /nologo /profile /map:"$(INTDIR)\echo.map" /debug /machine:IX86 /out:"$(OUTDIR)\echo.exe" /libpath:"..\libfcgi\Debug"
LINK32_FLAGS=libfcgi.lib /nologo /profile /map:"$(INTDIR)\echo.map" /debug /out:"$(OUTDIR)\echo.exe" /libpath:"..\libfcgi\Debug"
LINK32_OBJS= \
"$(INTDIR)\echo.obj" \
"..\libfcgi\Debug\libfcgi.lib"
Expand Down
Loading