|
Bugzilla – Full Text Bug Listing |
| Summary: | udftools are missing, because gcc 4 fails to compile udftools | ||
|---|---|---|---|
| Product: | [openSUSE] SUSE LINUX 10.0 | Reporter: | Bernd Strieder <strieder> |
| Component: | Basesystem | Assignee: | Wolfgang Engel <wolfgang.engel> |
| Status: | RESOLVED INVALID | QA Contact: | E-mail List <qa-bugs> |
| Severity: | Normal | ||
| Priority: | P5 - None | CC: | aj, matz |
| Version: | Beta 2 | ||
| Target Milestone: | --- | ||
| Hardware: | i686 | ||
| OS: | All | ||
| Whiteboard: | |||
| Found By: | Beta-Customer | Services Priority: | |
| Business Priority: | Blocker: | --- | |
| Marketing QA Status: | --- | IT Deployment: | --- |
??? It's there just fine: /dist/install/SUSE-10.0-DVD-Beta2/CD1/suse/i586/udftools-1.0.0b3-2.i586.rpm Same for the ftp tree. |
The package udftools to format udf filesystems used on DVD-RAM an other removable media is missing. The cause is probably, that gcc 4 fails to compile that package, because it is sloppily programmed. The following one line patch makes gcc 4 compiling udftools, although a lot of warnings are still there. The compiled applications seem to run. diff -r ./wrudf/wrudf.c ../../udftools-1.0.0b3/wrudf/wrudf.c 248c248 < (char*)spm += spm->partitionMapLength; --- > spm = (struct sparablePartitionMap*)((unsigned char*)spm + spm->partitionMapLength); Bernd Strieder