Skip to content
Snippets Groups Projects
  1. Sep 04, 2018
  2. Aug 15, 2018
  3. Aug 14, 2018
  4. Aug 12, 2018
  5. Aug 11, 2018
  6. Aug 05, 2018
  7. Aug 03, 2018
  8. Aug 02, 2018
  9. Aug 01, 2018
  10. Jul 31, 2018
    • Eneas U de Queiroz's avatar
      usbip: adapt package to new kernel/libudev · 327a03e8
      Eneas U de Queiroz authored
      
      The sources for usbip are within the kernel.  A patch that was included
      with the package, which changed the old signal name SIGCLD to the new
      one, SIGCHLD, was merged upstream.  However, different targets use
      different kernel versions.  Current version 4.14 and 4.9 are fine, but
      older versions do not have the patch applied.  So, I used
      -DSIGCLD=SIGCHLD to please both worlds.
      
      libudev-fbsd currently used by openwrt does not implement the
      udev_device_get_devpath function.  eudev's implementation of libudev
      sets it as (src/libudev/libudev-device.c):
      udev_device->devpath = udev_device->syspath + strlen("/sys");
      I used a command-line define to use the same logic, as it works with
      new and old versions of the kernel--the use of ..devpath is quite
      recent.
      
      I also linked with libbsd, when using glibc.
      
      Signed-off-by: default avatarEneas U de Queiroz <cote2004-github@yahoo.com>
      (cherry picked from commit 633fe0db)
      327a03e8
    • Eneas U de Queiroz's avatar
      usbip: Remove obsolete patches · 8f615704
      Eneas U de Queiroz authored
      
      These patches are obsolete and are never applied.
      
      Signed-off-by: default avatarEneas U de Queiroz <cote2004-github@yahoo.com>
      (cherry picked from commit 0baaabb6)
      8f615704
  11. Jul 30, 2018
  12. Jul 29, 2018
  13. Jul 25, 2018
  14. Jul 21, 2018
    • Michael Heimpold's avatar
      Merge pull request #6537 from mhei/openwrt-18.06-php7 · c7bad61e
      Michael Heimpold authored
      [openwrt-18.06] php7: update to latest version and include bugfixes
      c7bad61e
    • Michael Heimpold's avatar
      php7: update to 7.2.8 · 52280069
      Michael Heimpold authored
      
      Signed-off-by: default avatarMichael Heimpold <mhei@heimpold.de>
      52280069
    • Michael Heimpold's avatar
      php7: fix load order of mysqli extension · 98edb6e2
      Michael Heimpold authored
      
      This problem was reported by Teun Lubberhuizen, thanks!
      
      Signed-off-by: default avatarMichael Heimpold <mhei@heimpold.de>
      98edb6e2
    • Michael Heimpold's avatar
      php7: update to 7.2.7 · cdf150d0
      Michael Heimpold authored
      
      Signed-off-by: default avatarMichael Heimpold <mhei@heimpold.de>
      cdf150d0
    • Rafał Miłecki's avatar
      php7: add package dependency on zoneinfo-core · 81332c47
      Rafał Miłecki authored
      
      Having "select PACKAGE_zoneinfo-core" wasn't enough for builds without
      php7-cli=y or php7-cgi=y. It didn't result in installing zoneinfo-core
      when using "opkg install" (during runtime or when building images with
      CONFIG_TARGET_PER_DEVICE_ROOTFS).
      
      Missing zoneinfo results in PHP fatal errors, e.g.:
      Fatal error: DateTime::createFromFormat(): Timezone database is corrupt - this should *never* happen!
      
      For years users were told to manually install zoneinfo-core package.
      This problem was hidden for some time (including 17.01 release) due to
      disabled support for CONFIG_PHP7_SYSTEMTZDATA. It's now back as support
      for --with-system-tzdata was enabled again.
      
      The proper solution is to simply make php7 package depend on
      zoneinfo-core when PHP7_SYSTEMTZDATA is used.
      
      Fixes: 84e5012e ("php7: re-enable system timezone data usage")
      Signed-off-by: default avatarRafał Miłecki <rafal@milecki.pl>
      81332c47
    • Sebastian Kemper's avatar
      php7: use mysqlnd · b65a759e
      Sebastian Kemper authored
      This is in anticipation of the MariaDB upgrade from mariadb 10.1.x to
      10.2.x. With the latter the PHP MySQL plugins fail to compile, e.g.:
      
      In file included from /home/equeiroz/src/openwrt-asus/build_dir/target-mipsel_74kc_musl/php-7.2.6/ext/mysqli/php_mysqli_structs.h:63:0,
                       from /home/equeiroz/src/openwrt-asus/build_dir/target-mipsel_74kc_musl/php-7.2.6/ext/mysqli/mysqli.c:34:
      /home/equeiroz/src/openwrt-asus/staging_dir/target-mipsel_74kc_musl/usr/include/mysql/my_global.h:3:2: warning: #warning This file should not be included by clients, include only <mysql.h> [-Wcpp]
       #warning This file should not be included by clients, include only <mysql.h>
        ^~~~~~~
      In file included from /home/equeiroz/src/openwrt-asus/build_dir/target-mipsel_74kc_musl/php-7.2.6/ext/mysqli/php_mysqli_structs.h:79:0,
                       from /home/equeiroz/src/openwrt-asus/build_dir/target-mipsel_74kc_musl/php-7.2.6/ext/mysqli/mysqli.c:34:
      /home/equeiroz/src/openwrt-asus/staging_dir/target-mipsel_74kc_musl/usr/include/mysql/my_sys.h:3:2: warning: #warning This file should not be included by clients, include only <mysql.h> [-Wcpp]
       #warning This file should not be included by clients, include only <mysql.h>
        ^~~~~~~
      In file included from /home/equeiroz/src/openwrt-asus/build_dir/target-mipsel_74kc_musl/php-7.2.6/ext/mysqli/mysqli.c:34:0:
      /home/equeiroz/src/openwrt-asus/build_dir/target-mipsel_74kc_musl/php-7.2.6/ext/mysqli/php_mysqli_structs.h:82:10: fatal error: my_list.h: No such file or directory
       #include <my_list.h>
      
      Upstream seems unlikely to fix this, see
      https://bugs.php.net/bug.php?id=75612
      
      . In the bug report it is suggested
      to not use libmysqlclient/libmariadbclient and instead utilize mysqlnd
      (MySQL Native Driver) provided by PHP. This is the default anyway.
      
      So add the mysqlnd module and remove the libmariadbclient depends.
      
      Signed-off-by: default avatarSebastian Kemper <sebastian_ml@gmx.net>
      b65a759e
    • Michael Heimpold's avatar
      php7: update to 7.2.6 · 7e33126d
      Michael Heimpold authored
      
      Signed-off-by: default avatarMichael Heimpold <mhei@heimpold.de>
      7e33126d
Loading