From 6f7d0c74db5c6ada77b846592d89758e0e29898d Mon Sep 17 00:00:00 2001 From: Markus Gutschke Date: Mon, 23 Nov 2009 04:57:27 +0000 Subject: [PATCH] Thanks to Rudolf Spring's help, added support for building on PowerPC architectures. --- Makefile.am | 1 + Makefile.in | 1 + config.h | 2 +- configure | 2 +- configure.ac | 2 +- demo/vt100.js | 2 +- shellinabox/shell_in_a_box.js | 2 +- shellinabox/vt100.js | 2 +- 8 files changed, 8 insertions(+), 6 deletions(-) diff --git a/Makefile.am b/Makefile.am index 290575b..6e07553 100644 --- a/Makefile.am +++ b/Makefile.am @@ -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 = \ diff --git a/Makefile.in b/Makefile.in index f33706a..d345066 100644 --- a/Makefile.in +++ b/Makefile.in @@ -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 = \ diff --git a/config.h b/config.h index a7284bd..1b752d9 100644 --- a/config.h +++ b/config.h @@ -138,7 +138,7 @@ #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" diff --git a/configure b/configure index 0bd626e..eb3bbbe 100755 --- 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 diff --git a/configure.ac b/configure.ac index b8486ef..8ced8d9 100644 --- a/configure.ac +++ b/configure.ac @@ -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]) diff --git a/demo/vt100.js b/demo/vt100.js index 63797a2..b627530 100644 --- a/demo/vt100.js +++ b/demo/vt100.js @@ -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"); }; diff --git a/shellinabox/shell_in_a_box.js b/shellinabox/shell_in_a_box.js index 3310af4..48ff6bd 100644 --- a/shellinabox/shell_in_a_box.js +++ b/shellinabox/shell_in_a_box.js @@ -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 ? diff --git a/shellinabox/vt100.js b/shellinabox/vt100.js index 63797a2..b627530 100644 --- a/shellinabox/vt100.js +++ b/shellinabox/vt100.js @@ -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"); }; -- 2.45.1