Package: qfits
Version: 6.2.0-1
Severity: important
Tags: patch
Justification: fails to build from source
User: [email protected]
Usertags: origin-ubuntu karmic ubuntu-patch
In Ubuntu, we've applied the attached patch to achieve the following:
* [FTBFS] open() needs mode if O_CREAT in qfits_memory.c to be build
in GCC 4.4 (LP: #495422)
We thought you might be interested in doing the same.
-- System Information:
Debian Release: squeeze/sid
APT prefers karmic-updates
APT policy: (500, 'karmic-updates'), (500, 'karmic-security'), (500, 'karmic')
Architecture: i386 (i686)
Kernel: Linux 2.6.31-16-generic (SMP w/2 CPU cores)
Locale: LANG=es_ES.UTF-8, LC_CTYPE=es_ES.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diff -u qfits-6.2.0/debian/changelog qfits-6.2.0/debian/changelog
only in patch2:
unchanged:
--- qfits-6.2.0.orig/src/qfits_memory.c
+++ qfits-6.2.0/src/qfits_memory.c
@@ -308,7 +308,7 @@
/* Create swap file with rights: rw-rw-rw- */
swapfileid = ++ qfits_memory_table.file_reg ;
fname = qfits_memory_tmpfilename(swapfileid);
- swapfd = open(fname, O_RDWR | O_CREAT);
+ swapfd = open(fname, O_RDWR | O_CREAT, S_IRUSR|S_IWUSR);
if (swapfd==-1) {
fprintf(stderr, "qfits_mem: cannot create swap file\n");
exit(-1);