diff options
author | Bryan Jurish <mukau@users.sourceforge.net> | 2009-04-25 19:08:02 +0000 |
---|---|---|
committer | Bryan Jurish <mukau@users.sourceforge.net> | 2009-04-25 19:08:02 +0000 |
commit | 52abaa102fd8d1e1e90d322b7b21796c40953395 (patch) | |
tree | eeb05c66d6d200cd94a8d3669c6afb21067c4f3f /common/m4 | |
parent | bcd6c171b0a7636d9a21df328e5e384d1e3d6377 (diff) |
+ updated extended/Makefile, locale/: win32 configure bug hunt
svn path=/trunk/externals/moocow/; revision=11146
Diffstat (limited to 'common/m4')
-rw-r--r-- | common/m4/ax_pd_external.m4 | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/common/m4/ax_pd_external.m4 b/common/m4/ax_pd_external.m4 index 6cdc91d..3c895bf 100644 --- a/common/m4/ax_pd_external.m4 +++ b/common/m4/ax_pd_external.m4 @@ -272,8 +272,10 @@ AC_DEFUN([AX_PD_EXTERNAL], Darwin) AC_MSG_RESULT(darwin) ;; - MINGW32_NT-5.1) + MINGW32_NT-*) + ##-- build farm: `uname -s` = MINGW32_NT-5.1 AC_MSG_RESULT(win32) + uname_s="MINGW32_NT" ##-- normalize ;; IRIX64) AC_MSG_RESULT(irix64) @@ -336,7 +338,7 @@ AC_DEFUN([AX_PD_EXTERNAL], ##-- win32 via minGW/MSYS ## + courtesy of pd-extended build system, SVN externals/Makefile - if test "$uname_s" = "MINGW32_NT-5.1"; + if test "$uname_s" = "MINGW32_NT"; #MINGW32_NT-5.1 then PDEXT_DFLAGS="\ -D'O_NONBLOCK=1' -D'srand48(n)=srand((n))' \ |