Skip to content

Commit 1bc55b5

Browse files
author
Mikael Vejdemo Johansson
committed
Buildable from checkout.
1 parent 71a2bc3 commit 1bc55b5

File tree

7 files changed

+1916
-2
lines changed

7 files changed

+1916
-2
lines changed

Makefile.in

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ POST_UNINSTALL = :
3333
subdir = .
3434
DIST_COMMON = README $(am__configure_deps) $(dist_noinst_SCRIPTS) \
3535
$(srcdir)/Makefile.am $(srcdir)/Makefile.in \
36-
$(srcdir)/config.h.in $(top_srcdir)/configure COPYING INSTALL \
37-
TODO depcomp install-sh missing
36+
$(srcdir)/config.h.in $(top_srcdir)/configure TODO depcomp \
37+
install-sh missing
3838
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
3939
am__aclocal_m4_deps = $(top_srcdir)/configure.ac
4040
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \

autogen.sh

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#!/bin/sh -e
2+
3+
test -n "$srcdir" || srcdir=`dirname "$0"`
4+
test -n "$srcdir" || srcdir=.
5+
autoreconf --force --install --verbose "$srcdir"
6+
test -n "$NOCONFIGURE" || "$srcdir/configure" "$@"

config.h.in

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
/* config.h.in. Generated from configure.ac by autoheader. */
2+
3+
/* Name of package */
4+
#undef PACKAGE
5+
6+
/* Define to the address where bug reports for this package should be sent. */
7+
#undef PACKAGE_BUGREPORT
8+
9+
/* Define to the full name of this package. */
10+
#undef PACKAGE_NAME
11+
12+
/* Define to the full name and version of this package. */
13+
#undef PACKAGE_STRING
14+
15+
/* Define to the one symbol short name of this package. */
16+
#undef PACKAGE_TARNAME
17+
18+
/* Define to the version of this package. */
19+
#undef PACKAGE_VERSION
20+
21+
/* Version number of package */
22+
#undef VERSION

0 commit comments

Comments
 (0)