Overview
Comment: | Move build-related files to build-aux |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
2e03d03c52ee2575ce724f84a1d8dbe8 |
User & Date: | js on 2017-01-22 04:43:33 |
Other Links: | manifest | tags |
Context
2017-01-22
| ||
04:47 | Adjust to ObjFW changes check-in: 959a1e5652 user: js tags: trunk | |
04:43 | Move build-related files to build-aux check-in: 2e03d03c52 user: js tags: trunk | |
04:41 | Update buildsys check-in: e5ac3ed936 user: js tags: trunk | |
Changes
Deleted autogen.sh version [c6bd9ad460].
Added build-aux/config.guess version [9816be2429].
Added build-aux/config.sub version [738eef826a].
Added build-aux/install-sh version [9ea35b608e].
Added build-aux/m4/buildsys.m4 version [fd3de38ea6].
Deleted config.guess version [9816be2429].
Deleted config.sub version [738eef826a].
Modified configure.ac from [7e166ad565] to [b71924f513].
1 2 3 4 5 6 7 8 9 10 11 | AC_INIT(ObjPgSQL, 0.1, js@webkeks.org) BUILDSYS_INIT AC_CONFIG_SRCDIR(src) AC_CHECK_TOOL(OBJFW_CONFIG, objfw-config) AS_IF([test x"$OBJFW_CONFIG" = x""], [ AC_MSG_ERROR(You need ObjFW and objfw-config installed!) ]) test x"$OBJC" = x"" && OBJC="$($OBJFW_CONFIG --objc)" | > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 | AC_INIT(ObjPgSQL, 0.1, js@webkeks.org) BUILDSYS_INIT AC_CONFIG_SRCDIR(src) AC_CONFIG_AUX_DIR(build-aux) AC_CONFIG_MACRO_DIR(build-aux/m4) AC_CHECK_TOOL(OBJFW_CONFIG, objfw-config) AS_IF([test x"$OBJFW_CONFIG" = x""], [ AC_MSG_ERROR(You need ObjFW and objfw-config installed!) ]) test x"$OBJC" = x"" && OBJC="$($OBJFW_CONFIG --objc)" |
︙ | ︙ |
Deleted install-sh version [9ea35b608e].
Deleted m4/buildsys.m4 version [fd3de38ea6].