1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-25 01:03:01 +00:00

remove a redundant AC_SUBST

This commit is contained in:
Charles Kerr 2009-06-03 16:49:24 +00:00
parent 2ccee6c2d3
commit 8895a06815

View file

@ -171,12 +171,11 @@ AC_CHECK_HEADER([event-config.h],
LIBEVENT_CPPFLAGS="" LIBEVENT_CPPFLAGS=""
LIBEVENT_LIBS="-levent"], LIBEVENT_LIBS="-levent"],
[libevent_source=bundled [libevent_source=bundled
AC_MSG_NOTICE([couldn't find event-config.h, so using our own copy of libevent from third-party/libevent/.])
AC_MSG_NOTICE([if you are cross-compiling this is probably NOT what you want.])
AC_CONFIG_SUBDIRS([third-party/libevent]) AC_CONFIG_SUBDIRS([third-party/libevent])
AC_MSG_NOTICE([libevent not found on system, so we'll build our own from third-party/libevent/.])
AC_MSG_NOTICE([if you are cross-compiling this is probably not what you want.])
LIBEVENT_CPPFLAGS="-I\$(top_srcdir)/third-party/libevent -I\$(top_builddir)/third-party/libevent" LIBEVENT_CPPFLAGS="-I\$(top_srcdir)/third-party/libevent -I\$(top_builddir)/third-party/libevent"
LIBEVENT_LIBS="\$(top_builddir)/third-party/libevent/.libs/libevent.a" LIBEVENT_LIBS="\$(top_builddir)/third-party/libevent/.libs/libevent.a"])
AC_SUBST(LIBEVENT_CPPFLAGS)])
AM_CONDITIONAL([BUILD_LIBEVENT], [test x$libevent_source = xbundled]) AM_CONDITIONAL([BUILD_LIBEVENT], [test x$libevent_source = xbundled])
AC_SUBST(LIBEVENT_CPPFLAGS) AC_SUBST(LIBEVENT_CPPFLAGS)
AC_SUBST(LIBEVENT_LIBS) AC_SUBST(LIBEVENT_LIBS)