aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2023-01-07 11:34:55 +0100
committerChristian Grothoff <christian@grothoff.org>2023-01-07 11:35:06 +0100
commit325b98f592bb0b671e41b2cf90d4765157035019 (patch)
tree9c55dc923b7f94f5b3b177a1f2bfbdf6e3a69551
parent23ba3b90bf0f88a94b623149f6a8cbd55649d28a (diff)
downloadgnunet-325b98f592bb0b671e41b2cf90d4765157035019.tar.gz
gnunet-325b98f592bb0b671e41b2cf90d4765157035019.zip
-ensure pogen sort is stable
-rwxr-xr-xbin/pogen.sh2
-rw-r--r--gnunet_private_config.h.in17
2 files changed, 12 insertions, 7 deletions
diff --git a/bin/pogen.sh b/bin/pogen.sh
index b97ef046a..a68152bf4 100755
--- a/bin/pogen.sh
+++ b/bin/pogen.sh
@@ -3,6 +3,8 @@
3 3
4# Set language domain to C for a more stable sort! 4# Set language domain to C for a more stable sort!
5export LANG=C 5export LANG=C
6# Manual says, it should be LC_ALL...
7export LC_ALL=C
6 8
7find src -name "*.c" | grep -v \# | grep -v /test_ | grep -v /perf_ | grep -v _old | grep -v chat | grep -v .libs/ | sort > po/POTFILES.in 9find src -name "*.c" | grep -v \# | grep -v /test_ | grep -v /perf_ | grep -v _old | grep -v chat | grep -v .libs/ | sort > po/POTFILES.in
8grep -l _\( `find src -name "*.h"` | grep -v "platform.h" | grep -v _old | grep -v chat | sort >> po/POTFILES.in 10grep -l _\( `find src -name "*.h"` | grep -v "platform.h" | grep -v _old | grep -v chat | sort >> po/POTFILES.in
diff --git a/gnunet_private_config.h.in b/gnunet_private_config.h.in
index fb18dae28..46deb13d6 100644
--- a/gnunet_private_config.h.in
+++ b/gnunet_private_config.h.in
@@ -298,6 +298,9 @@
298/* Define to 1 if memchr is supported */ 298/* Define to 1 if memchr is supported */
299#undef HAVE_MEMCHR 299#undef HAVE_MEMCHR
300 300
301/* Define to 1 if you have the <memory.h> header file. */
302#undef HAVE_MEMORY_H
303
301/* Define to 1 if memset_s is supported */ 304/* Define to 1 if memset_s is supported */
302#undef HAVE_MEMSET_S 305#undef HAVE_MEMSET_S
303 306
@@ -424,9 +427,6 @@
424/* Define to 1 if you have the <stdint.h> header file. */ 427/* Define to 1 if you have the <stdint.h> header file. */
425#undef HAVE_STDINT_H 428#undef HAVE_STDINT_H
426 429
427/* Define to 1 if you have the <stdio.h> header file. */
428#undef HAVE_STDIO_H
429
430/* Define to 1 if you have the <stdlib.h> header file. */ 430/* Define to 1 if you have the <stdlib.h> header file. */
431#undef HAVE_STDLIB_H 431#undef HAVE_STDLIB_H
432 432
@@ -681,9 +681,7 @@
681/* Define to 1 if the `S_IS*' macros in <sys/stat.h> do not work properly. */ 681/* Define to 1 if the `S_IS*' macros in <sys/stat.h> do not work properly. */
682#undef STAT_MACROS_BROKEN 682#undef STAT_MACROS_BROKEN
683 683
684/* Define to 1 if all of the C90 standard headers exist (not just the ones 684/* Define to 1 if you have the ANSI C header files. */
685 required in a freestanding environment). This macro is provided for
686 backward compatibility; new code need not use it. */
687#undef STDC_HEADERS 685#undef STDC_HEADERS
688 686
689/* Path to sysctl */ 687/* Path to sysctl */
@@ -704,6 +702,11 @@
704/* Define to 1 if the X Window System is missing or not being used. */ 702/* Define to 1 if the X Window System is missing or not being used. */
705#undef X_DISPLAY_MISSING 703#undef X_DISPLAY_MISSING
706 704
705/* Enable large inode numbers on Mac OS X 10.5. */
706#ifndef _DARWIN_USE_64_BIT_INODE
707# define _DARWIN_USE_64_BIT_INODE 1
708#endif
709
707/* Number of bits in a file offset, on hosts where this is settable. */ 710/* Number of bits in a file offset, on hosts where this is settable. */
708#undef _FILE_OFFSET_BITS 711#undef _FILE_OFFSET_BITS
709 712
@@ -728,7 +731,7 @@
728/* Define to `long int' if <sys/types.h> does not define. */ 731/* Define to `long int' if <sys/types.h> does not define. */
729#undef off_t 732#undef off_t
730 733
731/* Define as a signed integer type capable of holding a process identifier. */ 734/* Define to `int' if <sys/types.h> does not define. */
732#undef pid_t 735#undef pid_t
733 736
734/* Define to `unsigned int' if <sys/types.h> does not define. */ 737/* Define to `unsigned int' if <sys/types.h> does not define. */