Changeset 5efd81 in git
- Timestamp:
- Jan 28, 2013, 5:40:13 PM (10 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- 94fe43dac4252bd6a4378cca3be1e8b4f642d6b1
- Parents:
- 687272a659feb32db61b3cd8137d48231f1d95a869e438f94fcd264daaddcb83dd3cee0e68006a38
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
m4/ax_python_with_version.m4
r687272a r5efd81 85 85 AC_MSG_RESULT([too recent, skipping python interface!]) 86 86 ], 87 [ ax_python_use=true 88 si_embed_python=$si_try_embed 89 AC_MSG_RESULT([no (ok)]) 90 AC_MSG_CHECKING(embedding python interface module) 91 AC_MSG_RESULT($si_try_embed) 92 AX_PYTHON_PREFIX( ) 93 AX_PYTHON_LSPEC( ) 94 AX_PYTHON_CSPEC( ) 87 [ AC_MSG_RESULT([no (ok)]) 88 ax_python_version=`$PYTHON -c "import sys; print '.'.join(sys.version.split('.')[[:2]])"` 89 AC_CHECK_LIB([python${ax_python_version}],[main], [ 90 ax_python_use=true 91 si_embed_python=$si_try_embed 92 AC_MSG_CHECKING(embedding python interface module) 93 AC_MSG_RESULT($si_try_embed) 94 AX_PYTHON_PREFIX( ) 95 AX_PYTHON_LSPEC( ) 96 AX_PYTHON_CSPEC( ) 97 ], 98 [ ax_python_use=false 99 AC_MSG_RESULT([Cannot link to python, skipping python interface!]) 100 ] 101 ) 95 102 ]) 96 103 ],
Note: See TracChangeset
for help on using the changeset viewer.