From 8e594ea2fbd1cf0a1eac9d17b357fd26cdcd9934 Mon Sep 17 00:00:00 2001 From: Term Date: Mon, 25 Sep 2000 07:29:10 +0000 Subject: [PATCH] Add --with-edb=DIR argument (by request). It appears to work; be sure to let me know if it doesn't. ;) SVN revision: 3543 --- configure.in | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/configure.in b/configure.in index da9537b..3781808 100644 --- a/configure.in +++ b/configure.in @@ -3,8 +3,14 @@ dnl Process this file with autoconf to create configure. AC_INIT(src/Imlib2.h) AM_CONFIG_HEADER(config.h) AC_CANONICAL_SYSTEM + +AC_ARG_WITH(edb, + [ --with-edb=DIR use edb rooted at ], + [CFLAGS="$CFLAGS -I$withval/include" + LIBS="-L$withval/lib $LIBS"]) + mmx=no -AC_ARG_ENABLE(mmx,[ --enable-mmx attempt compiling using mmx assembly [default=yes]], +AC_ARG_ENABLE(mmx,[ --enable-mmx attempt compiling using mmx assembly [default=yes]], [ if test x$enableval = xyes; then mmx=yes