Mercurial > pidgin.yaz
view m4/osip.m4 @ 12357:8dd086d0f2b3
[gaim-migrate @ 14661]
Death to ()s around idle times! (...in the glorious small list view)
(13:39:54) rlaager: Also, do we need the ()s around idle times?
(13:40:03) Luke Schierer (LSchiere): no
(13:40:07) Luke Schierer (LSchiere): we used to
(13:40:25) rlaager: LSchiere: huh?
(13:40:37) Luke Schierer (LSchiere): to separate them from the warning times
(13:40:41) Luke Schierer (LSchiere): but we no longer display those
(13:40:45) Luke Schierer (LSchiere): so we no longer need to isolate them
committer: Tailor Script <tailor@pidgin.im>
author | Richard Laager <rlaager@wiktel.com> |
---|---|
date | Mon, 05 Dec 2005 19:47:52 +0000 |
parents | 80faf1ca5280 |
children |
line wrap: on
line source
AC_DEFUN([LP_CHECK_OSIP2],[ AC_ARG_WITH( osip, [ --with-osip Set prefix where osip can be found (ex:/usr or /usr/local)[default=/usr/local] ], [ osip_prefix=${withval}],[ osip_prefix=/usr ]) AC_SUBST(osip_prefix) OSIP_CFLAGS="-I$osip_prefix/include" OSIP_LIBS="-L$osip_prefix/lib" dnl check osip2 headers CPPFLAGS_save=$CPPFLAGS CPPFLAGS=$OSIP_CFLAGS AC_CHECK_HEADER([osip2/osip.h], ,AC_MSG_ERROR([Could not find osip2 headers !])) CPPFLAGS=$CPPFLAGS_save dnl check for osip2 libs LDFLAGS_save=$LDFLAGS LDFLAGS=$OSIP_LIBS dnl AC_CHECK_LIB adds osipparser2 to LIBS, I don't want that ! LIBS_save=$LIBS AC_CHECK_LIB(osipparser2,osip_message_init, , AC_MSG_ERROR([Could not find osip2 libraries !])) LDFLAGS=$LDFLAGS_save LIBS=$LIBS_save OSIP_LIBS="$OSIP_LIBS -losipparser2 -losip2" AC_SUBST(OSIP_CFLAGS) AC_SUBST(OSIP_LIBS) ])