diff options
author | lloyd <[email protected]> | 2010-09-09 14:59:52 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-09-09 14:59:52 +0000 |
commit | 5913bf42b4c32e43d0db11bf9299130f3b0b62a4 (patch) | |
tree | b33990ad966e0e232e69392ea561ef8d4cc2a89f /src/build-data | |
parent | 1a357ffa3af960780a88bd0954d2e519c89bdff2 (diff) |
Compile python wrapper as C++0x
Diffstat (limited to 'src/build-data')
-rw-r--r-- | src/build-data/makefile/python.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/build-data/makefile/python.in b/src/build-data/makefile/python.in index d0e33f6e3..cbc21d66a 100644 --- a/src/build-data/makefile/python.in +++ b/src/build-data/makefile/python.in @@ -5,7 +5,7 @@ PYTHON_ROOT = /usr/lib/python%{python_version}/config PYTHON_INC = -I/usr/include/python%{python_version} PYTHON_SITE_PACKAGE_DIR = /usr/lib/python%{python_version}/site-packages/ -PYTHON_FLAGS = -Isrc/wrap/python -Os -fPIC -ftemplate-depth-255 $(WARN_FLAGS) $(PYTHON_INC) +PYTHON_FLAGS = -Isrc/wrap/python -Os -std=c++0x -fPIC -ftemplate-depth-255 $(WARN_FLAGS) $(PYTHON_INC) BOTAN_PYTHON_MODDIR = %{python_obj_dir} |