This commit is contained in:
Leonardo Taglialegne 2013-08-22 19:28:38 +02:00
Родитель add5722f58
Коммит 00fabf50f9
5 изменённых файлов: 18 добавлений и 1 удалений

3
.gitignore поставляемый
Просмотреть файл

@ -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

7
shim/Makefile.am Normal file
Просмотреть файл

@ -0,0 +1,7 @@
CLEANFILES = *~
bin_PROGRAMS = shim
shim_SOURCES = shim.c
shim_LDFLAGS =
shim_DEPENDENCIES =
shim_CFLAGS = -Wall

6
shim/shim.c Normal file
Просмотреть файл

@ -0,0 +1,6 @@
#include <stdio.h>
int main (int argc, char * argv []) {
printf("O, hai\n");
return 0;
}