From 7df95e05df7a55ab01d18f2348cc6637f77915cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20K=C3=B6ppe?= Date: Mon, 3 Nov 2003 10:07:07 +0000 Subject: [PATCH] Fix more problems in --with-chick* options handling. (#782052). git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@5259 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- SWIG/configure.in | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/SWIG/configure.in b/SWIG/configure.in index cc7a93f47..cc5250b43 100644 --- a/SWIG/configure.in +++ b/SWIG/configure.in @@ -1108,15 +1108,15 @@ fi if test -n "$CHICKEN_CONFIG" ; then - AC_ARG_WITH(chickhme,[ --with-chickenhome=path Set location of CHICKEN home directory],[ + AC_ARG_WITH(chickenhome,[ --with-chickenhome=path Set location of CHICKEN home directory],[ CHICKENHOME="$withval"], [CHICKENHOME=]) - AC_ARG_WITH(chickops,[ --with-chickensharedopts=path Set compiler options for shared CHICKEN generated code],[ + AC_ARG_WITH(chickensharedopts,[ --with-chickensharedopts=path Set compiler options for shared CHICKEN generated code],[ CHICKENSHAREDOPTS="$withval"], [CHICKENSHAREDOPTS=]) - AC_ARG_WITH(chickopt,[ --with-chickenopts=path Set compiler options for static CHICKEN generated code],[ + AC_ARG_WITH(chickenopts,[ --with-chickenopts=path Set compiler options for static CHICKEN generated code],[ CHICKENOPTS="$withval"], [CHICKENOPTS=]) - AC_ARG_WITH(chicklis,[ --with-chickensharedlib=path Set linker options for shared CHICKEN generated code],[ + AC_ARG_WITH(chickensharedlib,[ --with-chickensharedlib=path Set linker options for shared CHICKEN generated code],[ CHICKENSHAREDLIB="$withval"], [CHICKENSHAREDLIB=]) - AC_ARG_WITH(chicklib,[ --with-chickenlib=path Set linker options for static CHICKEN generated code],[ + AC_ARG_WITH(chickenlib,[ --with-chickenlib=path Set linker options for static CHICKEN generated code],[ CHICKENLIB="$withval"], [CHICKENLIB=]) AC_MSG_CHECKING(for CHICKEN home directory)