~vitty/armagetronad/trunk-armagetronad-breakpad

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: z-man
  • Date: 2006-11-12 13:51:54 UTC
  • Revision ID: svn-v3-list-QlpoOTFBWSZTWZvbKhsAAAdRgAAQABK6798QIABURMgAAaeoNT1TxT1DQbKaeobXKiyAmlWT7Y5MkdJOtXDtB7w7DOGFBHiOBxaUIu7HQyyQSvxdyRThQkJvbKhs:7d95bf1e-0414-0410-9756-b78462a59f44:armagetronad%2Ftrunk%2Farmagetronad:6269
Merging branch 0.2.8 from revision 6075 to 6268:
 ------------------------------------------------------------------------
 r6262 | z-man | 2006-11-10 22:51:12 +0100 (Fri, 10 Nov 2006) | 1 line
 
 Ping charity is now clamped to the range 0-300 on the server and the client to avoid odd-looking insanely high numbers in the ping charity report console message. Thanks to Sublimal.Freq for pointing this out.
 ------------------------------------------------------------------------
 r6261 | z-man | 2006-11-08 23:18:58 +0100 (Wed, 08 Nov 2006) | 2 lines
 
 Lowered ping clamping for ladder.
 Bugfix: if you kept the automatical vote menu open for too long, the game would refuse to render.
 ------------------------------------------------------------------------
 r6260 | wrtlprnft | 2006-11-06 23:38:11 +0100 (Mon, 06 Nov 2006) | 2 lines
 
 fixed wrong text for an error message.
 
 ------------------------------------------------------------------------
 r6258 | wrtlprnft | 2006-11-05 10:48:28 +0100 (Sun, 05 Nov 2006) | 2 lines
 
 "/me" messages now sent to stdout on the server, before they didn't.
 
 ------------------------------------------------------------------------
 r6253 | wrtlprnft | 2006-10-30 13:29:17 +0100 (Mon, 30 Oct 2006) | 2 lines
 
 added options for custom names and colors for teams.
 
 ------------------------------------------------------------------------
 r6247 | nemostultae | 2006-10-19 21:36:37 +0200 (Thu, 19 Oct 2006) | 1 line
 
 Even more typo fixes
 ------------------------------------------------------------------------
 r6246 | nemostultae | 2006-10-19 21:31:52 +0200 (Thu, 19 Oct 2006) | 2 lines
 
 More typo fixes
 
 ------------------------------------------------------------------------
 r6245 | nemostultae | 2006-10-19 21:25:28 +0200 (Thu, 19 Oct 2006) | 2 lines
 
 Fixed typo, and changed mime-type to text/plain (was application/octet-stream)
 
 ------------------------------------------------------------------------
 r6227 | z-man | 2006-10-13 08:08:44 +0200 (Fri, 13 Oct 2006) | 1 line
 
 Faster array allocated space growth for efficiency.
 ------------------------------------------------------------------------
 r6226 | z-man | 2006-10-13 08:07:51 +0200 (Fri, 13 Oct 2006) | 1 line
 
 Removed some unused setting items from the server.
 ------------------------------------------------------------------------
 r6219 | z-man | 2006-10-12 08:50:55 +0200 (Thu, 12 Oct 2006) | 1 line
 
 Adapted to internal autoconf macro renaming from autoconf 2.59 to 2.60.
 ------------------------------------------------------------------------
 r6144 | z-man | 2006-09-03 13:20:23 +0200 (Sun, 03 Sep 2006) | 1 line
 
 Cosmetic type change.
 ------------------------------------------------------------------------
 r6143 | z-man | 2006-09-03 13:18:35 +0200 (Sun, 03 Sep 2006) | 1 line
 
 Fixed typo.
 ------------------------------------------------------------------------
 r6142 | z-man | 2006-09-03 13:18:14 +0200 (Sun, 03 Sep 2006) | 1 line
 
 currentFace is cleared on RemoveFromGame(); this avoids zombie game objects from referencing faces and the sub-faces resulting from grid changes forever. The same isn't required in eGameObject::RemoveFromGame(), since that one calls the destructor which does the same job.
 ------------------------------------------------------------------------
 r6132 | z-man | 2006-08-31 22:56:10 +0200 (Thu, 31 Aug 2006) | 2 lines
 
 adapted to new layout
 
 ------------------------------------------------------------------------
 r6131 | z-man | 2006-08-31 22:55:46 +0200 (Thu, 31 Aug 2006) | 2 lines
 
 added OSX package to freshmeat submission
 
 ------------------------------------------------------------------------
 r6100 | z-man | 2006-08-20 18:23:30 +0200 (Sun, 20 Aug 2006) | 1 line
 
 Fixed leaving out particle system on master-only builds.
 ------------------------------------------------------------------------
 r6099 | z-man | 2006-08-20 18:22:54 +0200 (Sun, 20 Aug 2006) | 1 line
 
 Changed ping averager weight calculation to avoid expensive exp() call.
 ------------------------------------------------------------------------
 r6098 | z-man | 2006-08-20 18:19:49 +0200 (Sun, 20 Aug 2006) | 1 line
 
 Don't include the resource manager for a master-only built.
 ------------------------------------------------------------------------
 r6097 | z-man | 2006-08-20 18:19:18 +0200 (Sun, 20 Aug 2006) | 1 line
 
 Don't check for libxml if only the master server should be built.
 ------------------------------------------------------------------------

Show diffs side-by-side

added added

removed removed

Lines of Context:
109
109
 
110
110
# consistency check of the three build flags
111
111
test x$armamain = xfalse && build_dedicated=false build_regular=false
112
 
test x$build_dedicated = xfalse && test x$build_regular = xfalse && buildmain=false
 
112
test x$build_dedicated = xfalse && test x$build_regular = xfalse && armamain=false
113
113
 
114
114
AM_CONDITIONAL(BUILDDEDICATED, test x$build_dedicated = xtrue)
115
 
AM_CONDITIONAL(BUILDREGULAR, test x$build_regular = xfalse)
 
115
AM_CONDITIONAL(BUILDREGULAR, test x$build_regular = xtrue)
116
116
AM_CONDITIONAL(BUILDMAIN, test x$armamain = xtrue)
117
117
 
118
118
AC_ARG_ENABLE(memmanager,
538
538
dnl         libxml2
539
539
dnl *************************************************
540
540
 
 
541
if test x$armamain = xtrue; then
 
542
 
541
543
test -z "$XML2_CONFIG" && XML2_CONFIG=xml2-config
542
544
 
543
545
if $XML2_CONFIG --libs > /dev/null; then
565
567
)
566
568
# fi
567
569
 
 
570
fi
 
571
 
568
572
if test x$build_regular = xfalse; then
569
573
 AC_MSG_RESULT([
570
574