Check-in [cdf6ed48c2]
Overview
Comment:Require C99 support
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: cdf6ed48c24b02efdf34a6ddbe206aa95b4bbfaffe3b2f7dba6b99bf0d0b1a84
User & Date: rkeene on 2019-01-17 08:09:28
Other Links: manifest | tags
Context
2019-01-17
16:53
Build many kits check-in: cf14f9815a user: rkeene tags: trunk
08:09
Require C99 support check-in: cdf6ed48c2 user: rkeene tags: trunk
07:45
Added start of kit maker, for easy binary distribution of application check-in: 0007db6527 user: rkeene tags: trunk
Changes

Modified configure.ac from [043dc52128] to [7a30832d7a].

1
2
3
4
5

6
7
8





9
10
11
12
13
14
15
dnl Define ourselves
AC_INIT(tcl-nano, 1.3)

dnl Checks for programs.
AC_PROG_CC

AC_PROG_MAKE_SET
AC_PROG_INSTALL
AC_GNU_SOURCE






dnl Determine system information
DC_CHK_OS_INFO

dnl Look for appropriate headers
AC_CHECK_HEADERS(stdint.h limits.h unistd.h stdlib.h string.h sys/stat.h sys/types.h fcntl.h sys/random.h)






>



>
>
>
>
>







1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
dnl Define ourselves
AC_INIT(tcl-nano, 1.3)

dnl Checks for programs.
AC_PROG_CC
AC_PROG_CC_C99
AC_PROG_MAKE_SET
AC_PROG_INSTALL
AC_GNU_SOURCE

dnl Monocypher requires C99
if test "$ac_cv_prog_cc_c99" = no; then
	AC_ERROR([C99 compiler required])
fi

dnl Determine system information
DC_CHK_OS_INFO

dnl Look for appropriate headers
AC_CHECK_HEADERS(stdint.h limits.h unistd.h stdlib.h string.h sys/stat.h sys/types.h fcntl.h sys/random.h)