blob: 136bb5eb1dd65323cb5577d019165076324b8e8b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
Index: syslog-ng-3.5.4.1/configure.ac
===================================================================
--- syslog-ng-3.5.4.1.orig/configure.ac 2014-07-18 13:49:36.794141441 +0000
+++ syslog-ng-3.5.4.1/configure.ac 2014-07-18 14:23:57.738197606 +0000
@@ -8,15 +8,16 @@
dnl BINARY_BRANCH - the value is added to all source/binary packages
dnl SOURCE_REVISION - Revision of the source-tree, will added to the version string
dnl
-AC_INIT(syslog-ng/main.c)
+AC_INIT(syslog-ng, 3.5.4.1)
+AC_CONFIG_SRCDIR(syslog-ng/main.c)
AC_CONFIG_MACRO_DIR([m4])
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
dnl ***************************************************************************
dnl definitions
PACKAGE="syslog-ng"
VERSION="`cat $srcdir/VERSION`"
dnl ***************************************************************************
dnl dependencies
@@ -53,7 +56,7 @@
CURRDATE=`date +"%a, %d %b %Y %H:%M:%S %Z"`
fi
-AM_INIT_AUTOMAKE($PACKAGE, $VERSION, [foreign no-define subdir-objects])
+AM_INIT_AUTOMAKE([foreign no-define subdir-objects])
_AM_PROG_TAR([ustar])
if test -n "$SNAPSHOT_VERSION"; then
VERSION=$VERSION+$SNAPSHOT_VERSION
|