]> Dogcows Code - chaz/yoink/commitdiff
preliminary AM_SILENT_RULES support
authorCharles McGarvey <chazmcgarvey@brokenzipper.com>
Sun, 13 Dec 2009 00:03:49 +0000 (17:03 -0700)
committerCharles McGarvey <chazmcgarvey@brokenzipper.com>
Sun, 13 Dec 2009 00:03:49 +0000 (17:03 -0700)
27 files changed:
COPYING
configure.ac
cscope.make
data/sounds/NightFusionIntro.ogg
data/sounds/NightFusionLoop.ogg
extra/beatthecube.xm [deleted file]
src/Moof/stlplus/containers.hpp [changed mode: 0644->0755]
src/Moof/stlplus/containers_fixes.hpp [changed mode: 0644->0755]
src/Moof/stlplus/digraph.hpp [changed mode: 0644->0755]
src/Moof/stlplus/digraph.tpp [changed mode: 0644->0755]
src/Moof/stlplus/exceptions.hpp [changed mode: 0644->0755]
src/Moof/stlplus/foursome.hpp [changed mode: 0644->0755]
src/Moof/stlplus/foursome.tpp [changed mode: 0644->0755]
src/Moof/stlplus/hash.hpp [changed mode: 0644->0755]
src/Moof/stlplus/hash.tpp [changed mode: 0644->0755]
src/Moof/stlplus/matrix.hpp [changed mode: 0644->0755]
src/Moof/stlplus/matrix.tpp [changed mode: 0644->0755]
src/Moof/stlplus/ntree.hpp [changed mode: 0644->0755]
src/Moof/stlplus/ntree.tpp [changed mode: 0644->0755]
src/Moof/stlplus/safe_iterator.hpp [changed mode: 0644->0755]
src/Moof/stlplus/safe_iterator.tpp [changed mode: 0644->0755]
src/Moof/stlplus/smart_ptr.hpp [changed mode: 0644->0755]
src/Moof/stlplus/smart_ptr.tpp [changed mode: 0644->0755]
src/Moof/stlplus/triple.hpp [changed mode: 0644->0755]
src/Moof/stlplus/triple.tpp [changed mode: 0644->0755]
win32/Makefile.am
win32/mkpackage.sh.in [moved from win32/build-installer.sh.in with 100% similarity]

diff --git a/COPYING b/COPYING
index 53b5fd06960862362941089539c396821f11923c..d0975dcf8783a01046f13c02639709ea3d88668d 100644 (file)
--- a/COPYING
+++ b/COPYING
@@ -40,11 +40,6 @@ portions.  Neither do the terms and conditions associated with the
 following portions necessarily apply to the files released under the above
 license.  The texts of applicable licences can be found in doc/licenses/.
 
-  Portion: beatthecube.xm, nightfusion.xm
-   Source: http://8bitcollective.com/members/FearofDark/
-Copyright: (c) 2009 Stephen H. Johnston
-  License: CCPL-Attribution-ShareAlike-NonCommercial-2.5
-
   Portion: cml
    Source: http://www.cmldev.net/
 Copyright: (c) 2009 Jesse Anders
@@ -75,6 +70,11 @@ Copyright: (c) 2009 Xiph.Org Foundation
 Copyright: (c) 1995-2008 Lua.org, PUC-Rio
   License: MIT
 
+  Portion: nightfusion.xm
+   Source: http://8bitcollective.com/members/FearofDark/
+Copyright: (c) 2009 Stephen H. Johnston
+  License: CCPL-Attribution-ShareAlike-NonCommercial-2.5
+
   Portion: OpenAL32.dll
    Source: http://kcat.strangesoft.net/openal.html
 Copyright: (c) 2009 Chris Robinson
index f03af5d2b1fbc5b611bceaf717c038d667906079..dc29d61e0945cb2f5e577dbbfa4021fc6bacf469 100644 (file)
@@ -46,9 +46,7 @@ case "${host}" in
                then
                        AC_MSG_ERROR([windres could not be found])
                fi
