You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.2 KiB
38 lines
1.2 KiB
Index: include/types.h |
|
--- include/types.h.orig 2008-03-10 18:27:28 +0100 |
|
+++ include/types.h 2008-03-10 22:21:25 +0100 |
|
@@ -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; |
|
Index: misc/config/cc/gcc |
|
--- misc/config/cc/gcc.orig 2008-03-10 18:27:28 +0100 |
|
+++ misc/config/cc/gcc 2008-03-10 22:22:00 +0100 |
|
@@ -10,8 +10,8 @@ |
|
|
|
lib_opt_flags "-O2 -finline-functions" |
|
check_opt_flags "-O2" |
|
-lang_flags "-D_REENTRANT -ansi -Wno-long-long" |
|
-warning_flags "-W -Wall" |
|
+lang_flags "-D_REENTRANT -Wno-long-long" |
|
+warning_flags "" |
|
|
|
so_obj_flags "-fPIC" |
|
debug_flags "-g" |
|
Index: misc/config/makefile/unix.in |
|
--- misc/config/makefile/unix.in.orig 2008-03-10 18:27:28 +0100 |
|
+++ misc/config/makefile/unix.in 2008-03-10 22:21:25 +0100 |
|
@@ -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} |
|
|
|
OWNER = @{var:install_user} |
|
GROUP = @{var:install_group}
|
|
|