Skip to Content.
Sympa Menu

sm-spell-submit - Re: [SM-Spell-Submit] [SourceForge.net Release] opentnl : TNL Source

sm-spell-submit AT lists.ibiblio.org

Subject: Submit list for new spells

List archive

Chronological Thread  
  • From: Eric Sandall <eric AT sandall.us>
  • To: sm-spell-submit AT lists.ibiblio.org
  • Subject: Re: [SM-Spell-Submit] [SourceForge.net Release] opentnl : TNL Source
  • Date: Thu, 24 Feb 2005 14:54:58 -0800

Quoting "SourceForge.net" <noreply AT sourceforge.net>:
> Project: Torque Network Library (opentnl)
> Package: TNL Source
> Date : 2005-02-22 15:59
>
> Project "Torque Network Library" ('opentnl') has released the new version of
> package 'TNL Source'. You can download it from SourceForge.net by following
> this link:
>
<https://sourceforge.net/project/showfiles.php?group_id=106342&release_id=307583
> >
> or browse Release Notes and ChangeLog by visiting this link:
> <https://sourceforge.net/project/shownotes.php?release_id=307583>

This fails. :( See:
http://www.garagegames.com/mg/forums/result.thread.php?qt=24387

I've attached the two patches I submitted there to get it until it fails with:
make[1]: Entering directory `/usr/src/tnl/libtomcrypt'
cc -c -I./ -Wall -Wsign-compare -W -Wno-unused -Wshadow -Werror -Os -c -o
tiger.o tiger.c
tiger.c:544: warning: conflicting types for built-in function ´round´
make[1]: *** [tiger.o] Error 1
make[1]: Leaving directory `/usr/src/tnl/libtomcrypt´
make: *** [default] Error 2

-sandalle

--
Eric Sandall | Source Mage GNU/Linux Developer
eric AT sandall.us PGP: 0xA8EFDD61 | http://www.sourcemage.org/
http://eric.sandall.us/ | SysAdmin @ Inst. Shock Physics @ WSU
http://counter.li.org/ #196285 | http://www.shock.wsu.edu/

----------------------------------------------------------------
This message was sent using IMP, the Internet Messaging Program.
diff -Naur tnl.orig/tnl/Makefile tnl/tnl/Makefile
--- tnl.orig/tnl/Makefile	2005-02-24 15:25:53.515241112 -0800
+++ tnl/tnl/Makefile	2005-02-24 15:28:04.503327896 -0800
@@ -7,7 +7,7 @@
 # 
 # Configuration
 #
-CC=g++ -g -DTNL_DEBUG -DTNL_ENABLE_LOGGING -I../libtomcrypt # -O2
+CC=g++ -g -DTNL_DEBUG -DTNL_ENABLE_LOGGING -I../libtomcrypt -fpermissive # -O2
 
 OBJECTS=\
 	assert.o\
diff -Naur tnl.orig/libtomcrypt/mycrypt.h tnl/libtomcrypt/mycrypt.h
--- tnl.orig/libtomcrypt/mycrypt.h	2005-02-24 15:25:53.555235032 -0800
+++ tnl/libtomcrypt/mycrypt.h	2005-02-24 15:30:55.581320088 -0800
@@ -9,7 +9,7 @@
 #include <limits.h>
 
 /* if there is a custom definition header file use it */
-#include <mycrypt_custom.h>
+#include "mycrypt_custom.h"
 
 #ifdef __cplusplus
 extern "C" {
@@ -61,16 +61,16 @@
 };
 /* ch1-01-1 */
 
-#include <mycrypt_cfg.h>
-#include <mycrypt_macros.h>
-#include <mycrypt_cipher.h>
-#include <mycrypt_hash.h>
-#include <mycrypt_prng.h>
-#include <mycrypt_pk.h>
-#include <mycrypt_gf.h>
-#include <mycrypt_misc.h>
-#include <mycrypt_kr.h>
-#include <mycrypt_argchk.h>
+#include "mycrypt_cfg.h"
+#include "mycrypt_macros.h"
+#include "mycrypt_cipher.h"
+#include "mycrypt_hash.h"
+#include "mycrypt_prng.h"
+#include "mycrypt_pk.h"
+#include "mycrypt_gf.h"
+#include "mycrypt_misc.h"
+#include "mycrypt_kr.h"
+#include "mycrypt_argchk.h"
 
 #ifdef __cplusplus
    }



Archive powered by MHonArc 2.6.24.

Top of Page