Tests about a simple python3 fastcgi runner using libfcgi and the Python-C API.
python
c
wsgi
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

autogen.sh 285B

123456789101112
  1. #!/bin/sh
  2. [ "$1" = "clean" ] && [ -f "Makefile" ] && make distclean # pour les .o
  3. rm -fR configure aclocal.m4 autom4te.cache src/Makefile.in tests/Makefile.in Makefile.in compile depcomp install-sh missing
  4. [ "$1" = "clean" ] && exit 0
  5. libtoolize -i
  6. aclocal
  7. autoconf
  8. automake -a -c