buildsys  Check-in [8f1cf20690]

Overview
Comment:Fix missing braces.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 8f1cf206900cf9425cdf51ce1c3faff121e6a0651ffc18f26595d4dbe216cb73
User & Date: js on 2009-04-24 22:13:24
Other Links: manifest | tags
Context
2009-06-03
18:28
Let configure define our ${INSTALL}. check-in: d4c3373800 user: js tags: trunk
2009-04-24
22:13
Fix missing braces. check-in: 8f1cf20690 user: js tags: trunk
2009-04-16
17:26
Add example configure.ac. check-in: c266a83ce1 user: js tags: trunk
Changes

Modified m4/buildsys.m4 from [68888a657c] to [6c9b8952fe].

21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
dnl

AC_DEFUN([BUILDSYS_LIB], [
	AC_ARG_ENABLE(shared,
		AS_HELP_STRING([--disable-shared], [don't build shared libraries]))

	AS_IF([test x"$enable_shared" = x"no"],
		BUILDSYS_STATIC_LIB_ONLY,
		BUILDSYS_SHARED_LIB)
])

AC_DEFUN([BUILDSYS_PROG_IMPLIB], [
	AC_REQUIRE([AC_CANONICAL_HOST])
	AC_MSG_CHECKING(whether we need an implib)
	case "$host" in
		*-*-cygwin* | *-*-mingw*)







|
|







21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
dnl

AC_DEFUN([BUILDSYS_LIB], [
	AC_ARG_ENABLE(shared,
		AS_HELP_STRING([--disable-shared], [don't build shared libraries]))

	AS_IF([test x"$enable_shared" = x"no"],
		[BUILDSYS_STATIC_LIB_ONLY],
		[BUILDSYS_SHARED_LIB])
])

AC_DEFUN([BUILDSYS_PROG_IMPLIB], [
	AC_REQUIRE([AC_CANONICAL_HOST])
	AC_MSG_CHECKING(whether we need an implib)
	case "$host" in
		*-*-cygwin* | *-*-mingw*)