ObjFW  Check-in [0ab38200a3]

Overview
Comment:Warn if configure.ac is newer than configure

This should drastically reduce the number of bug reports, as running an
old configure script with new sources (in other words, forgetting to run
./autogen.sh after git pull) seems to be the most common issue.

Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 0ab38200a3a43017b9fd9fc00bf22e6bc5f8e6be87d63afa45413067285f5b81
User & Date: js on 2014-07-24 18:02:42
Other Links: manifest | tags
Context
2014-08-01
12:27
Change return type for thread main check-in: 52e02c06ca user: js tags: trunk
2014-07-24
18:02
Warn if configure.ac is newer than configure check-in: 0ab38200a3 user: js tags: trunk
2014-07-23
23:23
OFTimer: Reschedule before executing the callback check-in: 7fa1dc3f95 user: js tags: trunk
Changes

Modified configure.ac from [1edb9f33c8] to [8920baffcc].

1
2




3
4
5
6
7
8
9
AC_INIT(ObjFW, 0.8-dev, js@webkeks.org)
BUILDSYS_INIT





AC_CONFIG_SRCDIR(src)

AC_CANONICAL_HOST

case "$host" in
	*-msdosdjgpp*)


>
>
>
>







1
2
3
4
5
6
7
8
9
10
11
12
13
AC_INIT(ObjFW, 0.8-dev, js@webkeks.org)
BUILDSYS_INIT

AS_IF([test configure.ac -nt configure], [
	AC_MSG_ERROR([configure.ac is newer than configure! Run ./autogen.sh!])
])

AC_CONFIG_SRCDIR(src)

AC_CANONICAL_HOST

case "$host" in
	*-msdosdjgpp*)