This has been fixed in trunk and is going to make it into the next release.

Niels.

On 11/5/07, Kelly Anderson <[EMAIL PROTECTED]> wrote:
> Hello,
>
> I submitted a patch for 1.3b that fixed this.  As it didn't get applied,
> here it is again for 1.3e.
>
> Regards
>
> --- ./Makefile.am.orig  2007-07-30 21:57:55.000000000 -0600
> +++ ./Makefile.am       2007-11-05 10:46:35.869698466 -0700
> @@ -47,11 +47,11 @@ libevent_la_LDFLAGS = -release @VERSION@
>
>  include_HEADERS = event.h evhttp.h evdns.h
>
> -INCLUDES = -Icompat $(SYS_INCLUDES)
> +INCLUDES = -I$(srcdir)/compat $(SYS_INCLUDES)
>
>  man_MANS = event.3 evdns.3
>
>  verify: libevent.la
> -       cd $(srcdir)/test && make verify
> +       cd test && make verify
>
>  DISTCLEANFILES = *~
> --- ./sample/Makefile.am.orig   2007-07-30 21:41:03.000000000 -0600
> +++ ./sample/Makefile.am        2007-11-05 10:42:18.248696983 -0700
> @@ -1,7 +1,7 @@
>  AUTOMAKE_OPTIONS = foreign no-dependencies
>
>  LDADD = ../libevent.la
> -AM_CFLAGS = -I../compat
> +AM_CFLAGS = -I$(top_srcdir)/compat
>
>  noinst_PROGRAMS = event-test time-test signal-test
>
> --- ./test/Makefile.am.orig     2007-08-14 18:24:20.000000000 -0600
> +++ ./test/Makefile.am  2007-11-05 10:42:18.254697974 -0700
> @@ -1,7 +1,7 @@
>  AUTOMAKE_OPTIONS = foreign no-dependencies
>
>  LDADD = ../libevent.la
> -CPPFLAGS = -I.. -I../compat
> +CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/compat
>
>  EXTRA_DIST = regress.rpc
>
> @@ -17,7 +17,7 @@ regress_SOURCES = regress.c regress.h re
>  bench_SOURCES = bench.c
>
>  regress.gen.c regress.gen.h: regress.rpc
> -       ../event_rpcgen.py regress.rpc || echo "No Python installed"
> +       $(top_srcdir)/event_rpcgen.py regress.rpc || echo "No Python 
> installed"
>
>  DISTCLEANFILES = *~
>  CLEANFILES = regress.gen.h regress.gen.c
>
> _______________________________________________
> Libevent-users mailing list
> Libevent-users@monkey.org
> http://monkey.org/mailman/listinfo/libevent-users
>
>
_______________________________________________
Libevent-users mailing list
Libevent-users@monkey.org
http://monkey.org/mailman/listinfo/libevent-users

Reply via email to