зеркало из https://github.com/mono/xsp.git
[Shim] Initial commit
This commit is contained in:
Родитель
add5722f58
Коммит
00fabf50f9
|
@ -28,3 +28,6 @@ lib/fpm_helper.o
|
|||
lib/fpm_helper.lo
|
||||
lib/.deps
|
||||
lib/.libs
|
||||
shim/shim
|
||||
shim/shim-shim.o
|
||||
shim/.deps
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
SUBDIRS=build man src test tools scripts packaging lib
|
||||
SUBDIRS=build man src test tools scripts packaging lib shim
|
||||
ACLOCAL_AMFLAGS += -I build/m4
|
||||
|
||||
if UNITTESTS
|
||||
|
|
|
@ -137,6 +137,7 @@ AC_CONFIG_FILES([Makefile
|
|||
packaging/opensuse/Makefile
|
||||
scripts/Makefile
|
||||
lib/Makefile
|
||||
shim/Makefile
|
||||
src/Makefile
|
||||
src/Mono.WebServer.Apache/Makefile
|
||||
src/Mono.WebServer.FastCgi/Makefile
|
||||
|
|
|
@ -0,0 +1,7 @@
|
|||
CLEANFILES = *~
|
||||
|
||||
bin_PROGRAMS = shim
|
||||
shim_SOURCES = shim.c
|
||||
shim_LDFLAGS =
|
||||
shim_DEPENDENCIES =
|
||||
shim_CFLAGS = -Wall
|
|
@ -0,0 +1,6 @@
|
|||
#include <stdio.h>
|
||||
|
||||
int main (int argc, char * argv []) {
|
||||
printf("O, hai\n");
|
||||
return 0;
|
||||
}
|
Загрузка…
Ссылка в новой задаче