diff options
author | lloyd <[email protected]> | 2009-11-17 05:51:34 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2009-11-17 05:51:34 +0000 |
commit | 471847e2148776e62e4f580ade95572fc525c751 (patch) | |
tree | d4d44bab68b9a95690d8d1a6275f47c4359312f7 /doc/examples/GNUmakefile | |
parent | c12e0e4f45497f8ecb628ba7d753f87aa8db0813 (diff) |
Fix some examples for changed APIs in C++0x branch
Diffstat (limited to 'doc/examples/GNUmakefile')
-rw-r--r-- | doc/examples/GNUmakefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/examples/GNUmakefile b/doc/examples/GNUmakefile index 44fcfeea5..a96e8d65d 100644 --- a/doc/examples/GNUmakefile +++ b/doc/examples/GNUmakefile @@ -1,8 +1,8 @@ BOTAN_CONFIG = botan-config -CXX = g++ -CFLAGS = -O2 -ansi -W -Wall -I../../build/include +CXX = g++-4.5-20091112 +CFLAGS = -O2 -ansi -std=c++0x -W -Wall -I../../build/include LIBS = -L../.. -lbotan SRCS=$(wildcard *.cpp) |