X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ian/git?a=blobdiff_plain;f=configure.ac;h=04072f1025da2522932a0d45f2e3bd64987cbee8;hb=32e76c7d514d05d5ac6ad9833035b9826fbc1c8f;hp=92b6f967d8f990a8b4101c657a4801a3b50694fd;hpb=79e47566bc00f089329bf6b9d1c3b581e370ab09;p=innduct.git diff --git a/configure.ac b/configure.ac index 92b6f96..04072f1 100644 --- a/configure.ac +++ b/configure.ac @@ -1,3 +1,34 @@ -AC_INIT(innduct, 1.0) -AC_CONFIG_SRCDIR(innduct.c) -AC_OUTPUT +# innduct +# tailing reliable realtime streaming feeder for inn +# configure.in +# +# Copyright (C) 2010 Ian Jackson +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# +# (I believe that when you compile and link this as part of the inn2 +# build, with the Makefile runes I have provided, all the libraries +# and files which end up included in innduct are licence-compatible +# with GPLv3. If not then please let me know. -Ian Jackson.) + +AC_INIT([innduct], [1.0], [duct.c]) +AC_CONFIG_AUX_DIR(autoconf-aux) +AM_INIT_AUTOMAKE([]) + +AC_PROG_CC + +AC_CHECK_HEADERS(sys/inotify.h) + +AM_CONFIG_HEADER(config.h) +AC_OUTPUT(Makefile)