pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/games/glaxium



Module Name:    pkgsrc
Committed By:   bsiegert
Date:           Sun May 28 09:54:19 UTC 2023

Modified Files:
        pkgsrc/games/glaxium: distinfo
        pkgsrc/games/glaxium/patches: patch-aa

Log Message:
glaxium: use correct compiler for linking

The Makefile hard-codes gcc for linking the binary. This is wrong because
a) it's C++ and
b) there is a CC variable defined above (to the C++ compiler, lol)


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 pkgsrc/games/glaxium/distinfo
cvs rdiff -u -r1.1.1.1 -r1.2 pkgsrc/games/glaxium/patches/patch-aa

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/games/glaxium/distinfo
diff -u pkgsrc/games/glaxium/distinfo:1.8 pkgsrc/games/glaxium/distinfo:1.9
--- pkgsrc/games/glaxium/distinfo:1.8   Tue Oct 26 10:44:01 2021
+++ pkgsrc/games/glaxium/distinfo       Sun May 28 09:54:19 2023
@@ -1,9 +1,9 @@
-$NetBSD: distinfo,v 1.8 2021/10/26 10:44:01 nia Exp $
+$NetBSD: distinfo,v 1.9 2023/05/28 09:54:19 bsiegert Exp $
 
 BLAKE2s (glaxium_0.5.tar.gz) = c4c6d46cbc7a763d54584350bd172cb59c3640b03d8efc9ed5f996cac463c566
 SHA512 (glaxium_0.5.tar.gz) = 544c59f9b758accb7de270dc9b2e9943fab9a69bea9114de589709cb976b2144913a1247b4950e9edd4c2630c7fcc75f04832196076afbe156b61891591b8a11
 Size (glaxium_0.5.tar.gz) = 1692219 bytes
-SHA1 (patch-aa) = 9b8299ed10aaea1e862c929b6f20eef0811cae35
+SHA1 (patch-aa) = 97d405080adab6baeb6a40921fe8f6d64126b7ea
 SHA1 (patch-ab) = e8f2abea9053d73090fdb9ec92806fe21b68d3ce
 SHA1 (patch-ac) = ac0a11ca229865eb637425d6065729d1c8fc3da2
 SHA1 (patch-ad) = 3572e6f5c97f342d5b68024c7ebb17aeedb8b667

Index: pkgsrc/games/glaxium/patches/patch-aa
diff -u pkgsrc/games/glaxium/patches/patch-aa:1.1.1.1 pkgsrc/games/glaxium/patches/patch-aa:1.2
--- pkgsrc/games/glaxium/patches/patch-aa:1.1.1.1       Mon Apr  5 12:39:56 2004
+++ pkgsrc/games/glaxium/patches/patch-aa       Sun May 28 09:54:19 2023
@@ -1,8 +1,8 @@
-$NetBSD: patch-aa,v 1.1.1.1 2004/04/05 12:39:56 xtraeme Exp $
+$NetBSD: patch-aa,v 1.2 2023/05/28 09:54:19 bsiegert Exp $
 
---- Makefile.in.orig   Mon Aug 18 11:38:01 2003
-+++ Makefile.in        Mon Aug 18 11:38:12 2003
-@@ -15,7 +15,7 @@
+--- Makefile.in.orig   2023-05-28 09:43:16.671037189 +0000
++++ Makefile.in
+@@ -15,11 +15,11 @@ mandir=@mandir@
  
  GLAXIUM_INSTALLDIR=$(bindir)
  DATA_DIRS=samples textures
@@ -11,3 +11,8 @@ $NetBSD: patch-aa,v 1.1.1.1 2004/04/05 1
  MAN_DIR=$(mandir)
  
  glaxium : $(OBJ)
+-      $(CC) -g -o glaxium $(OBJ) $(LIB)
++      gcc -g -o glaxium $(OBJ) $(LIB)
+ 
+ 
+ 



Home | Main Index | Thread Index | Old Index