Merge branch 'master' of /var/lib/git/collection4
authorFlorian Forster <octo@verplant.org>
Tue, 21 Sep 2010 06:21:38 +0000 (08:21 +0200)
committerFlorian Forster <octo@verplant.org>
Tue, 21 Sep 2010 06:21:38 +0000 (08:21 +0200)
.gitignore
autogen.sh [new file with mode: 0755]
share/Makefile.am
src/Makefile.am

index 939ad4a..cba320b 100644 (file)
@@ -1,11 +1,19 @@
+aclocal.m4
+autom4te.cache
+install-sh
+missing
 *.o
 Makefile
 Makefile.in
+ylwrap
 
 /configure
 /config.log
 /config.status
+src/collection.fcgi
+src/config.h.in
 src/config.h
 src/scanner.c
 src/parser.c
 src/parser.h
+src/stamp-h1
diff --git a/autogen.sh b/autogen.sh
new file mode 100755 (executable)
index 0000000..acccbb2
--- /dev/null
@@ -0,0 +1,9 @@
+#! /bin/sh
+
+set -ex
+
+aclocal
+autoconf --force --warnings=all
+autoheader --force --warnings=all
+automake --add-missing --copy --foreign --warnings=all
+
index 06953f8..091c088 100644 (file)
@@ -1,6 +1,6 @@
 dist_sysconf_DATA = collection.conf
 
-dist_data_DATA = style.css \
+dist_pkgdata_DATA = style.css \
                 collection.js \
                 g.line-min.js \
                 g.raphael-min.js \
index bd98699..766331f 100644 (file)
@@ -11,7 +11,7 @@ AM_YFLAGS = -d
 
 BUILT_SOURCES = parser.h
 
-bin_PROGRAMS = collection.fcgi
+pkglib_PROGRAMS = collection.fcgi
 
 collection_fcgi_SOURCES = main.c \
                          oconfig.c oconfig.h aux_types.h scanner.l parser.y \