The full changelog is available at: <https://github.com/glpi-project/glpi/milestone/30?closed=1> <https://github.com/glpi-project/glpi/milestone/33?closed=1> De-support apache 2.2 config in httpd-glpi.conf sample Re-work the way we hook in pkgsrc specific etc and var paths
13 lines
373 B
PHP
13 lines
373 B
PHP
<?php
|
|
|
|
// $NetBSD: downstream.php,v 1.1 2019/03/15 16:32:13 hauke Exp $
|
|
//
|
|
// pkgsrc GLPI path setup file, see
|
|
// <http://glpi-developer-documentation.readthedocs.io/en/master/packaging.html>
|
|
|
|
// Configuration
|
|
define('GLPI_CONFIG_DIR', '@PKG_SYSCONFDIR@');
|
|
|
|
if (file_exists(GLPI_CONFIG_DIR . '/local_define.php')) {
|
|
require_once GLPI_CONFIG_DIR . '/local_define.php';
|
|
}
|