summaryrefslogtreecommitdiff
path: root/libre/fakeroot/silence-dlerror.patch
diff options
context:
space:
mode:
authorbill-auger <mr.j.spam.me@gmail.com>2020-07-13 23:08:45 -0400
committerbill-auger <mr.j.spam.me@gmail.com>2020-07-14 11:07:47 -0400
commitc53bada25d32ccaba628488cabe023cda405dc7c (patch)
treeb173bc1710f6b642ea46e9e3e06ef6fd102525d9 /libre/fakeroot/silence-dlerror.patch
parentc72b6d65fe391a5d407f2126dd15040ff79a022b (diff)
downloadabslibre-c53bada25d32ccaba628488cabe023cda405dc7c.tar.gz
abslibre-c53bada25d32ccaba628488cabe023cda405dc7c.tar.bz2
abslibre-c53bada25d32ccaba628488cabe023cda405dc7c.zip
[fakeroot->fakeroot-tcp] rename, allow build without networking
Diffstat (limited to 'libre/fakeroot/silence-dlerror.patch')
-rw-r--r--libre/fakeroot/silence-dlerror.patch17
1 files changed, 0 insertions, 17 deletions
diff --git a/libre/fakeroot/silence-dlerror.patch b/libre/fakeroot/silence-dlerror.patch
deleted file mode 100644
index a4472d8f7..000000000
--- a/libre/fakeroot/silence-dlerror.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-diff --git a/libfakeroot.c b/libfakeroot.c
-index f867758..7ef6e47 100644
---- a/libfakeroot.c
-+++ b/libfakeroot.c
-@@ -256,10 +256,12 @@ void load_library_symbols(void){
- /* clear dlerror() just in case dlsym() legitimately returns NULL */
- msg = dlerror();
- *(next_wrap[i].doit)=dlsym(get_libc(), next_wrap[i].name);
-+#ifdef LIBFAKEROOT_DEBUGGING
- if ( (msg = dlerror()) != NULL){
- fprintf (stderr, "dlsym(%s): %s\n", next_wrap[i].name, msg);
- /* abort ();*/
- }
-+#endif /* LIBFAKEROOT_DEBUGGING */
- }
- }
-