ObjFW  Check-in [27115cc8f6]

Overview
Comment:Branch for 1.1
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | 1.1
Files: files | file ages | folders
SHA3-256: 27115cc8f6e6f640c2350750d92f17ca92216d66854468de5aea8cdd352cf452
User & Date: js on 2024-03-28 21:00:15
Other Links: branch diff | manifest | tags
Context
2024-03-29
13:10
Update ChangeLog for 1.1 check-in: daf07bbfbe user: js tags: 1.1
2024-03-28
21:00
Branch for 1.1 check-in: 27115cc8f6 user: js tags: 1.1
18:29
Properly align objects on MS-DOS check-in: 5fd6d0a46d user: js tags: trunk
Changes

Modified configure.ac from [e665c1f94f] to [1ce89de5a4].

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
AC_INIT(ObjFW, 1.1dev, js@nil.im, objfw, https://objfw.nil.im/)
AC_CONFIG_SRCDIR(src)
AC_CONFIG_AUX_DIR(build-aux)
AC_CONFIG_MACRO_DIR(build-aux/m4)

AC_DEFINE(OBJFW_VERSION_MAJOR, 1, [The major version of ObjFW])
AC_DEFINE(OBJFW_VERSION_MINOR, 1, [The minor version of ObjFW])
dnl This may only be set to 1.1 once 1.1 is released
AC_SUBST(BUNDLE_VERSION, 1.0.0)
AC_SUBST(BUNDLE_SHORT_VERSION, 1.0)

for i in configure.ac build-aux/m4/*; do
	AS_IF([test $i -nt configure], [
		AC_MSG_ERROR([$i is newer than configure! Run ./autogen.sh!])
	])
done

|






<
|
|







1
2
3
4
5
6
7

8
9
10
11
12
13
14
15
16
AC_INIT(ObjFW, 1.1, js@nil.im, objfw, https://objfw.nil.im/)
AC_CONFIG_SRCDIR(src)
AC_CONFIG_AUX_DIR(build-aux)
AC_CONFIG_MACRO_DIR(build-aux/m4)

AC_DEFINE(OBJFW_VERSION_MAJOR, 1, [The major version of ObjFW])
AC_DEFINE(OBJFW_VERSION_MINOR, 1, [The minor version of ObjFW])

AC_SUBST(BUNDLE_VERSION, 1.1.0)
AC_SUBST(BUNDLE_SHORT_VERSION, 1.1)

for i in configure.ac build-aux/m4/*; do
	AS_IF([test $i -nt configure], [
		AC_MSG_ERROR([$i is newer than configure! Run ./autogen.sh!])
	])
done