mirror of
https://github.com/php/php-src.git
synced 2025-08-21 01:45:16 +02:00
28 lines
No EOL
355 B
PHP
28 lines
No EOL
355 B
PHP
<?php
|
|
|
|
class config_m4 {
|
|
# name, with[], libs[], language, files[]
|
|
var $name;
|
|
var $language = "c";
|
|
var $with = false;
|
|
var $libs = array();
|
|
var $files = array();
|
|
|
|
function __construct($name) {
|
|
$this->name = $name;
|
|
}
|
|
|
|
function write_file() {
|
|
$upname = strtoupper($this->name);
|
|
|
|
// CVS ID header
|
|
echo
|
|
'dnl
|
|
dnl $ Id: $
|
|
dnl
|
|
';
|
|
|
|
}
|
|
}
|
|
|
|
?>
|