Tests about a simple python3 fastcgi runner using libfcgi and the Python-C API.
python
c
wsgi
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

autogen.sh 271B

1234567891011
  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. aclocal
  6. automake -a -c
  7. autoconf