-               AC_SUBST(WINDRES)
                AC_PATH_PROGS([MAKENSIS], [makensis])
-               AC_SUBST(MAKENSIS)
        ;;
        *cygwin*)
                CYGWIN=yes
@@ -58,12 +56,8 @@ case "${host}" in
                MACOSX=yes
                LIBS="$LIBS -Wl,-framework"
        ;;
-       *-linux-gnu*)
-               LINUX=yes
-       ;;
 esac
 
-AM_CONDITIONAL([LINUX], test "$LINUX" = "yes")
 AM_CONDITIONAL([WIN32], test "$WIN32" = "yes")
 
 
@@ -152,13 +146,11 @@ if test x$gtk = xyes
 then
        AC_DEFINE([USE_GTK], 1,
                          [Define to 1 if you want to use GTK+ info/error dialogs.])
-else
-if test x$qt4 = xyes
+elif test x$qt4 = xyes
 then
        AC_DEFINE([USE_QT4], 1,
                          [Define to 1 if you want to use QT info/error dialogs.])
 fi
-fi
 
 AC_DEFINE_UNQUOTED([YOINK_LOGLEVEL], [$log_level],
                                   [Define to detail level of logging.])
@@ -252,7 +244,7 @@ website="http://www.mesa3d.org/"
 AC_CHECK_HEADERS([GL/gl.h GL/glu.h],,
                                 [missing=yes
                                  echo "***** Missing GL headers ($website) *****"])
-if test x$WIN32 == xyes
+if test x$WIN32 = xyes
 then
 # autoconf library search macro doesn't find opengl32 on windows because it uses
 # different name hashing, but it links fine; assume it's there
@@ -334,7 +326,7 @@ AC_SEARCH_LIBS([clock_gettime], [rt],
 
 if test x$missing == xyes
 then
-       AC_MSG_ERROR([please install missing dependencies (see messages above)])
+       AC_MSG_WARN([You may be missing some dependencies--see messages above.])
 fi
 
 
@@ -362,7 +354,7 @@ AC_CONFIG_FILES([Makefile
 
 if test x$WIN32 = xyes
 then
-       AC_CONFIG_FILES([win32/Makefile win32/build-installer.sh])
+       AC_CONFIG_FILES([win32/Makefile win32/mkpackage.sh])
 fi
 
 
index 990b01c3bb342b7a71321ec2478ec9c326c84b9e..47c2811fd9857a8ad0c5eba3d4537d97d300e2e3 100755 (executable)
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
 
 current=`pwd`
 cd /
index 785ad8ab4f42bf59aaaefdf53ff7cc7bda0b9427..6ab5084389c61e5c9fdb83a92133dfdcab9e2bd1 100644 (file)
Binary files a/data/sounds/NightFusionIntro.ogg and b/data/sounds/NightFusionIntro.ogg differ
index 46a5b55a8a7dc1f188eb54918c1ca59f2b8697b2..a529716bedb922396ed36bc5745a1d61d6f224f0 100644 (file)
Binary files a/data/sounds/NightFusionLoop.ogg and b/data/sounds/NightFusionLoop.ogg differ
diff --git a/extra/beatthecube.xm b/extra/beatthecube.xm
deleted file mode 100644 (file)
index c0bae92..0000000
Binary files a/extra/beatthecube.xm and /dev/null differ
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
index 0cd01dfcaee2b449d05f1323a7c9d96a2bab6f02..016518b6d3038f11d7a1aaed446939c21bf5b6da 100644 (file)
@@ -4,7 +4,7 @@ INSTALLER_NAME = yoinksetup-$(VERSION).exe
 .PHONY: installer
 installer:
        @echo "Building win32 installer..."
-       @(sh build-installer.sh $(INSTALLER_NAME) 2> installer.log 1>&2 && \
+       @(sh mkpackage.sh $(INSTALLER_NAME) 2> installer.log 1>&2 && \
          rm installer.log && echo "Done.") || \
        (echo "Installer compilation failed!"; \
         echo "Check installer.log for details."; exit 1)
This page took 0.062889 seconds and 4 git commands to generate.