2015-03-04 18:15:56 +01:00
|
|
|
Index: configure.in
|
|
|
|
===================================================================
|
2010-11-08 14:41:34 +01:00
|
|
|
--- configure.in.orig
|
|
|
|
+++ configure.in
|
2010-12-20 00:42:59 +01:00
|
|
|
@@ -59,7 +59,9 @@ AC_ARG_ENABLE(dynamic,
|
|
|
|
AC_MSG_RESULT([yes, by default])
|
|
|
|
])
|
|
|
|
|
|
|
|
-AC_PROG_CC
|
|
|
|
+AC_PROG_CC_STDC
|
|
|
|
+AC_USE_SYSTEM_EXTENSIONS
|
|
|
|
+AC_SYS_LARGEFILE
|
|
|
|
AC_PROG_CPP
|
|
|
|
AC_PROG_RANLIB
|
|
|
|
AC_PROG_INSTALL
|
2015-03-04 18:15:56 +01:00
|
|
|
Index: src/internal.h
|
|
|
|
===================================================================
|
2011-11-22 03:36:24 +01:00
|
|
|
--- src/internal.h.orig
|
|
|
|
+++ src/internal.h
|
2015-03-04 18:15:56 +01:00
|
|
|
@@ -51,6 +51,7 @@ typedef unsigned char byte;
|
2011-11-22 03:36:24 +01:00
|
|
|
# include "hredirect.h"
|
|
|
|
#endif
|
2010-11-08 14:41:34 +01:00
|
|
|
|
2011-11-22 03:36:24 +01:00
|
|
|
+#pragma GCC visibility push(hidden)
|
|
|
|
/* Configuration and constants */
|
2010-11-08 14:41:34 +01:00
|
|
|
|
2020-06-15 17:25:03 +02:00
|
|
|
#define MAXSERVERS 5 /* do not increase beyond no. of bits in `unsigned'! */
|
|
|
|
@@ -960,4 +961,5 @@ static inline int errno_resources(int e)
|
2011-11-22 03:36:24 +01:00
|
|
|
(tv)|=GETIL_B(cb), \
|
|
|
|
(tv) )
|
|
|
|
|
|
|
|
+#pragma GCC visibility pop
|
|
|
|
#endif
|