ObjXMPP  Check-in [82b0fcb64a]

Overview
Comment:Remove autogen.sh
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 82b0fcb64a2e2947d64ae80ab3bf9bd73d7c9534c78d025412acd0573cfb2f10
User & Date: js on 2015-11-21 19:13:50
Other Links: manifest | tags
Context
2016-07-09
21:34
Move m4 to build-aux check-in: 82071daa3c user: js tags: trunk
2015-11-21
19:13
Remove autogen.sh check-in: 82b0fcb64a user: js tags: trunk
19:12
Move {install-sh,config.{guess,sub}} to build-aux check-in: 209a97ac11 user: js tags: trunk
Changes

Deleted autogen.sh version [3936c3cbbf].

1
2
3
4
#!/bin/sh
aclocal -I m4 || exit 1
autoconf || exit 1
autoheader || exit 1
<
<
<
<








Modified configure.ac from [4c71660923] to [e46a35cd39].

1
2
3
4

5
6
7
8
9
10
11
AC_INIT(ObjXMPP, 0.1, js@webkeks.org)
BUILDSYS_INIT

AC_CONFIG_SRCDIR(src)

AC_CONFIG_AUX_DIR(build-aux)

AC_CHECK_TOOL(OBJFW_CONFIG, objfw-config)
AS_IF([test x"$OBJFW_CONFIG" = x""], [
       AC_MSG_ERROR(You need ObjFW and objfw-config installed!)
])





>







1
2
3
4
5
6
7
8
9
10
11
12
AC_INIT(ObjXMPP, 0.1, js@webkeks.org)
BUILDSYS_INIT

AC_CONFIG_SRCDIR(src)
AC_CONFIG_MACRO_DIR(m4)
AC_CONFIG_AUX_DIR(build-aux)

AC_CHECK_TOOL(OBJFW_CONFIG, objfw-config)
AS_IF([test x"$OBJFW_CONFIG" = x""], [
       AC_MSG_ERROR(You need ObjFW and objfw-config installed!)
])