/[rdesktop]/sourceforge.net/trunk/rdesktop/configure.ac
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /sourceforge.net/trunk/rdesktop/configure.ac

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1307 by astrand, Mon Oct 30 09:01:01 2006 UTC revision 1309 by stargo, Wed Nov 1 20:52:01 2006 UTC
# Line 79  LIBS="$LIBS -L$ssldir/lib -lcrypto" Line 79  LIBS="$LIBS -L$ssldir/lib -lcrypto"
79  rpath="$rpath:$ssldir/lib"  rpath="$rpath:$ssldir/lib"
80               ])               ])
81    
82    AC_ARG_ENABLE(smartcard,
83                 [  --enable-smartcard        Enables smart-card support.
84                 ],
85                 [
86                    if test -n "$PKG_CONFIG"; then
87                            PKG_CHECK_MODULES(PCSCLITE, libpcsclite, [WITH_SCARD=1], [WITH_SCARD=0])
88                            if test x"$WITH_SCARD" = "x1"; then
89                                    SCARDOBJ="scard.o"
90                                    CFLAGS="$CFLAGS $PCSCLITE_CFLAGS"
91                                    LIBS="$LIBS $PCSCLITE_LIBS"
92                                    AC_DEFINE(WITH_SCARD)
93                            fi
94                    fi
95                 ])
96    
97    AC_SUBST(SCARDOBJ)
98    
99  #  #
100  # Alignment  # Alignment
# Line 785  AC_ARG_WITH(debug-channel, Line 801  AC_ARG_WITH(debug-channel,
801      ])      ])
802    
803    
804    AC_ARG_WITH(debug-smartcard,
805        [  --with-debug-smartcard  enable debugging of smart-card code],
806        [
807            if test $withval != "no";
808            then
809                    if test x"$WITH_SCARD" = "x1"; then
810                            AC_DEFINE(WITH_SCARD_DEBUG,1)
811                    fi
812            fi
813        ])
814    
815  #  #
816  # target-specific stuff  # target-specific stuff
817  #  #

Legend:
Removed from v.1307  
changed lines
  Added in v.1309

  ViewVC Help
Powered by ViewVC 1.1.26