Bug 2255225 - scorched3d: C type error in configure script
Summary: scorched3d: C type error in configure script
Keywords:
Status: CLOSED RAWHIDE
Alias: None
Product: Fedora
Classification: Fedora
Component: scorched3d
Version: rawhide
Hardware: Unspecified
OS: Linux
unspecified
medium
Target Milestone: ---
Assignee: Florian Weimer
QA Contact: Fedora Extras Quality Assurance
URL:
Whiteboard:
Depends On:
Blocks: PortingToModernCNoUpstream
TreeView+ depends on / blocked
 
Reported: 2023-12-19 11:28 UTC by Florian Weimer
Modified: 2023-12-19 14:36 UTC (History)
2 users (show)

Fixed In Version: scorched3d-44-34.fc40
Clone Of:
Environment:
Last Closed: 2023-12-19 14:36:58 UTC
Type: ---
Embargoed:


Attachments (Terms of Use)

Description Florian Weimer 2023-12-19 11:28:59 UTC
I couldn't find a good way to report this upstream, so I'm reporting this here.

This package needs a small patch to fix a C compatibility issue, otherwise autoconf results could change unexpectedly after the GCC 14 compiler update.

diff -ur scorched3d-44.orig/scorched/configure-al.m4 scorched3d-44/scorched/configure-al.m4
--- scorched3d-44.orig/scorched/configure-al.m4	2014-08-01 18:47:31.000000000 +0200
+++ scorched3d-44/scorched/configure-al.m4	2023-12-19 12:05:21.918456484 +0100
@@ -91,7 +91,7 @@
 
 		int main(int argc, char *argv[])
 		{
-			alutInit(argc, argv);
+			alutInit(&argc, argv);
 			return 0;
 		}
 #undef  main


Reproducible: Always


Note You need to log in before you can comment on or make changes to this bug.