gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [libmicrohttpd] branch master updated: Fixed builds with si


From: gnunet
Subject: [GNUnet-SVN] [libmicrohttpd] branch master updated: Fixed builds with size optimisation.
Date: Sat, 25 Nov 2017 17:03:52 +0100

This is an automated email from the git hooks/post-receive script.

karlson2k pushed a commit to branch master
in repository libmicrohttpd.

The following commit(s) were added to refs/heads/master by this push:
     new 8c8f7c96 Fixed builds with size optimisation.
8c8f7c96 is described below

commit 8c8f7c961498aba8e891b445809a6f764c3e8046
Author: Evgeny Grin (Karlson2k) <address@hidden>
AuthorDate: Sat Nov 25 19:03:24 2017 +0300

    Fixed builds with size optimisation.
---
 ChangeLog                | 3 +++
 src/microhttpd/mhd_str.c | 4 +++-
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/ChangeLog b/ChangeLog
index a9f25ba0..7afe5543 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+Sat Nov 26 18:37:00 MSK 2017
+       Fixed build with optimisation for size. -EG
+
 Fri Nov 24 20:14:02 CET 2017
        Releasing GNU libmicrohttpd 0.9.56. -CG
 
diff --git a/src/microhttpd/mhd_str.c b/src/microhttpd/mhd_str.c
index 0c62de52..cb86ae80 100644
--- a/src/microhttpd/mhd_str.c
+++ b/src/microhttpd/mhd_str.c
@@ -162,8 +162,10 @@ toasciiupper (char c)
 {
   return isasciilower (c) ? (c - 'a' + 'A') : c;
 }
+#endif /* Disable unused functions. */
 
 
+#if defined(MHD_FAVOR_SMALL_CODE) /* Used only in MHD_str_to_uvalue_n_() */
 /**
  * Convert US-ASCII decimal digit to its value.
  *
@@ -178,7 +180,7 @@ todigitvalue (char c)
 
   return -1;
 }
-#endif /* Disable unused functions. */
+#endif /* MHD_FAVOR_SMALL_CODE */
 
 
 /**

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]