diff options
author | Bryan Jurish <mukau@users.sourceforge.net> | 2009-04-25 19:37:47 +0000 |
---|---|---|
committer | Bryan Jurish <mukau@users.sourceforge.net> | 2009-04-25 19:37:47 +0000 |
commit | f37557d096b3bdf15a962d382df5f03b34516202 (patch) | |
tree | 08b1b999ac57b063e17ba11384a4c6b9f7c038e4 /common/m4 | |
parent | 3de59ea6617c7872b0bac6bd67540468d11f52f8 (diff) |
+ yet another win32 bugfix
svn path=/trunk/externals/moocow/; revision=11148
Diffstat (limited to 'common/m4')
-rw-r--r-- | common/m4/ax_pd_external.m4 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/common/m4/ax_pd_external.m4 b/common/m4/ax_pd_external.m4 index 3c895bf..5218936 100644 --- a/common/m4/ax_pd_external.m4 +++ b/common/m4/ax_pd_external.m4 @@ -341,10 +341,10 @@ AC_DEFUN([AX_PD_EXTERNAL], if test "$uname_s" = "MINGW32_NT"; #MINGW32_NT-5.1 then PDEXT_DFLAGS="\ - -D'O_NONBLOCK=1' -D'srand48(n)=srand((n))' \ - -D'drand48()=((double)rand()/RAND_MAX)' -D'bzero(p,n)=memset(p,0,n)' \ + -DO_NONBLOCK=1 -Dsrand48(n)=srand((n)) \ + -Ddrand48()=((double)rand()/RAND_MAX) -Dbzero(p,n)=memset(p,0,n) \ " - PDEXT_LFLAGS="-shared -L'${pddir}/bin' -L'${pddir}/obj'" + PDEXT_LFLAGS="-shared -L${pddir}/bin -L${pddir}/obj" PDEXT_CFLAGS="-mms-bitfields -DMSW -DNT" LIBS="$LIBS -lpd -lwsock32 -lpthreadGC2 -lkernel32 -luser32 -lgdi32 -lregex" if test "$ENABLE_DEBUG" = "no" -a -z "$UCFLAGS"; then |