[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Stratagus-CVS] stratagus ./Rules.make.orig ./setup doc/faq.htm...
From: |
Nehal Mistry |
Subject: |
[Stratagus-CVS] stratagus ./Rules.make.orig ./setup doc/faq.htm... |
Date: |
Sat, 08 Nov 2003 18:02:14 -0500 |
CVSROOT: /cvsroot/stratagus
Module name: stratagus
Branch:
Changes by: Nehal Mistry <address@hidden> 03/11/08 18:02:14
Modified files:
. : Rules.make.orig setup
doc : faq.html
src/clone : ccl.c clone.c
Log message:
remove SLOW_INPUT
Patches:
Index: stratagus/Rules.make.orig
diff -u stratagus/Rules.make.orig:1.151 stratagus/Rules.make.orig:1.152
--- stratagus/Rules.make.orig:1.151 Sat Oct 25 14:58:41 2003
+++ stratagus/Rules.make.orig Sat Nov 8 18:02:09 2003
@@ -21,7 +21,7 @@
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## GNU General Public License for more details.
##
-## $Id: Rules.make.orig,v 1.151 2003/10/25 18:58:41 n0body Exp $
+## $Id: Rules.make.orig,v 1.152 2003/11/08 23:02:09 nehalmistry Exp $
##
############################################################################
@@ -184,7 +184,6 @@
## define flags
#DEBUG= -DDEBUG # -DREFS_DEBUG # -DFLAG_DEBUG
##
-## SLOW_INPUT If you have problems that events aren't fetched.
## BPP8_* Only for X11 8bpp common palette:
## BPP8_NORMAL disables default, like other Xbpp (delivers errors)
## BPP8_WINSAFE Uses a windows safe palette instead.
Index: stratagus/doc/faq.html
diff -u stratagus/doc/faq.html:1.46 stratagus/doc/faq.html:1.47
--- stratagus/doc/faq.html:1.46 Thu Jul 3 13:08:06 2003
+++ stratagus/doc/faq.html Sat Nov 8 18:02:12 2003
@@ -2,7 +2,7 @@
<html>
<head>
<!--
----- $Id: faq.html,v 1.46 2003/07/03 17:08:06 ingo Exp $
+---- $Id: faq.html,v 1.47 2003/11/08 23:02:12 nehalmistry Exp $
---- (c) Copyright 2001-2003 by Lutz Sammer
@@ -39,10 +39,6 @@
A: The .depend file is broken, simply 'rm .depend' and 'make depend'
again. If the problem still occurs, you will need to 'make' without
making dependencies first.<p>
-
- <b>Q: The software cursor is too slow.</b><br>
- A: This should be fixed in the latest stable release, if it still happens,
- compile in SDL video mode or add -DSLOW_INPUT to DFLAGS in Rules.make.<p>
<b>Q: Does Stratagus work with ALSA?</b><br>
A: Yes, if you compiled SDL with alsa support and you compiled stratagus
Index: stratagus/setup
diff -u stratagus/setup:1.157 stratagus/setup:1.158
--- stratagus/setup:1.157 Sat Oct 25 14:58:41 2003
+++ stratagus/setup Sat Nov 8 18:02:09 2003
@@ -23,7 +23,7 @@
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## GNU General Public License for more details.
##
-## $Id: setup,v 1.157 2003/10/25 18:58:41 n0body Exp $
+## $Id: setup,v 1.158 2003/11/08 23:02:09 nehalmistry Exp $
##
##-----------------------------------------------------------------------------
## HERE ARE SOME USER-CONFIGURABLE VARIABLES
@@ -33,7 +33,6 @@
## These could be used for experimental versions
## ---------------------------------------------
-## SLOW_INPUT If you have problems that events aren't fetched.
## BPP8_* Only for X11 8bpp common palette:
## BPP8_NORMAL disables default, like other Xbpp (delivers errors)
## BPP8_WINSAFE Uses a windows safe palette instead.
Index: stratagus/src/clone/ccl.c
diff -u stratagus/src/clone/ccl.c:1.125 stratagus/src/clone/ccl.c:1.126
--- stratagus/src/clone/ccl.c:1.125 Wed Nov 5 01:43:09 2003
+++ stratagus/src/clone/ccl.c Sat Nov 8 18:02:13 2003
@@ -26,7 +26,7 @@
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
// 02111-1307, USA.
//
-// $Id: ccl.c,v 1.125 2003/11/05 06:43:09 nehalmistry Exp $
+// $Id: ccl.c,v 1.126 2003/11/08 23:02:13 nehalmistry Exp $
//@{
@@ -1043,9 +1043,6 @@
#ifdef HIERARCHIC_PATHFINDER
gh_define("stratagus-feature-hierarchic-pathfinder", SCM_BOOL_T);
#endif
-#ifdef SLOW_INPUT
- gh_define("stratagus-feature-slow-input", SCM_BOOL_T);
-#endif
#ifdef USE_FLAC
gh_define("stratagus-feature-flac", SCM_BOOL_T);
#endif
@@ -1134,7 +1131,7 @@
}
fprintf(fd, ";;; -----------------------------------------\n");
- fprintf(fd, ";;; $Id: ccl.c,v 1.125 2003/11/05 06:43:09 nehalmistry Exp
$\n");
+ fprintf(fd, ";;; $Id: ccl.c,v 1.126 2003/11/08 23:02:13 nehalmistry Exp
$\n");
fprintf(fd, "(set-video-resolution! %d %d)\n", VideoWidth, VideoHeight);
@@ -1159,7 +1156,7 @@
}
fprintf(fd, ";;; -----------------------------------------\n");
- fprintf(fd, ";;; $Id: ccl.c,v 1.125 2003/11/05 06:43:09 nehalmistry Exp
$\n");
+ fprintf(fd, ";;; $Id: ccl.c,v 1.126 2003/11/08 23:02:13 nehalmistry Exp
$\n");
// Global options
if (OriginalFogOfWar) {
@@ -1270,7 +1267,7 @@
extern SCM oblistvar;
CLprintf(file, "\n;;; -----------------------------------------\n");
- CLprintf(file, ";;; MODULE: CCL $Id: ccl.c,v 1.125 2003/11/05 06:43:09
nehalmistry Exp $\n\n");
+ CLprintf(file, ";;; MODULE: CCL $Id: ccl.c,v 1.126 2003/11/08 23:02:13
nehalmistry Exp $\n\n");
for (list = oblistvar; gh_list_p(list); list = gh_cdr(list)) {
SCM sym;
Index: stratagus/src/clone/clone.c
diff -u stratagus/src/clone/clone.c:1.221 stratagus/src/clone/clone.c:1.222
--- stratagus/src/clone/clone.c:1.221 Fri Nov 7 16:21:13 2003
+++ stratagus/src/clone/clone.c Sat Nov 8 18:02:13 2003
@@ -26,7 +26,7 @@
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
// 02111-1307, USA.
//
-// $Id: clone.c,v 1.221 2003/11/07 21:21:13 jsalmon3 Exp $
+// $Id: clone.c,v 1.222 2003/11/08 23:02:13 nehalmistry Exp $
//@{
@@ -1227,9 +1227,6 @@
#endif
#ifdef HIERARCHIC_PATHFINDER
"HIERARCHIC-PATHFINDER "
-#endif
-#ifdef SLOW_INPUT
- "SLOW-INPUT "
#endif
, NameLine);
}
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Stratagus-CVS] stratagus ./Rules.make.orig ./setup doc/faq.htm...,
Nehal Mistry <=