From DONOTREPLY at icculus.org Sun Jun 12 21:13:21 2005 From: DONOTREPLY at icculus.org (DONOTREPLY at icculus.org) Date: 12 Jun 2005 21:13:21 -0400 Subject: r720 - trunk Message-ID: <20050613011321.8700.qmail@icculus.org> Author: icculus Date: 2005-06-12 21:13:21 -0400 (Sun, 12 Jun 2005) New Revision: 720 Modified: trunk/CHANGELOG trunk/CREDITS trunk/configure.in Log: Added mingw support to the build process (thanks, Matze!). Modified: trunk/CHANGELOG =================================================================== --- trunk/CHANGELOG 2005-03-16 13:10:40 UTC (rev 719) +++ trunk/CHANGELOG 2005-06-13 01:13:21 UTC (rev 720) @@ -2,6 +2,7 @@ * CHANGELOG. */ +06122005 - Added support for mingw to Unix build process (thanks, Matze!). 03162005 - Added missing translation and Portuguese support (thanks, Danny!). MPW support and several MacOS Classic fixes (thanks, Chris!). Changed CWProjects from SITX to SIT format, so OS9 users can Modified: trunk/CREDITS =================================================================== --- trunk/CREDITS 2005-03-16 13:10:40 UTC (rev 719) +++ trunk/CREDITS 2005-06-13 01:13:21 UTC (rev 720) @@ -84,6 +84,9 @@ MPW support: Chris Taylor +Mingw support: + Matze Braun + Other stuff: Your name here! Patches go to icculus at clutteredmind.org ... Modified: trunk/configure.in =================================================================== --- trunk/configure.in 2005-03-16 13:10:40 UTC (rev 719) +++ trunk/configure.in 2005-06-13 01:13:21 UTC (rev 720) @@ -396,9 +396,20 @@ else this_is_cygwin=no fi - AC_MSG_RESULT([$this_is_cygwin]) +AC_MSG_CHECKING([if this is mingw]) +if test x$target_os = xmingw32msvc; then + this_is_mingw=yes + PHYSFSCFLAGS="$PHYSFSCFLAGS -DWIN32" + enable_cdrom=yes + enable_pthreads=no + have_non_posix_threads=yes +else + this_is_mingw=no +fi +AC_MSG_RESULT([$this_is_mingw]) + this_is_macosx=no if test x$we_have_sed = xyes; then AC_MSG_CHECKING([if this is MacOS X]) From DONOTREPLY at icculus.org Sun Jun 12 21:16:13 2005 From: DONOTREPLY at icculus.org (DONOTREPLY at icculus.org) Date: 12 Jun 2005 21:16:13 -0400 Subject: r721 - branches/stable-1.0 Message-ID: <20050613011613.9251.qmail@icculus.org> Author: icculus Date: 2005-06-12 21:16:13 -0400 (Sun, 12 Jun 2005) New Revision: 721 Modified: branches/stable-1.0/CHANGELOG branches/stable-1.0/CREDITS branches/stable-1.0/configure.in Log: Backport from devbranch: mingw support. Modified: branches/stable-1.0/CHANGELOG =================================================================== --- branches/stable-1.0/CHANGELOG 2005-06-13 01:13:21 UTC (rev 720) +++ branches/stable-1.0/CHANGELOG 2005-06-13 01:16:13 UTC (rev 721) @@ -4,6 +4,7 @@ -- stuff in the stable-1.0 branch, backported from 2.0.0 dev branch, etc --- +06122005 - Added support for mingw to Unix build process (thanks, Matze!). 03162005 - Readded Spanish translation. Added Brazillian Portguese translation and fixed unlocalized string in wad.c (thanks Danny!). Some MacOS Classic fixes and MPW support (thanks, Chris!). Changed CWProjects Modified: branches/stable-1.0/CREDITS =================================================================== --- branches/stable-1.0/CREDITS 2005-06-13 01:13:21 UTC (rev 720) +++ branches/stable-1.0/CREDITS 2005-06-13 01:16:13 UTC (rev 721) @@ -73,6 +73,9 @@ Spanish translation: Pedro J. P?rez +Mingw support: + Matze Braun + Other stuff: Your name here! Patches go to icculus at clutteredmind.org ... Modified: branches/stable-1.0/configure.in =================================================================== --- branches/stable-1.0/configure.in 2005-06-13 01:13:21 UTC (rev 720) +++ branches/stable-1.0/configure.in 2005-06-13 01:16:13 UTC (rev 721) @@ -380,9 +380,20 @@ else this_is_cygwin=no fi - AC_MSG_RESULT([$this_is_cygwin]) +AC_MSG_CHECKING([if this is mingw]) +if test x$target_os = xmingw32msvc; then + this_is_mingw=yes + PHYSFSCFLAGS="$PHYSFSCFLAGS -DWIN32" + enable_cdrom=yes + enable_pthreads=no + have_non_posix_threads=yes +else + this_is_mingw=no +fi +AC_MSG_RESULT([$this_is_mingw]) + this_is_macosx=no if test x$we_have_sed = xyes; then AC_MSG_CHECKING([if this is MacOS X])