]> andersk Git - test.git/commitdiff
Thanks to Rudolf Spring's help, added support for building on PowerPC architectures.
authorMarkus Gutschke <markus@shellinabox.com>
Mon, 23 Nov 2009 04:57:27 +0000 (04:57 +0000)
committerMarkus Gutschke <markus@shellinabox.com>
Mon, 23 Nov 2009 04:57:27 +0000 (04:57 +0000)
Makefile.am
Makefile.in
config.h
configure
configure.ac
demo/vt100.js
shellinabox/shell_in_a_box.js
shellinabox/vt100.js

index 290575b79b56b54c3263575ee31a705f4c7bb20d..6e075536a06e23343405125f95dfefc66ac1c57a 100644 (file)
@@ -111,6 +111,7 @@ objcopyflags         = case "$(host_cpu)" in                                  \
                          i[0-9]86) echo '-O elf32-i386 -B i386';;             \
                          x86_64)   echo '-O elf64-x86-64 -B i386:x86-64';;    \
                          arm*)     echo '-O elf32-littlearm -B arm';;         \
+                         powerpc*) echo '-O elf32-powerpc -B powerpc';;       \
                        esac
 
 renamesymbols        =                                                        \
index f33706ae34cde9aab5f5732c49a190ff4fbdb419..d345066997f7d391f0e312db423e703a9864f37c 100644 (file)
@@ -375,6 +375,7 @@ objcopyflags = case "$(host_cpu)" in                                  \
                          i[0-9]86) echo '-O elf32-i386 -B i386';;             \
                          x86_64)   echo '-O elf64-x86-64 -B i386:x86-64';;    \
                          arm*)     echo '-O elf32-littlearm -B arm';;         \
+                         powerpc*) echo '-O elf32-powerpc -B powerpc';;       \
                        esac
 
 renamesymbols = \
index a7284bd8e6e40ee592e5f3ca817e30ca76db3e44..1b752d9528b1844cf63c7a184866d55029c97c2e 100644 (file)
--- a/config.h
+++ b/config.h
 #define STDC_HEADERS 1
 
 /* Most recent revision number in the version control system */
-#define VCS_REVISION "188"
+#define VCS_REVISION "189"
 
 /* Version number of package */
 #define VERSION "2.10"
index 0bd626e6cf9b66e4bcea887b3b4b261ff9cf195f..eb3bbbecf70f4d54403b4bb91436821838345470 100755 (executable)
--- a/configure
+++ b/configure
@@ -2319,7 +2319,7 @@ ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $
 ac_compiler_gnu=$ac_cv_c_compiler_gnu
 
 
-VCS_REVISION=188
+VCS_REVISION=189
 
 
 cat >>confdefs.h <<_ACEOF
index b8486ef6d2db48146812cab2f35e329dceea558b..8ced8d9d871e71121c1cf42e605c72e3605d7619 100644 (file)
@@ -2,7 +2,7 @@ AC_PREREQ(2.57)
 
 dnl This is the one location where the authoritative version number is stored
 AC_INIT(shellinabox, 2.10, markus@shellinabox.com)
-VCS_REVISION=188
+VCS_REVISION=189
 AC_SUBST(VCS_REVISION)
 AC_DEFINE_UNQUOTED(VCS_REVISION, "${VCS_REVISION}",
                    [Most recent revision number in the version control system])
index 63797a28607751752fc807358f651f475a54b360..b6275309bd29268727f0faea8f0beb4466365e5d 100644 (file)
@@ -1901,7 +1901,7 @@ VT100.prototype.toggleBell = function() {
 };
 
 VT100.prototype.about = function() {
-  alert("VT100 Terminal Emulator " + "2.10 (revision 188)" +
+  alert("VT100 Terminal Emulator " + "2.10 (revision 189)" +
         "\nCopyright 2008-2009 by Markus Gutschke\n" +
         "For more information check http://shellinabox.com");
 };
index 3310af440de40d8029e6d1ad078f7f940d6b3157..48ff6bd5e78c05b88c7e249610e1ce7bbdcf9b62 100644 (file)
@@ -358,7 +358,7 @@ ShellInABox.prototype.extendContextMenu = function(entries, actions) {
 };
 
 ShellInABox.prototype.about = function() {
-  alert("Shell In A Box version " + "2.10 (revision 188)" +
+  alert("Shell In A Box version " + "2.10 (revision 189)" +
         "\nCopyright 2008-2009 by Markus Gutschke\n" +
         "For more information check http://shellinabox.com" +
         (typeof serverSupportsSSL != 'undefined' && serverSupportsSSL ?
index 63797a28607751752fc807358f651f475a54b360..b6275309bd29268727f0faea8f0beb4466365e5d 100644 (file)
@@ -1901,7 +1901,7 @@ VT100.prototype.toggleBell = function() {
 };
 
 VT100.prototype.about = function() {
-  alert("VT100 Terminal Emulator " + "2.10 (revision 188)" +
+  alert("VT100 Terminal Emulator " + "2.10 (revision 189)" +
         "\nCopyright 2008-2009 by Markus Gutschke\n" +
         "For more information check http://shellinabox.com");
 };
This page took 0.055667 seconds and 5 git commands to generate.