ObjFW  Check-in [893cefa092]

Overview
Comment:configure.ac: Fix a missing \
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 893cefa092c87ed319fda2f02dc5befe452080c6cac2dec337241808c98fea2f
User & Date: js on 2014-05-15 16:02:54
Other Links: manifest | tags
Context
2014-05-15
20:05
Don't use -pedantic with buggy compilers check-in: 42a7135606 user: js tags: trunk
16:02
configure.ac: Fix a missing \ check-in: 893cefa092 user: js tags: trunk
15:54
Update buildsys check-in: 8eb6f64179 user: js tags: trunk
Changes

Modified configure.ac from [173e34f2cc] to [962c9e928c].

657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
	], [
		AC_MSG_RESULT(no)
	])

	AC_MSG_CHECKING(whether we have an atomic ops assembly implementation)
	AC_EGREP_CPP(yes, [
		#if defined(__GNUC__) && (defined(__i386__) || \
			defined(__x86_64__) || defined(__amd64__)) ||
			defined(__ppc__)
		yes
		#endif
	], [
		AC_MSG_RESULT(yes)
		test x"$atomic_ops" = x"none" && \
			atomic_ops="assembly implementation"







|







657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
	], [
		AC_MSG_RESULT(no)
	])

	AC_MSG_CHECKING(whether we have an atomic ops assembly implementation)
	AC_EGREP_CPP(yes, [
		#if defined(__GNUC__) && (defined(__i386__) || \
			defined(__x86_64__) || defined(__amd64__)) || \
			defined(__ppc__)
		yes
		#endif
	], [
		AC_MSG_RESULT(yes)
		test x"$atomic_ops" = x"none" && \
			atomic_ops="assembly implementation"