diff options
author | Rob Austein <sra@hactrn.net> | 2010-12-28 19:14:25 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2010-12-28 19:14:25 +0000 |
commit | 31e451b448ad5bad4237776172675fc6a74e0205 (patch) | |
tree | 27cb301578c614656f3e2ab10758a00d842c64a6 /pywrap/pywrap.c | |
parent | e53a56120ca7aeafa2c85bfb6dc502709fbef74f (diff) |
Conditionalize which subdirectories we build, based on what configure
finds and what configure options are enabled.
Building with system OpenSSL doesn't quite work yet, still too many
hardwired paths in Makefiles.
svn path=/Makefile.in; revision=3578
Diffstat (limited to 'pywrap/pywrap.c')
-rw-r--r-- | pywrap/pywrap.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/pywrap/pywrap.c b/pywrap/pywrap.c new file mode 100644 index 00000000..10638721 --- /dev/null +++ b/pywrap/pywrap.c @@ -0,0 +1,6 @@ +#include <Python.h> + +int main(int argc, char **argv) +{ + return Py_Main(argc, argv); +} |