You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
544 B

  1. Windows (Win32) doesn't support the analyze ATR perl-script and since we
  2. don't want to pull in perl as a dependency add the same workaround here.
  3. diff --git a/pcsc_scan.c b/pcsc_scan.c
  4. index e1d8942..81344e1 100644
  5. --- a/pcsc_scan.c
  6. +++ b/pcsc_scan.c
  7. @@ -224,9 +224,7 @@ int main(int argc, char *argv[])
  8. printf("PC/SC device scanner\n");
  9. printf("V " PACKAGE_VERSION " (c) 2001-2017, Ludovic Rousseau <ludovic.rousseau@free.fr>\n");
  10. -#ifdef WIN32
  11. analyse_atr = FALSE;
  12. -#endif
  13. while ((opt = getopt(argc, argv, "Vhns")) != EOF)
  14. {