Tests about a simple python3 fastcgi runner using libfcgi and the Python-C API.
python
c
wsgi
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Makefile.am 275B

1234567891011
  1. bin_PROGRAMS = pyfcgi
  2. noinst_LIBRARIES = libpyfcgi.a
  3. libpyfcgi_a_SOURCES = logger.c pyworker.c responder.c
  4. libpyfcgi_a_CFLAGS = $(PYTHON_CFLAGS)
  5. pyfcgi_SOURCES = main.c $(libpyfcgi_a_SOURCES)
  6. pyfcgi_CFLAGS = $(PYTHON_CFLAGS) $(AM_CFLAGS)
  7. pyfcgi_LDADD = $(PYTHON_LDFLAGS)