Check-in [25f65515cc]

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Updated to use newer mingw32 conventions
Timelines: family | ancestors | trunk
Files: files | file ages | folders
SHA1: 25f65515ccad45c3d3ddc834a547fcdb57a64ba2
User & Date: rkeene 2012-07-19 05:25:31
Context
2012-07-19
05:25
Updated to use newer mingw32 conventions Leaf check-in: 25f65515cc user: rkeene tags: trunk
2008-11-15
17:55
Added win32 winsock initialization routines check-in: a81fdbceed user: rkeene tags: trunk
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to aclocal.m4.

222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238

	AC_MSG_CHECKING(host operating system)
	AC_MSG_RESULT($host_os)

	AREXT=".a"

	case $host_os in
		mingw32msvc*)
			CFLAGS="$CFLAGS -mno-cygwin -mms-bitfields"
			CPPFLAGS="$CPPFLAGS -mno-cygwin -mms-bitfields"
			;;
		cygwin*)
			CFLAGS="$CFLAGS -mms-bitfields"
			CPPFLAGS="$CPPFLAGS -mms-bitfields"
			;;

	esac







|
|
|







222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238

	AC_MSG_CHECKING(host operating system)
	AC_MSG_RESULT($host_os)

	AREXT=".a"

	case $host_os in
		mingw32|mingw32msvc*)
			CFLAGS="$CFLAGS -mms-bitfields"
			CPPFLAGS="$CPPFLAGS -mms-bitfields"
			;;
		cygwin*)
			CFLAGS="$CFLAGS -mms-bitfields"
			CPPFLAGS="$CPPFLAGS -mms-bitfields"
			;;

	esac