BUG: .gitignore changed - missing configure.ac added

This commit is contained in:
Roland Jax
2014-04-23 14:37:37 +02:00
parent c3321d9130
commit d38c30339b
2 changed files with 17 additions and 1 deletions
+2 -1
View File
@@ -3,7 +3,8 @@
/Makefile.in /Makefile.in
/aclocal.m4 /aclocal.m4
/autom4te.cache/ /autom4te.cache/
/config* /config.*
/configure
/depcomp /depcomp
/ebus-daemon /ebus-daemon
/ebus-daemon*.tar.* /ebus-daemon*.tar.*
+15
View File
@@ -0,0 +1,15 @@
AC_PREREQ([2.69])
AC_INIT([ebus-daemon], [0.1], [roland.jax@liwest.at], [ebus-daemon], [https://github.com/yuhu-/ebus-daemon])
AM_INIT_AUTOMAKE([1.11 -Wall no-define])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_HEADERS([config.h])
AC_PROG_CXX
PKG_CHECK_MODULES([LIBEBUS], [libebus-0.1 >= 0.1])
AC_CONFIG_FILES([Makefile])
AC_OUTPUT