Bugzilla – Attachment 857 Details for
Bug 998
--without-opensc is not respected
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
make path optional
x (text/plain), 1.51 KB, created by
Tim Rice
on 2005-03-16 13:59:01 AEDT
(
hide
)
Description:
make path optional
Filename:
MIME Type:
Creator:
Tim Rice
Created:
2005-03-16 13:59:01 AEDT
Size:
1.51 KB
patch
obsolete
>--- configure.ac.old 2005-03-07 01:21:37.000000000 -0800 >+++ configure.ac 2005-03-15 17:56:35.006480077 -0800 >@@ -2324,23 +2324,28 @@ > ) > > # Check whether user wants OpenSC support >+OPENSC_CONFIG="no" > AC_ARG_WITH(opensc, >- AC_HELP_STRING([--with-opensc=PFX], >- [Enable smartcard support using OpenSC]), >- opensc_config_prefix="$withval", opensc_config_prefix="") >-if test x$opensc_config_prefix != x ; then >- OPENSC_CONFIG=$opensc_config_prefix/bin/opensc-config >- AC_PATH_PROG(OPENSC_CONFIG, opensc-config, no) >- if test "$OPENSC_CONFIG" != "no"; then >- LIBOPENSC_CFLAGS=`$OPENSC_CONFIG --cflags` >- LIBOPENSC_LIBS=`$OPENSC_CONFIG --libs` >- CPPFLAGS="$CPPFLAGS $LIBOPENSC_CFLAGS" >- LDFLAGS="$LDFLAGS $LIBOPENSC_LIBS" >- AC_DEFINE(SMARTCARD) >- AC_DEFINE(USE_OPENSC) >- SCARD_MSG="yes, using OpenSC" >- fi >-fi >+ [--with-opensc[[=PFX]] Enable smartcard support using OpenSC (optionally in PATH)], >+ [ >+ if test "x$withval" != "xno" ; then >+ if test "x$withval" != "xyes" ; then >+ OPENSC_CONFIG=$withval/bin/opensc-config >+ else >+ AC_PATH_PROG(OPENSC_CONFIG, opensc-config, no) >+ fi >+ if test "$OPENSC_CONFIG" != "no"; then >+ LIBOPENSC_CFLAGS=`$OPENSC_CONFIG --cflags` >+ LIBOPENSC_LIBS=`$OPENSC_CONFIG --libs` >+ CPPFLAGS="$CPPFLAGS $LIBOPENSC_CFLAGS" >+ LDFLAGS="$LDFLAGS $LIBOPENSC_LIBS" >+ AC_DEFINE(SMARTCARD) >+ AC_DEFINE(USE_OPENSC) >+ SCARD_MSG="yes, using OpenSC" >+ fi >+ fi >+ ] >+) > > # Check libraries needed by DNS fingerprint support > AC_SEARCH_LIBS(getrrsetbyname, resolv,
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 998
:
854
| 857