| 123456789101112131415161718192021222324252627282930313233343536373839 |
- Index: src/build-data/cc/gcc
- --- src/build-data/cc/gcc.orig 2008-09-30 18:59:48 +0200
- +++ src/build-data/cc/gcc 2008-10-01 19:45:12 +0200
- @@ -8,8 +8,8 @@
- add_lib_dir_option "-L"
- add_lib_option "-l"
-
- -lang_flags "-D_REENTRANT -ansi -Wno-long-long"
- -warning_flags "-W -Wall"
- +lang_flags "-D_REENTRANT -Wno-long-long"
- +warning_flags ""
- #warning_flags "-Werror -Wextra -Wall -Wstrict-aliasing -Wstrict-overflow=5 -Wcast-align -Wmissing-declarations"
-
- lib_opt_flags "-O2 -finline-functions"
- Index: src/build-data/makefile/unix.in
- --- src/build-data/makefile/unix.in.orig 2008-09-30 18:59:48 +0200
- +++ src/build-data/makefile/unix.in 2008-10-01 19:45:12 +0200
- @@ -26,7 +26,7 @@
- BINDIR = $(INSTALLROOT)/bin
- LIBDIR = $(INSTALLROOT)/@{var:libdir}
- HEADERDIR = $(INSTALLROOT)/@{var:includedir}/botan
- -DOCDIR = $(INSTALLROOT)/@{var:docdir}/Botan-$(VERSION)
- +DOCDIR = $(INSTALLROOT)/@{var:docdir}
-
- CONFIG_SCRIPT = @{var:botan-config}
-
- Index: src/utils/types.h
- --- src/utils/types.h.orig 2008-09-30 18:59:48 +0200
- +++ src/utils/types.h 2008-10-01 19:45:12 +0200
- @@ -20,7 +20,7 @@
- typedef unsigned __int64 u64bit;
- #elif defined(__KCC)
- typedef unsigned __long_long u64bit;
- -#elif defined(__GNUG__)
- +#elif defined(__GNUC__)
- __extension__ typedef unsigned long long u64bit;
- #else
- typedef unsigned long long u64bit;
|