ObjFW  Check-in [934dab8faf]

Overview
Comment:configure: Add a hack on DJGPP to find some tools
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 934dab8faff3425adf35d71461ac6668016051bc14a6356a5e641686a46d559a
User & Date: js on 2019-04-08 18:19:55
Other Links: manifest | tags
Context
2019-04-10
21:22
Use GetFileAttributesW() to see if a file exists check-in: e6e027971e user: js tags: trunk
2019-04-08
18:19
configure: Add a hack on DJGPP to find some tools check-in: 934dab8faf user: js tags: trunk
15:54
OFXMLParser: Minor style improvement check-in: 5fe20406aa user: js tags: trunk
Changes

Modified configure.ac from [a713ffb1f0] to [8837d45b1c].

126
127
128
129
130
131
132







133
134
135
136
137
138
139
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146







+
+
+
+
+
+
+







		enable_threads="no"	# TODO
		enable_sockets="no"	# TODO
		check_pedantic="no"

		AC_SUBST(MAP_LDFLAGS, ['-Wl,-Map,$@.map'])
		;;
esac

AS_IF([test x"$host_os" = x"msdosdjgpp" -a x"$build_os" = x"msdosdjgpp"], [
	dnl Hack to make configure find these on DOS.
	: ${AR:=ar.exe}
	: ${GREP:=grep.exe}
	: ${RANLIB:=ranlib.exe}
])

AC_LANG([Objective C])
AC_PROG_OBJC([clang egcc gcc])
AC_PROG_OBJCPP
AC_PROG_LN_S
AC_PROG_INSTALL
AC_PROG_EGREP