]> git.pld-linux.org Git - packages/reiserfsprogs.git/blob - glibc.patch
fix build with new glibc
[packages/reiserfsprogs.git] / glibc.patch
1 Description: Fix compilation with newer glibc
2 Fixes compilation with newer glibc.
3 If _XOPEN_SOURCE is defined _DEFAULT_SOURCE needs to be defined explicit
4 to have the definition of loff_t.
5 Author: Felix Zielcke <fzielcke@z-51.de>
6 Bug-Debian: https://bugs.debian.org/916166
7 Last-Update: 2018-12-12
8
9 --- reiserfsprogs-3.6.27.orig/lib/parse_time.c
10 +++ reiserfsprogs-3.6.27/lib/parse_time.c
11 @@ -1,4 +1,5 @@
12  #define _XOPEN_SOURCE
13 +#define _DEFAULT_SOURCE
14  #ifdef HAVE_CONFIG_H
15  #include <config.h>
16  #endif
This page took 0.10549 seconds and 3 git commands to generate.