evdispatch 0.2.6 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -17,6 +17,9 @@ AC_PROG_LIBTOOL
17
17
  if test "x$GCC" = xyes ; then
18
18
  CXXFLAGS="$CXXFLAGS -O3"
19
19
  fi
20
+ #if( test `uname -m | grep -ci i386 ` && test `uname | grep -ci darwin`); then
21
+ # CXXFLAGS="$CXXFLAGS -arch ppc -arch i386"
22
+ #fi
20
23
  libev=`pwd`/libev-3.31/
21
24
  AC_SUBST(LIBEV_PATH,$libev)
22
25
 
@@ -26,7 +29,7 @@ AC_CHECK_TYPES([curl_socket_t],[],["libcurl is too old!"],[#include "curl/curl.h
26
29
  AC_CHECK_PROGS([curl-config])
27
30
 
28
31
  # include libev's m4 macros for config.h
29
- m4_include([libev-3.2/libev.m4])
32
+ m4_include([libev-3.31/libev.m4])
30
33
 
31
34
  AC_CONFIG_FILES([Makefile src/Makefile test/Makefile])
32
35
  AC_OUTPUT
@@ -34,6 +37,6 @@ AC_OUTPUT
34
37
  if( ! test -d ${libev}/.libs ); then
35
38
  echo "Building libev... in ${libev}";
36
39
  cd $libev;
37
- ./configure;
40
+ ./configure --disable-shared;
38
41
  make;
39
42
  fi