comparison mcabber/configure.ac @ 1448:844410b9b4cc

Remove configure option --enable-fifo
author Mikael Berthe <mikael@lilotux.net>
date Thu, 27 Mar 2008 23:27:19 +0100
parents a64778f5f26b
children 6b98dc22946d
comparison
equal deleted inserted replaced
1447:ba706e97d6ec 1448:844410b9b4cc
225 CFLAGS="$CFLAGS -g" 225 CFLAGS="$CFLAGS -g"
226 else 226 else
227 CFLAGS="-O2 $CFLAGS" 227 CFLAGS="-O2 $CFLAGS"
228 fi 228 fi
229 229
230 AC_ARG_ENABLE(fifo,
231 [AC_HELP_STRING(--enable-fifo, Enable FIFO named pipe)],
232 fifo=$enableval, fifo="")
233 AM_CONDITIONAL([FIFO], [test x$fifo = xyes])
234 if test x"${fifo}" = x"yes"; then
235 AC_DEFINE_UNQUOTED([ENABLE_FIFO],[1],[Named pipe support])
236 fi
237
238 AC_ARG_ENABLE(hgcset, 230 AC_ARG_ENABLE(hgcset,
239 [AC_HELP_STRING(--disable-hgcset, Do not use Mercurial changeset value)], 231 [AC_HELP_STRING(--disable-hgcset, Do not use Mercurial changeset value)],
240 hgcset=$enableval, hgcset="yes") 232 hgcset=$enableval, hgcset="yes")
241 AM_CONDITIONAL(HGCSET, [test x$hgcset = xyes]) 233 AM_CONDITIONAL(HGCSET, [test x$hgcset = xyes])
242 if test "${hgcset}" = "yes"; then 234 if test "${hgcset}" = "yes"; then