# HG changeset patch # User Michiel Broek # Date 1556311935 -7200 # Node ID e25bbf19619d5eca740f60cd64fb2a6e79454079 # Parent 82184e3be6d93904950bb1d3af2933699ed193c0 First pass to add icons to the menus. diff -r 82184e3be6d9 -r e25bbf19619d config.status --- a/config.status Fri Apr 26 17:08:51 2019 +0200 +++ b/config.status Fri Apr 26 22:52:15 2019 +0200 @@ -1,4 +1,4 @@ -#! /bin/sh +#! /bin/bash # Generated by configure. # Run this file to recreate the current configuration. # Compiler output produced by configure, useful for debugging @@ -8,7 +8,7 @@ ac_cs_recheck=false ac_cs_silent=false -SHELL=${CONFIG_SHELL-/bin/sh} +SHELL=${CONFIG_SHELL-/bin/bash} export SHELL ## -------------------- ## ## M4sh Initialization. ## @@ -512,10 +512,10 @@ fi if $ac_cs_recheck; then - set X /bin/sh './configure' $ac_configure_extra_args --no-create --no-recursion + set X /bin/bash './configure' $ac_configure_extra_args --no-create --no-recursion shift - $as_echo "running CONFIG_SHELL=/bin/sh $*" >&6 - CONFIG_SHELL='/bin/sh' + $as_echo "running CONFIG_SHELL=/bin/bash $*" >&6 + CONFIG_SHELL='/bin/bash' export CONFIG_SHELL exec "$@" fi @@ -605,11 +605,11 @@ S["LIBOBJS"]="" S["SDL_LIBS"]="" S["SDL_CFLAGS"]="" -S["EGREP"]="/usr/bin/grep -E" -S["GREP"]="/usr/bin/grep" +S["EGREP"]="/bin/grep -E" +S["GREP"]="/bin/grep" S["CPP"]="gcc -E" S["TAR"]="tar" -S["INSTALL"]="ginstall" +S["INSTALL"]="install" S["RANLIB"]="ranlib" S["OBJEXT"]="o" S["EXEEXT"]="" @@ -643,6 +643,7 @@ S["docdir"]="${datarootdir}/doc/${PACKAGE}" S["oldincludedir"]="/usr/include" S["includedir"]="${prefix}/include" +S["runstatedir"]="${localstatedir}/run" S["localstatedir"]="${prefix}/var" S["sharedstatedir"]="${prefix}/com" S["sysconfdir"]="${prefix}/etc" @@ -661,7 +662,7 @@ S["PACKAGE_TARNAME"]="" S["PACKAGE_NAME"]="" S["PATH_SEPARATOR"]=":" -S["SHELL"]="/bin/sh" +S["SHELL"]="/bin/bash" _ACAWK cat >>"$ac_tmp/subs1.awk" <<_ACAWK && for (key in S) S_is_set[key] = 1 diff -r 82184e3be6d9 -r e25bbf19619d configure --- a/configure Fri Apr 26 17:08:51 2019 +0200 +++ b/configure Fri Apr 26 22:52:15 2019 +0200 @@ -661,6 +661,7 @@ docdir oldincludedir includedir +runstatedir localstatedir sharedstatedir sysconfdir @@ -732,6 +733,7 @@ sysconfdir='${prefix}/etc' sharedstatedir='${prefix}/com' localstatedir='${prefix}/var' +runstatedir='${localstatedir}/run' includedir='${prefix}/include' oldincludedir='/usr/include' docdir='${datarootdir}/doc/${PACKAGE}' @@ -984,6 +986,15 @@ | -silent | --silent | --silen | --sile | --sil) silent=yes ;; + -runstatedir | --runstatedir | --runstatedi | --runstated \ + | --runstate | --runstat | --runsta | --runst | --runs \ + | --run | --ru | --r) + ac_prev=runstatedir ;; + -runstatedir=* | --runstatedir=* | --runstatedi=* | --runstated=* \ + | --runstate=* | --runstat=* | --runsta=* | --runst=* | --runs=* \ + | --run=* | --ru=* | --r=*) + runstatedir=$ac_optarg ;; + -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) ac_prev=sbindir ;; -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ @@ -1121,7 +1132,7 @@ for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ datadir sysconfdir sharedstatedir localstatedir includedir \ oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ - libdir localedir mandir + libdir localedir mandir runstatedir do eval ac_val=\$$ac_var # Remove trailing slashes. @@ -1274,6 +1285,7 @@ --sysconfdir=DIR read-only single-machine data [PREFIX/etc] --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] --localstatedir=DIR modifiable single-machine data [PREFIX/var] + --runstatedir=DIR modifiable per-process data [LOCALSTATEDIR/run] --libdir=DIR object code libraries [EPREFIX/lib] --includedir=DIR C header files [PREFIX/include] --oldincludedir=DIR C header files for non-gcc [/usr/include] diff -r 82184e3be6d9 -r e25bbf19619d www/images/address-book.png Binary file www/images/address-book.png has changed diff -r 82184e3be6d9 -r e25bbf19619d www/images/beerstyles.png Binary file www/images/beerstyles.png has changed diff -r 82184e3be6d9 -r e25bbf19619d www/images/calendar.png Binary file www/images/calendar.png has changed diff -r 82184e3be6d9 -r e25bbf19619d www/images/database.png Binary file www/images/database.png has changed diff -r 82184e3be6d9 -r e25bbf19619d www/images/erlenmeyer.png Binary file www/images/erlenmeyer.png has changed diff -r 82184e3be6d9 -r e25bbf19619d www/images/fermenter.png Binary file www/images/fermenter.png has changed diff -r 82184e3be6d9 -r e25bbf19619d www/images/graan.png Binary file www/images/graan.png has changed diff -r 82184e3be6d9 -r e25bbf19619d www/images/help-about.png Binary file www/images/help-about.png has changed diff -r 82184e3be6d9 -r e25bbf19619d www/images/hop.png Binary file www/images/hop.png has changed diff -r 82184e3be6d9 -r e25bbf19619d www/images/insert-image.png Binary file www/images/insert-image.png has changed diff -r 82184e3be6d9 -r e25bbf19619d www/images/insert-object.png Binary file www/images/insert-object.png has changed diff -r 82184e3be6d9 -r e25bbf19619d www/images/list-add.png Binary file www/images/list-add.png has changed diff -r 82184e3be6d9 -r e25bbf19619d www/images/mash.png Binary file www/images/mash.png has changed diff -r 82184e3be6d9 -r e25bbf19619d www/images/peper.png Binary file www/images/peper.png has changed diff -r 82184e3be6d9 -r e25bbf19619d www/images/preferences.png Binary file www/images/preferences.png has changed diff -r 82184e3be6d9 -r e25bbf19619d www/images/water.png Binary file www/images/water.png has changed diff -r 82184e3be6d9 -r e25bbf19619d www/includes/global.inc.php --- a/www/includes/global.inc.php Fri Apr 26 17:08:51 2019 +0200 +++ b/www/includes/global.inc.php Fri Apr 26 22:52:15 2019 +0200 @@ -191,8 +191,10 @@