annotate R/rdc/configure.ac @ 50:edf5c85de5ac
put pyi next to so for mypy to pick it up, directly
author |
Tassilo Philipp |
date |
Sat, 14 Nov 2020 21:18:09 +0100 (2020-11-14) |
parents |
0cfcc391201f |
children |
|
rev |
line source |
0
|
1 AC_INIT([rdc], 0.1)
|
|
2 DC_PREFIX=/usr/local
|
|
3 AC_ARG_WITH([dc-prefix], AC_HELP_STRING([--with-dc-prefix=/usr/local],[specify dyncall installation prefix, (/usr/local)]),
|
|
4 [DC_PREFIX=$withval])
|
|
5 AC_SUBST(DC_PREFIX)
|
|
6 AC_CONFIG_FILES([src/Makevars])
|
|
7 AC_OUTPUT
|
|
8
|