diff --git a/.zfproject.xml b/.zfproject.xml
index 08da65b1e..cb27bbd9d 100644
--- a/.zfproject.xml
+++ b/.zfproject.xml
@@ -71,6 +71,7 @@
+
@@ -338,6 +339,9 @@
+
+
+
diff --git a/application/Bootstrap.php b/application/Bootstrap.php
index ce6c1127c..9911b8931 100644
--- a/application/Bootstrap.php
+++ b/application/Bootstrap.php
@@ -23,7 +23,7 @@ require_once 'Users.php';
global $CC_CONFIG, $CC_DBC;
$dsn = $CC_CONFIG['dsn'];
-$CC_DBC = DB::connect($dsn, TRUE);
+$CC_DBC = DB::connect($dsn, FALSE);
if (PEAR::isError($CC_DBC)) {
echo "ERROR: ".$CC_DBC->getMessage()." ".$CC_DBC->getUserInfo()."\n";
exit(1);
diff --git a/application/controllers/ApiController.php b/application/controllers/ApiController.php
index 2a3fe6117..aa4696f89 100644
--- a/application/controllers/ApiController.php
+++ b/application/controllers/ApiController.php
@@ -16,6 +16,16 @@ class ApiController extends Zend_Controller_Action
// action body
}
+ /**
+ * Returns Airtime version. i.e "1.7.0 alpha"
+ *
+ * First checks to ensure the correct API key was
+ * supplied, then returns AIRTIME_VERSION as defined
+ * in application/conf.php
+ *
+ * @return void
+ *
+ */
public function versionAction()
{
global $CC_CONFIG;
@@ -35,7 +45,12 @@ class ApiController extends Zend_Controller_Action
echo $jsonStr;
}
-
+ /**
+ * Allows remote client to download requested media file.
+ *
+ * @return void
+ * The given value increased by the increment amount.
+ */
public function getMediaAction()
{
global $CC_CONFIG;
@@ -67,23 +82,9 @@ class ApiController extends Zend_Controller_Action
// !! binary mode !!
$fp = fopen($filepath, 'rb');
- $mtype = '';
-
- /*
- // magic_mime module installed?
- if (function_exists('mime_content_type')) {
- $mtype = mime_content_type($file_path);
- }
- // fileinfo module installed?
- else if (function_exists('finfo_file')) {
- $finfo = finfo_open(FILEINFO_MIME); // return mime type
- $mtype = finfo_file($finfo, $file_path);
- finfo_close($finfo);
- }
-
- //header("Content-Type: $mtype");
- */
+ // possibly use fileinfo module here in the future.
+ // http://www.php.net/manual/en/book.fileinfo.php
$ext = pathinfo($filename, PATHINFO_EXTENSION);
if ($ext == "ogg")
header("Content-Type: audio/ogg");
@@ -92,17 +93,12 @@ class ApiController extends Zend_Controller_Action
header("Content-Length: " . filesize($filepath));
- //header('Content-Disposition: attachment; filename="'.$media->getRealMetadataFileName().'"');
fpassthru($fp);
+ return;
}
- else {
- header($_SERVER["SERVER_PROTOCOL"]." 404 Not Found");
- exit;
- }
- } else {
- header($_SERVER["SERVER_PROTOCOL"]." 404 Not Found");
- exit;
- }
+ }
+ header($_SERVER["SERVER_PROTOCOL"]." 404 Not Found");
+ exit;
}
public function scheduleAction()
diff --git a/application/controllers/ScheduleController.php b/application/controllers/ScheduleController.php
index b2d849e1c..0678fa2e7 100644
--- a/application/controllers/ScheduleController.php
+++ b/application/controllers/ScheduleController.php
@@ -162,12 +162,25 @@ class ScheduleController extends Zend_Controller_Action
$menu[] = array('action' => array('type' => 'ajax', 'url' => '/Schedule/schedule-show-dialog'.$params,
'callback' => 'window["buildScheduleDialog"]'), 'title' => 'Add Content');
+
+ $menu[] = array('action' => array('type' => 'ajax', 'url' => '/Schedule/clear-show'.$params,
+ 'callback' => 'window["scheduleRefetchEvents"]'), 'title' => 'Remove All Content');
}
+
}
$menu[] = array('action' => array('type' => 'ajax', 'url' => '/Schedule/show-content-dialog'.$params,
'callback' => 'window["buildContentDialog"]'), 'title' => 'Show Content');
+
+ if (strtotime($show->getShowStart()) <= strtotime($today_timestamp) &&
+ strtotime($today_timestamp) < strtotime($show->getShowEnd())) {
+ $menu[] = array('action' => array('type' => 'fn',
+ //'url' => '/Schedule/cancel-current-show'.$params,
+ 'callback' => "window['confirmCancelShow']($id)"),
+ 'title' => 'Cancel Current Show');
+ }
+
if (strtotime($today_timestamp) < strtotime($show->getShowStart())) {
if ($user->isAdmin()) {
@@ -177,12 +190,6 @@ class ScheduleController extends Zend_Controller_Action
$menu[] = array('action' => array('type' => 'ajax', 'url' => '/Schedule/cancel-show'.$params,
'callback' => 'window["scheduleRefetchEvents"]'), 'title' => 'Delete This Instance and All Following');
}
-
- if ($user->isHost($show->getShowId()) || $user->isAdmin()) {
-
- $menu[] = array('action' => array('type' => 'ajax', 'url' => '/Schedule/clear-show'.$params,
- 'callback' => 'window["scheduleRefetchEvents"]'), 'title' => 'Remove All Content');
- }
}
//returns format jjmenu is looking for.
@@ -421,6 +428,19 @@ class ScheduleController extends Zend_Controller_Action
$show->cancelShow($showInstance->getShowStart());
}
}
+
+ public function cancelCurrentShowAction()
+ {
+ $userInfo = Zend_Auth::getInstance()->getStorage()->read();
+ $user = new User($userInfo->id);
+
+ if($user->isAdmin()) {
+ $showInstanceId = $this->_getParam('id');
+ $show = new ShowInstance($showInstanceId);
+ $show->clearShow();
+ $show->deleteShow();
+ }
+ }
}
diff --git a/application/forms/AddUser.php b/application/forms/AddUser.php
index 12a22b952..e1f0453a7 100644
--- a/application/forms/AddUser.php
+++ b/application/forms/AddUser.php
@@ -81,7 +81,7 @@ class Application_Form_AddUser extends Zend_Form
$submit = new Zend_Form_Element_Submit('submit');
$submit->setAttrib('class', 'ui-button ui-state-default right-floated');
$submit->setIgnore(true);
- $submit->setLabel('submit');
+ $submit->setLabel('Submit');
$this->addElement($submit);
}
diff --git a/application/forms/Preferences.php b/application/forms/Preferences.php
index b776b8096..6b6903936 100644
--- a/application/forms/Preferences.php
+++ b/application/forms/Preferences.php
@@ -38,7 +38,6 @@ class Application_Form_Preferences extends Zend_Form
$stream_format->setLabel('Stream Label:');
$stream_format->setMultiOptions(array("Artist - Title",
"Show - Artist - Title",
- "Show",
"Station name - Show name"));
$stream_format->setValue(Application_Model_Preference::GetStreamLabelFormat());
$this->addElement($stream_format);
diff --git a/application/models/Nowplaying.php b/application/models/Nowplaying.php
index 5602945f6..884b5cd05 100644
--- a/application/models/Nowplaying.php
+++ b/application/models/Nowplaying.php
@@ -82,7 +82,11 @@ class Application_Model_Nowplaying
$type = "n";
}
- array_push($data, array($type, $item["item_starts"], $item["item_starts"], $item["item_ends"], $item["clip_length"], $item["track_title"], $item["artist_name"], $item["album_title"], $item["playlist_name"], $item["show_name"], $item["instance_id"]));
+ $over = "";
+ if (strtotime($item['item_ends']) > strtotime($item['show_ends']))
+ $over = "x";
+
+ array_push($data, array($type, $item["item_starts"], $item["item_starts"], $item["item_ends"], $item["clip_length"], $item["track_title"], $item["artist_name"], $item["album_title"], $item["playlist_name"], $item["show_name"], $over, $item["instance_id"]));
}
}
diff --git a/application/models/Schedule.php b/application/models/Schedule.php
index 1bff6cf76..5fe66f2ca 100644
--- a/application/models/Schedule.php
+++ b/application/models/Schedule.php
@@ -733,7 +733,8 @@ class Schedule {
}
$result = array();
- $result['status'] = array('range' => array('start' => $range_start, 'end' => $range_end), 'version' => "1.1");
+ $result['status'] = array('range' => array('start' => $range_start, 'end' => $range_end),
+ 'version' => "1.1");
$result['playlists'] = $playlists;
$result['check'] = 1;
diff --git a/application/models/Shows.php b/application/models/Shows.php
index 159329a47..154707745 100644
--- a/application/models/Shows.php
+++ b/application/models/Shows.php
@@ -795,7 +795,7 @@ class Show_DAL{
$date = $timestamp[0];
$time = $timestamp[1];
- $sql = "SELECT si.starts as start_timestamp, si.ends as end_timestamp, s.name, s.id, si.id as instance_id"
+ $sql = "SELECT si.starts as start_timestamp, si.ends as end_timestamp, s.name, s.id, si.id as instance_id, si.record"
." FROM $CC_CONFIG[showInstances] si, $CC_CONFIG[showTable] s"
." WHERE si.show_id = s.id"
." AND si.starts <= TIMESTAMP '$timeNow'"
@@ -846,6 +846,7 @@ class Show_DAL{
." WHERE ((si.starts < TIMESTAMP '$timeNow' - INTERVAL '$start seconds' AND si.ends > TIMESTAMP '$timeNow' - INTERVAL '$start seconds')"
." OR (si.starts > TIMESTAMP '$timeNow' - INTERVAL '$start seconds' AND si.ends < TIMESTAMP '$timeNow' + INTERVAL '$end seconds')"
." OR (si.starts < TIMESTAMP '$timeNow' + INTERVAL '$end seconds' AND si.ends > TIMESTAMP '$timeNow' + INTERVAL '$end seconds'))"
+ //checking for st.starts IS NULL so that the query also returns shows that do not have any items scheduled.
." AND (st.starts < si.ends OR st.starts IS NULL)"
." ORDER BY st.starts";
diff --git a/application/views/scripts/partialviews/header.phtml b/application/views/scripts/partialviews/header.phtml
index 2eea3063c..4905d0d10 100644
--- a/application/views/scripts/partialviews/header.phtml
+++ b/application/views/scripts/partialviews/header.phtml
@@ -9,13 +9,17 @@
Next:
-
-
-
-
-
+
+
+
+
+
+ 00:00
+
+
+
+
-
ON AIR
diff --git a/application/views/scripts/schedule/cancel-current-show.phtml b/application/views/scripts/schedule/cancel-current-show.phtml
new file mode 100644
index 000000000..837c66731
--- /dev/null
+++ b/application/views/scripts/schedule/cancel-current-show.phtml
@@ -0,0 +1 @@
+
View script for controller Schedule and script/action name cancelCurrentShow
\ No newline at end of file
diff --git a/application/views/scripts/user/add-user.phtml b/application/views/scripts/user/add-user.phtml
index 308c21e36..b37c032bc 100644
--- a/application/views/scripts/user/add-user.phtml
+++ b/application/views/scripts/user/add-user.phtml
@@ -1,13 +1,13 @@
- Manage users
+ Manage Users
-
+
@@ -15,8 +15,8 @@
id
Username
-
Firstname
-
Lastname
+
First Name
+
Last Name
Role
diff --git a/debian/campcaster-data.lintian-overrides b/debian/campcaster-data.lintian-overrides
deleted file mode 100644
index a76a0389b..000000000
--- a/debian/campcaster-data.lintian-overrides
+++ /dev/null
@@ -1,10 +0,0 @@
-# Upstream uses realtive paths to data folders, so we use
-# syminks to /var/campcaster/.. where persistant data is stored
-campcaster-data: package-contains-empty-directory usr/share/campcaster/www/htmlUI/var/templates_c/
-campcaster-data: package-contains-empty-directory usr/share/campcaster/www/storageServer/var/access/
-campcaster-data: package-contains-empty-directory usr/share/campcaster/www/storageServer/var/stor/buffer/
-campcaster-data: package-contains-empty-directory usr/share/campcaster/www/storageServer/var/trans/
-# Upstream uses a patched/customized version of Smarty - but is
-# working on getting solving issue to move to a maintained one.
-campcaster-data: embedded-php-library usr/share/campcaster/www/htmlUI/var/Smarty/libs/Smarty_Compiler.class.php
-campcaster-data: embedded-php-library usr/share/campcaster/www/htmlUI/var/Smarty/libs/Smarty.class.php
diff --git a/debian/campcaster-data.prerm b/debian/campcaster-data.prerm
deleted file mode 100644
index c79c796c5..000000000
--- a/debian/campcaster-data.prerm
+++ /dev/null
@@ -1,52 +0,0 @@
-#!/bin/sh
-# prerm script for campcaster
-#
-# see: dh_installdeb(1)
-
-set -e
-
-# summary of how this script can be called:
-# * `remove'
-# * `upgrade'
-# * `failed-upgrade'
-# * `remove' `in-favour'
-# * `deconfigure' `in-favour'
-# `removing'
-#
-# for details, see http://www.debian.org/doc/debian-policy/ or
-# the debian-policy package
-
-
-installdir=/
-vardir=/var/lib/campcaster/
-ls_database=Campcaster
-
-case "$1" in
- remove|upgrade|deconfigure)
- mkdir -p $vardir
-
- # remove generated files
- rm -rf $vardir/htmlUI/var/html/img/*
- rm -rf $vardir/htmlUI/var/templates_c/*
- rm -rf $vardir/storageServer/var/access/*
- rm -rf $vardir/storageServer/var/trans/*
-
- ##rm -rf $installdir/etc/pear.conf
-
- ;;
-
- failed-upgrade)
- ;;
-
- *)
- echo "prerm called with unknown argument \`$1'" >&2
- exit 1
- ;;
-esac
-
-# dh_installdeb will replace this with shell code automatically
-# generated by other debhelper scripts.
-
-#DEBHELPER#
-
-exit 0
diff --git a/debian/campcaster-import.1 b/debian/campcaster-import.1
deleted file mode 100644
index 3405a3f1f..000000000
--- a/debian/campcaster-import.1
+++ /dev/null
@@ -1,68 +0,0 @@
-.\" Hey, EMACS: -*- nroff -*-
-.\" URL Macro
-.de URL
-\\$2 \(laURL: \\$1 \(ra\\$3
-..
-.if \n[.g] .mso www.tmac
-.\"
-.\" First parameter, NAME, should be all caps
-.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
-.\" other parameters are allowed: see man(7), man(1)
-.TH CAMPCASTER\-IMPORT 1 "October 5, 2010"
-.\" Please adjust this date whenever revising the manpage.
-.\"
-.\" Some roff macros, for reference:
-.\" .nh disable hyphenation
-.\" .hy enable hyphenation
-.\" .ad l left justify
-.\" .ad b justify to both left and right margins
-.\" .nf disable filling
-.\" .fi enable filling
-.\" .br insert line break
-.\" .sp insert n+1 empty lines
-.\" for manpage-specific macros, see man(7)
-.nh
-.SH NAME
-campcaster-import \- batch upload files to Campcaster storage
-.SH SYNOPSIS
-.B campcaster-import
-.RI "[-h] -l|-c" " FILES_OR_DIRS"
-.SH DESCRIPTION
-This tool enables users to batch upload audio files to the Campcaster storage server.
-There are two ways to import audio files into Campcaster: linking or copying.
-You need to specify how to import the files by using either
-.B \-l
-(link) or
-.B -c
-(copy) option.
-.B -h
-will print further help information.
-.PP
-Linking has the advantage that it will not duplicate any files,
-but you must take care not to move, rename, or delete any of the
-imported files from their current locations on disk.
-.PP
-Copying has the advantage that you can do whatever you like with
-the source files after you import them, but has the disadvantage
-that it requires double the disk space needed to store your files.
-.PP
-Campcaster is free and open radio management software, providing
-live studio broadcast capabilities as well as the remote automation in one
-integrated system. The scalability of Campcaster allows implementation in a
-number of use scenarios, ranging from an unmanned broadcast unit accessed
-via the Internet to a local network of Campcaster machines inside a
-radio station handling live broadcasts and delivering program automation by
-accessing a central audio storage system. Campcaster is capable of combining
-local audio files and remote web streams, supporting the widely used MP3 format
-and the open equivalent OGG Vorbis.
-.SH SEE ALSO
-.URL "http://en.flossmanuals.net/campcaster/" "Online manual" ,
-.br
-.BR campcaster-scheduler (1).
-.SH AUTHOR
-Campcaster was written by Sourcefabric with the support of the Media Develoment
-Loan Fund. For full credits see the
-.URL "http://campcaster.sourcefabric.org/" "Campcaster homepage" .
-.PP
-This manual page was written by Robin Gareus ,
-for the Debian project (and may be used by others).
diff --git a/debian/campcaster-libs.dirs b/debian/campcaster-libs.dirs
deleted file mode 100644
index 68457717b..000000000
--- a/debian/campcaster-libs.dirs
+++ /dev/null
@@ -1 +0,0 @@
-usr/lib
diff --git a/debian/campcaster-libs.lintian-overrides b/debian/campcaster-libs.lintian-overrides
deleted file mode 100644
index c3de6fecc..000000000
--- a/debian/campcaster-libs.lintian-overrides
+++ /dev/null
@@ -1,9 +0,0 @@
-# Campcaster has a job opening for someone to
-# refactor code to use standard PEAR classes.
-# see http://www.campware.org/en/camp/about_campware/696/ for details.
-#
-# Note that the embedded-pear-modules are unpatched upstream
-# versions - they're just included for version compatibiliy issues
-campcaster-libs: embedded-pear-module usr/lib/campcaster/pear/PEAR/Command/Auth.php
-campcaster-libs: embedded-pear-module usr/lib/campcaster/pear/PEAR/Command/Config.php
-campcaster-libs: embedded-pear-module usr/lib/campcaster/pear/PEAR/Config.php
diff --git a/debian/campcaster-scheduler.1 b/debian/campcaster-scheduler.1
deleted file mode 100644
index 9d37c75b5..000000000
--- a/debian/campcaster-scheduler.1
+++ /dev/null
@@ -1,58 +0,0 @@
-.\" Hey, EMACS: -*- nroff -*-
-.\" URL Macro
-.de URL
-\\$2 \(laURL: \\$1 \(ra\\$3
-..
-.if \n[.g] .mso www.tmac
-.\"
-.\" First parameter, NAME, should be all caps
-.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
-.\" other parameters are allowed: see man(7), man(1)
-.TH CAMPCASTER\-SCHEDULER 1 "October 5, 2010"
-.\" Please adjust this date whenever revising the manpage.
-.\"
-.\" Some roff macros, for reference:
-.\" .nh disable hyphenation
-.\" .hy enable hyphenation
-.\" .ad l left justify
-.\" .ad b justify to both left and right margins
-.\" .nf disable filling
-.\" .fi enable filling
-.\" .br insert line break
-.\" .sp insert n+1 empty lines
-.\" for manpage-specific macros, see man(7)
-.nh
-.SH NAME
-campcaster-scheduler \- Script controlling the Campcaster scheduling daemon
-.SH SYNOPSIS
-.B campcaster-scheduler
-.RI start|stop|restart|status|install|uninstall|kill
-.SH DESCRIPTION
-This script controls the Campcaster scheduler daemon, which is usually
-launched during boot with administrator privileges. However, this tool is also used to
-query the current status of the server or perform administrative tasks.
-.PP
-The scheduler daemon starts playlists at their designated time and provides an
-XML-RPC interface, which can be accessed via the Campcaster web interface or via the
-campcaster-studio GUI.
-.PP
-Campcaster is free and open radio management software, providing
-live studio broadcast capabilities as well as the remote automation in one
-integrated system. The scalability of Campcaster allows implementation in a
-number of use scenarios, ranging from an unmanned broadcast unit accessed via
-the Internet to a local network of Campcaster machines inside a
-radio station handling live broadcasts and delivering program automation by
-accessing a central audio storage system. Campcaster is capable of combining
-local audio files and remote web streams, supporting the widely used MP3 format
-and the open equivalent OGG Vorbis.
-.SH SEE ALSO
-.URL "http://en.flossmanuals.net/campcaster/" "Online manual",
-.br
-.BR campcaster-import (1).
-.SH AUTHOR
-Campcaster was written by Sourcefabric, with the support of the Media Develoment
-Loan Fund. For full credits see the
-.URL "http://campcaster.sourcefabric.org/" "Campcaster homepage".
-.PP
-This manual page was written by Robin Gareus ,
-for the Debian project (and may be used by others).
diff --git a/debian/campcaster-station.default b/debian/campcaster-station.default
deleted file mode 100644
index c32f16597..000000000
--- a/debian/campcaster-station.default
+++ /dev/null
@@ -1,10 +0,0 @@
-# Defaults for campcaster initscript
-# sourced by /etc/init.d/campcaster-station
-# installed at /etc/default/campcaster by the maintainer scripts
-
-#
-# This is a POSIX shell fragment
-#
-
-# Additional options that are passed to the Daemon.
-DAEMON_OPTS=""
diff --git a/debian/campcaster-station.dirs b/debian/campcaster-station.dirs
deleted file mode 100644
index 21736c82c..000000000
--- a/debian/campcaster-station.dirs
+++ /dev/null
@@ -1,3 +0,0 @@
-etc
-usr/bin
-usr/lib
diff --git a/debian/campcaster-station.init b/debian/campcaster-station.init
deleted file mode 100644
index 4b4643528..000000000
--- a/debian/campcaster-station.init
+++ /dev/null
@@ -1,163 +0,0 @@
-#! /bin/sh
-### BEGIN INIT INFO
-# Provides: campcaster-station
-# Required-Start: $remote_fs $network $local_fs apache postgres
-# Required-Stop: $remote_fs
-# Should-Start: $named
-# Should-Stop:
-# Default-Start: 2 3 4 5
-# Default-Stop: 0 1 6
-# Short-Description: campcaster-scheduler
-# Description: A radio program automation and support tool.
-### END INIT INFO
-
-
-CAMPCASTER_BIN=/usr/lib/campcaster/bin
-CAMPCASTER_LIB=/usr/lib/campcaster/
-CAMPCASTER_ETC=/etc
-
-PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:$CAMPCASTER_BIN
-LD_LIBRARY_PATH=$CAMPCASTER_LIB:$LD_LIBRARY_PATH
-DAEMON=$CAMPCASTER_BIN/campcaster-scheduler
-NAME=campcaster-station
-DESC="campcaster scheduler"
-
-test -x $DAEMON || exit 0
-
-export PATH
-export LD_LIBRARY_PATH
-
-LOGDIR=/var/log/campcaster
-PIDFILE=/var/run/$NAME.pid # defined in /etc/campcaster-scheduler.xml
-DODTIME=3 # Time to wait for the server to die, in seconds
- # If this value is set too low you might not
- # let some servers to die gracefully and
- # 'restart' will not work
-
-# Include campcaster defaults if available
-if [ -f /etc/default/campcaster ] ; then
- . /etc/default/campcaster
-fi
-
-test -z "$DAEMON_OPTS" && \
-DAEMON_OPTS="-c $CAMPCASTER_ETC/campcaster-scheduler.xml"
-
-set -e
-
-running_pid()
-{
- # Check if a given process pid's cmdline matches a given name
- pid=$1
- name=$2
- [ -z "$pid" ] && return 1
- [ ! -d /proc/$pid ] && return 1
- cmd=`cat /proc/$pid/cmdline | tr "\000" "\n"|head -n 1 |cut -d : -f 1`
- # Is this the expected child?
- [ "$cmd" != "$name" ] && return 1
- return 0
-}
-
-running()
-{
-# Check if the process is running looking at /proc
-# (works for all users)
-
- # No pidfile, probably no daemon present
- [ ! -f "$PIDFILE" ] && return 1
- # Obtain the pid and check it against the binary name
- pid=`cat $PIDFILE`
- running_pid $pid $DAEMON || return 1
- return 0
-}
-
-force_stop() {
-# Forcefully kill the process
- [ ! -f "$PIDFILE" ] && return
- if running ; then
- kill -15 $pid
- # Is it really dead?
- [ -n "$DODTIME" ] && sleep "$DODTIME"s
- if running ; then
- kill -9 $pid
- [ -n "$DODTIME" ] && sleep "$DODTIME"s
- if running ; then
- echo "Cannot kill $NAME (pid=$pid)!"
- exit 1
- fi
- fi
- fi
- rm -f $PIDFILE
- return 0
-}
-
-case "$1" in
- start)
- echo -n "Starting $DESC: "
- $DAEMON $DAEMON_OPTS start 2>/dev/null
- if running ; then
- echo "$NAME."
- else
- echo " ERROR."
- fi
- ;;
- stop)
- echo -n "Stopping $DESC: "
- $DAEMON $DAEMON_OPTS stop 2>/dev/null
- echo "$NAME."
- ;;
- force-stop)
- echo -n "Forcefully stopping $DESC: "
- force_stop
- if ! running ; then
- echo "$NAME."
- else
- echo " ERROR."
- fi
- ;;
- #reload)
- #
- # If the daemon can reload its config files on the fly
- # for example by sending it SIGHUP, do it here.
- #
- # If the daemon responds to changes in its config file
- # directly anyway, make this a do-nothing entry.
- #
- # echo "Reloading $DESC configuration files."
- # start-stop-daemon --stop --signal 1 --quiet --pidfile \
- # /var/run/$NAME.pid --exec $DAEMON
- #;;
- force-reload)
- #
- # If the "reload" option is implemented, move the "force-reload"
- # option to the "reload" entry above. If not, "force-reload" is
- # just the same as "restart" except that it does nothing if the
- # daemon isn't already running.
- # check wether $DAEMON is running. If so, restart
- if running ; then
- $0 restart || exit 0
- fi
- ;;
- restart)
- echo -n "Restarting $DESC: "
- $DAEMON $DAEMON_OPTS stop 2>/dev/null
- [ -n "$DODTIME" ] && sleep $DODTIME
- $DAEMON $DAEMON_OPTS start 2>/dev/null
- echo "$NAME."
- ;;
- status)
- echo -n "$NAME is "
- if running ; then
- echo "running"
- else
- echo "not running."
- exit 1
- fi
- ;;
- *)
- N=/etc/init.d/$NAME
- echo "Usage: $N {start|stop|restart|force-reload|status|force-stop}" >&2
- exit 1
- ;;
-esac
-
-exit 0
diff --git a/debian/campcaster-station.manpages b/debian/campcaster-station.manpages
deleted file mode 100644
index 6365a0f30..000000000
--- a/debian/campcaster-station.manpages
+++ /dev/null
@@ -1,2 +0,0 @@
-debian/campcaster-scheduler.1
-debian/campcaster-import.1
diff --git a/debian/campcaster-station.postinst b/debian/campcaster-station.postinst
deleted file mode 100644
index 722851f0a..000000000
--- a/debian/campcaster-station.postinst
+++ /dev/null
@@ -1,72 +0,0 @@
-#!/bin/sh
-# postinst script for campcaster
-#
-# see: dh_installdeb(1)
-
-set -e
-
-# summary of how this script can be called:
-# * `configure'
-# * `abort-upgrade'
-# * `abort-remove' `in-favour'
-#
-# * `abort-remove'
-# * `abort-deconfigure' `in-favour'
-# `removing'
-#
-# for details, see http://www.debian.org/doc/debian-policy/ or
-# the debian-policy package
-
-installdir=/usr/lib/campcaster
-vardir=/var/lib/campcaster
-apache_group=www-data
-
-if [ -d /etc/postgresql/8.1 ]; then
- postgresql_dir=/etc/postgresql/8.1/main
- postgresql_init_script=/etc/init.d/postgresql-8.1
-elif [ -d /etc/postgresql/8.2 ]; then
- postgresql_dir=/etc/postgresql/8.2/main
- postgresql_init_script=/etc/init.d/postgresql-8.2
-elif [ -d /etc/postgresql/8.3 ]; then
- postgresql_dir=/etc/postgresql/8.3/main
- postgresql_init_script=/etc/init.d/postgresql-8.3
-elif [ -d /etc/postgresql/8.4 ]; then
- postgresql_dir=/etc/postgresql/8.4/main
- postgresql_init_script=/etc/init.d/postgresql-8.4
-else
- echo "no postgresql 8.1, 8.2, 8.3 or 8.4 found" >&2
- exit 1
-fi
-
-
-case "$1" in
- configure)
- # do post-installation configuration
- $installdir/bin/postInstallStation.sh --directory=$installdir \
- --apache-group=$apache_group \
- --postgresql-dir=$postgresql_dir \
- --postgresql-init-script=$postgresql_init_script
-
- # remount the NFS share if we have a 2-computer setup
- if [ -f $vardir/storageServer.wasMounted ]; then
- echo "Remounting the remote storage..."
- mount $vardir/storageServer
- rm $vardir/storageServer.wasMounted
- fi
- ;;
-
- abort-upgrade|abort-remove|abort-deconfigure)
- ;;
-
- *)
- echo "postinst called with unknown argument \`$1'" >&2
- exit 1
- ;;
-esac
-
-# dh_installdeb will replace this with shell code automatically
-# generated by other debhelper scripts.
-
-#DEBHELPER#
-
-exit 0
diff --git a/debian/campcaster-station.postrm b/debian/campcaster-station.postrm
deleted file mode 100644
index 51e7170a3..000000000
--- a/debian/campcaster-station.postrm
+++ /dev/null
@@ -1,94 +0,0 @@
-#!/bin/sh
-# postrm script for campcaster
-#
-# see: dh_installdeb(1)
-
-set -e
-
-# summary of how this script can be called:
-# * `remove'
-# * `purge'
-# * `upgrade'
-# * `failed-upgrade'
-# * `abort-install'
-# * `abort-install'
-# * `abort-upgrade'
-# * `disappear'
-#
-# for details, see http://www.debian.org/doc/debian-policy/ or
-# the debian-policy package
-
-vardir=/var/lib/campcaster
-
-
-if [ -d /etc/postgresql/8.1 ]; then
- postgresql_init_script=/etc/init.d/postgresql-8.1
-elif [ -d /etc/postgresql/8.2 ]; then
- postgresql_init_script=/etc/init.d/postgresql-8.2
-elif [ -d /etc/postgresql/8.3 ]; then
- postgresql_init_script=/etc/init.d/postgresql-8.3
-elif [ -d /etc/postgresql/8.4 ]; then
- postgresql_init_script=/etc/init.d/postgresql-8.4
-else
- echo "no postgresql 8.1, 8.2, 8.3 or 8.4 found" >&2
- exit 1
-fi
-postgres_user=postgres
-
-ls_database=Campcaster
-ls_dbuser=campcaster
-
-
-#-------------------------------------------------------------------------------
-# Function to check for the existence of an executable on the PATH
-#
-# @param $1 the name of the exectuable
-# @return 0 if the executable exists on the PATH, non-0 otherwise
-#-------------------------------------------------------------------------------
-check_exe() {
- if [ -x "`which $1 2> /dev/null`" ]; then
- return 0;
- else
- return 1;
- fi
-}
-
-
-case "$1" in
- remove|upgrade|failed-upgrade|abort-install|abort-upgrade)
- ;;
-
- purge|disappear)
- # check for the required tools
- check_exe "psql" || psql_found=no
-
- if [ "x$psql_found" != "xno" ] ; then
- # kill open connections to the Campcaster database
- $postgresql_init_script stop
- $postgresql_init_script start
-
- # remove the PostgreSQL database and user
- su - $postgres_user -c \
- "echo \"DROP DATABASE \\\"$ls_database\\\" \" | psql template1" \
- || echo "Couldn't drop database $ls_database.";
- su - $postgres_user -c \
- "echo \"DROP USER $ls_dbuser \" | psql template1" \
- || echo "Couldn't drop database user $ls_dbuser.";
- fi
-
- # remove generated files
- rm -rf $vardir/
- ;;
-
- *)
- echo "postrm called with unknown argument \`$1'" >&2
- exit 1
- ;;
-esac
-
-# dh_installdeb will replace this with shell code automatically
-# generated by other debhelper scripts.
-
-#DEBHELPER#
-
-exit 0
diff --git a/debian/campcaster-station.prerm b/debian/campcaster-station.prerm
deleted file mode 100644
index 2c46e7e22..000000000
--- a/debian/campcaster-station.prerm
+++ /dev/null
@@ -1,109 +0,0 @@
-#!/bin/sh
-# prerm script for campcaster
-#
-# see: dh_installdeb(1)
-
-set -e
-
-# summary of how this script can be called:
-# * `remove'
-# * `upgrade'
-# * `failed-upgrade'
-# * `remove' `in-favour'
-# * `deconfigure' `in-favour'
-# `removing'
-#
-# for details, see http://www.debian.org/doc/debian-policy/ or
-# the debian-policy package
-
-
-installdir=/
-vardir=/var/lib/campcaster/
-ls_database=Campcaster
-
-#-------------------------------------------------------------------------------
-# Function to check for the existence of an executable on the PATH
-#
-# @param $1 the name of the exectuable
-# @return 0 if the executable exists on the PATH, non-0 otherwise
-#-------------------------------------------------------------------------------
-check_exe() {
- if [ -x "`which $1 2> /dev/null`" ]; then
- return 0;
- else
- return 1;
- fi
-}
-
-
-if [ -d /etc/postgresql/8.1 ]; then
- postgresql_dir=/etc/postgresql/8.1/main
- postgresql_init_script=/etc/init.d/postgresql-8.1
-elif [ -d /etc/postgresql/8.2 ]; then
- postgresql_dir=/etc/postgresql/8.2/main
- postgresql_init_script=/etc/init.d/postgresql-8.2
-elif [ -d /etc/postgresql/8.3 ]; then
- postgresql_dir=/etc/postgresql/8.3/main
- postgresql_init_script=/etc/init.d/postgresql-8.3
-elif [ -d /etc/postgresql/8.4 ]; then
- postgresql_dir=/etc/postgresql/8.4/main
- postgresql_init_script=/etc/init.d/postgresql-8.4
-else
- echo "no postgresql 8.1, 8.2, 8.3 or 8.4 found" >&2
- exit 1
-fi
-
-case "$1" in
- remove|deconfigure)
- cd /usr/share/campcaster/www/htmlUI/var/install/
- php -q uninstall.php
- cd /usr/share/campcaster/www/storageServer/var/install/
- php -q uninstall.php
- ;;
- *)
- ;;
-esac
-
-case "$1" in
- remove|upgrade|deconfigure)
- mkdir -p $vardir
- # unmount the NFS share, if we have a 2-computer setup
- storagedir=$vardir/storageServer
- if [ "`mount | grep -o \"on $storagedir \"`" = "on $storagedir " ]; then
- echo "Unmounting the remote storage..."
- umount $storagedir
- touch $vardir/storageServer.wasMounted
- fi
-
- ## remove the ODBC data source and driver
- check_exe "odbcinst" || odbcinst_found=no
-
- if [ "x$odbcinst_found" != "xno" ] ; then
- odbcinst -u -s -l -n $ls_database
- odbcinst -u -d -n PostgreSQL_Campcaster
- fi
-
- rm -f /etc/apache/conf.d/90_php_campcaster.conf
- rm -f /etc/apache2/conf.d/90_php_campcaster.conf
- rm -f /etc/apache2/conf/modules.d/90_php_campcaster.conf
- rm -f /etc/httpd/conf.d/90_php_campcaster.conf
-
- ##rm -rf $installdir/etc/pear.conf
-
- ;;
-
- failed-upgrade)
- ;;
-
- *)
- echo "prerm called with unknown argument \`$1'" >&2
- exit 1
- ;;
-esac
-
-# dh_installdeb will replace this with shell code automatically
-# generated by other debhelper scripts.
-
-#DEBHELPER#
-
-exit 0
diff --git a/debian/changelog b/debian/changelog
deleted file mode 100644
index 95457fb5c..000000000
--- a/debian/changelog
+++ /dev/null
@@ -1,11 +0,0 @@
-campcaster (1.4.0+r3436-0) 64studio; urgency=low
-
- * rebased to new upstream version
-
- -- Robin Gareus Fri, 16 Apr 2010 11:59:57 +0200
-
-campcaster (1.4.0+r3427) 64studio; urgency=low
-
- * Initial release (Closes: #568530) (LP: #250397)
-
- -- Robin Gareus Fri, 05 Feb 2010 16:35:44 +0100
diff --git a/debian/compat b/debian/compat
deleted file mode 100644
index 7f8f011eb..000000000
--- a/debian/compat
+++ /dev/null
@@ -1 +0,0 @@
-7
diff --git a/debian/control b/debian/control
deleted file mode 100644
index 0e20586b8..000000000
--- a/debian/control
+++ /dev/null
@@ -1,151 +0,0 @@
-Source: campcaster
-Section: sound
-Priority: extra
-Maintainer: Alessio Treglia
-XSBC-Original-Maintainer: Robin Gareus
-Build-Depends: debhelper (>= 7.0.50~),
- autotools-dev,
- libtool,
- pkg-config (>= 0.15),
- doxygen,
- automake,
- unzip, bzip2,
- curl,
- graphviz,
- xsltproc,
- libcppunit-dev,
- unixodbc-dev (>= 2.2),
- odbc-postgresql,
- fontconfig,
- libfontconfig1-dev,
- libpng12-dev,
- libjpeg62-dev | libjpeg8-dev,
- libssl-dev,
- libxml2-dev,
- libpopt-dev,
- libmad0-dev,
- libogg-dev,
- libvorbis-dev,
- libbz2-dev,
- libtar-dev (>= 1.2.11),
- libcurl3-dev (>= 7.12.3) | libcurl4-openssl-dev (>= 7.16.4),
- libboost-date-time-dev (>= 1.33.1),
- libgtk2.0-dev (>= 2.6.10),
- libgtkmm-2.4-dev (>= 1:2.6.5),
- libglademm-2.4-dev (>= 2.6.2),
- libxml++2.6-dev (>= 2.8.1),
- libicu34-dev | libicu36-dev | libicu-dev,
- apache2,
- php5-pgsql,
- libapache2-mod-php5,
- php5-gd,
- postgresql-8.1 | postgresql-8.2 | postgresql-8.3 | postgresql (>= 8.1),
- postgresql-client-8.1 | postgresql-client-8.2 | postgresql-client-8.3 | postgresql-client (>= 8.1),
- libgstreamer0.10-dev (>= 0.10.17),
- php-pear,
- php-db,
- libserial-dev (>= 0.5.2)
-Standards-Version: 3.8.4
-Homepage: http://campcaster.sourcefabric.org/
-
-
-Package: campcaster-libs
-Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}
-Description: A radio program automation and support tool
- Campcaster is the first free and open radio management software that
- provides live studio broadcast capabilities as well as remote automation
- in one integrated system.
- .
- Major features of Campcaster: live, in-studio playout; web-based remote
- station management; automation; playlists; centralized archives of station
- program material; solid, fast playback using the GStreamer multimedia
- framework; search-based backup; localization into several languages;
- innovative design by the Parsons School of Design; open, extensible
- architecture based on XML-RPC.
- .
- This package contains the libraries used by Campcaster.
-
-Package: campcaster-data
-Architecture: all
-Depends: ${shlibs:Depends}, ${misc:Depends},
- apache2,
- unzip, bzip2, gzip (>= 1.3.5),
- libapache2-mod-php5,
- postgresql-8.1 | postgresql-8.2 | postgresql-8.3 | postgresql (>= 8.1),
- postgresql-client-8.1 | postgresql-client-8.2 | postgresql-client-8.3 | postgresql-client (>= 8.1),
- unixodbc (>= 2.2),
- odbc-postgresql,
- xsltproc,
- php5-pgsql, php5-cli, php5-gd, php-db,
- gstreamer0.10-plugins-good,
- gstreamer0.10-plugins-ugly | gstreamer0.10-ffmpeg | gstreamer0.10-fluendo-mp3,
- gstreamer0.10-alsa,
- curl, pwgen, sed (>= 4.2.1)
-Description: A radio program automation and support tool - data files
- Campcaster is the first free and open radio management software that
- provides live studio broadcast capabilities as well as remote automation
- in one integrated system.
- .
- Major features of Campcaster: live, in-studio playout; web-based remote
- station management; automation; playlists; centralized archives of station
- program material; solid, fast playback using the GStreamer multimedia
- framework; search-based backup; localization into several languages;
- innovative design by the Parsons School of Design; open, extensible
- architecture based on XML-RPC.
- .
- This package contains the XMLRPC server component and shared data
- files for Campcaster.
-
-Package: campcaster-station
-Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends},
- campcaster-libs (= ${binary:Version}),
- campcaster-data (= ${source:Version}),
- apache2,
- unzip, bzip2, gzip (>= 1.3.5),
- libapache2-mod-php5,
- postgresql-8.1 | postgresql-8.2 | postgresql-8.3 | postgresql (>= 8.1),
- postgresql-client-8.1 | postgresql-client-8.2 | postgresql-client-8.3 | postgresql-client (>= 8.1),
- unixodbc (>= 2.2),
- odbc-postgresql,
- xsltproc,
- php5-pgsql, php5-cli, php5-gd, php-db,
- gstreamer0.10-plugins-good,
- gstreamer0.10-plugins-ugly | gstreamer0.10-ffmpeg | gstreamer0.10-fluendo-mp3,
- gstreamer0.10-alsa,
- curl, pwgen, sed (>= 4.2.1)
-Description: A radio program automation and support tool - backend and server
- Campcaster is the first free and open radio management software that
- provides live studio broadcast capabilities as well as remote automation
- in one integrated system.
- .
- Major features of Campcaster: live, in-studio playout; web-based remote
- station management; automation; playlists; centralized archives of station
- program material; solid, fast playback using the GStreamer multimedia
- framework; search-based backup; localization into several languages;
- innovative design by the Parsons School of Design; open, extensible
- architecture based on XML-RPC.
- .
- This package contains the XMLRPC backend
- and web-server component of Campcaster.
-
-Package: campcaster-studio
-Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends},
- campcaster-libs (= ${binary:Version}),
- campcaster-data (= ${source:Version}),
- campcaster-station (= ${binary:Version})
-Description: A radio program automation and support tool - client GUI
- Campcaster is the first free and open radio management software that
- provides live studio broadcast capabilities as well as remote automation
- in one integrated system.
- .
- Major features of Campcaster: live, in-studio playout; web-based remote
- station management; automation; playlists; centralized archives of station
- program material; solid, fast playback using the GStreamer multimedia
- framework; search-based backup; localization into several languages;
- innovative design by the Parsons School of Design; open, extensible
- architecture based on XML-RPC.
- .
- This package contains the GUI client component of Campcaster.
diff --git a/debian/copyright b/debian/copyright
deleted file mode 100644
index c2a601466..000000000
--- a/debian/copyright
+++ /dev/null
@@ -1,142 +0,0 @@
-Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=142
-Name: Campcaster
-Maintainer:
- Micz Flor
- Robert Klajn
- Michael Aschauer
- Douglas Arellanes
- Akos Maroy
- Sava Tatić
- Charles Truett
- Ferenc Gerlits
- Mark Kretschmann
-Source: http://sourceforge.net/projects/campcaster/files/
-
-Files: *
-Copyright: 2004-2010, Sourcefabric O.P.S. http://www.sourcefabric.org/
-License: GPL-2+
-
-Files: debian/*
-Copyright:
- 2010, Robin Gareus on Sun, 31 Jan 2010 22:53:14 +0100
- 2010, Alessio Treglia on Tue, 16 Feb 2010 22:25:39 +0100
-License: GPL-2+
-
-Files: src/tools/libodbc++/
-Copyright: 1999-2000, Manush Dodunekov
-License: LGPL-2+
-
-Files: src/tools/taglib/
-Copyright: 2002-2008, Scott Wheeler et al.
-License: LGPL-2+
-
-Files: src/tools/xmlrpc++/
-Copyright: 2002-2004, Chris Morley
-License: LGPL-2+
-
-Files: src/tools/pear/
-Copyright:
- 2002-2005, Richard Heyes
- 2002-2005, Tal Peer
- 2002-2005, Michael Wallner
-License: other
- The PHP License, version 3.0
- Copyright (c) 1999 - 2006 The PHP Group. All rights reserved.
- --------------------------------------------------------------------
-
- Redistribution and use in source and binary forms, with or without
- modification, is permitted provided that the following conditions
- are met:
-
- 1. Redistributions of source code must retain the above copyright
- notice, this list of conditions and the following disclaimer.
-
- 2. Redistributions in binary form must reproduce the above copyright
- notice, this list of conditions and the following disclaimer in
- the documentation and/or other materials provided with the
- distribution.
-
- 3. The name "PHP" must not be used to endorse or promote products
- derived from this software without prior written permission. For
- written permission, please contact group@php.net.
-
- 4. Products derived from this software may not be called "PHP", nor
- may "PHP" appear in their name, without prior written permission
- from group@php.net. You may indicate that your software works in
- conjunction with PHP by saying "Foo for PHP" instead of calling
- it "PHP Foo" or "phpfoo"
-
- 5. The PHP Group may publish revised and/or new versions of the
- license from time to time. Each version will be given a
- distinguishing version number.
- Once covered code has been published under a particular version
- of the license, you may always continue to use it under the terms
- of that version. You may also choose to use such covered code
- under the terms of any subsequent version of the license
- published by the PHP Group. No one other than the PHP Group has
- the right to modify the terms applicable to covered code created
- under this License.
-
- 6. Redistributions of any form whatsoever must retain the following
- acknowledgment:
- "This product includes PHP, freely available from
- ".
-
- THIS SOFTWARE IS PROVIDED BY THE PHP DEVELOPMENT TEAM ``AS IS'' AND
- ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
- PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE PHP
- DEVELOPMENT TEAM OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
- INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
- SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
- HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
- STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
- OF THE POSSIBILITY OF SUCH DAMAGE.
-
- --------------------------------------------------------------------
-
- This software consists of voluntary contributions made by many
- individuals on behalf of the PHP Group.
-
- The PHP Group can be contacted via Email at group@php.net.
-
- For more information on the PHP Group and the PHP project,
- please see .
-
- This product includes the Zend Engine, freely available at
- .
-
-License: GPL-2+
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation, either version 2 of the License, or
- (at your option) any later version.
- .
- This package is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
- .
- You should have received a copy of the GNU General Public License
- along with this program. If not, see .
-X-Comment: On Debian systems, the complete text of the GNU General Public
- License version 2 can be found in `/usr/share/common-licenses/GPL-2'.
-
-License: LGPL-2
- This library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Library General Public
- License as published by the Free Software Foundation; either
- version 2 of the License, or (at your option) any later version.
- .
- This library is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- Library General Public License for more details.
- .
- You should have received a copy of the GNU Library General Public
- License along with this library; if not, write to the Free Software
- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301 USA
-X-Comment: On Debian systems, the complete text of the GNU Lesser Public
- License version 2 can be found in `/usr/share/common-licenses/LGPL-2'.
diff --git a/debian/patches/apache_setup.diff b/debian/patches/apache_setup.diff
deleted file mode 100644
index b54ad898c..000000000
--- a/debian/patches/apache_setup.diff
+++ /dev/null
@@ -1,17 +0,0 @@
-Subject: do not add symlink in /var/www/ - use apache Alias instead
-Forwarded: no
-Author: Robin Gareus
-Last-Update: 2010-02-14
-Index: campcaster/etc/apache/90_php_campcaster.conf
-===================================================================
---- campcaster.orig/etc/apache/90_php_campcaster.conf 2010-07-22 15:21:30.000000000 +0200
-+++ campcaster/etc/apache/90_php_campcaster.conf 2010-08-26 14:51:45.000000000 +0200
-@@ -1,2 +1,8 @@
- php_value upload_max_filesize 32M
- php_value post_max_size 36M
-+
-+Alias /campcaster /usr/share/campcaster/www
-+
-+
-+ Options FollowSymlinks
-+
diff --git a/debian/patches/debianize_paths.diff b/debian/patches/debianize_paths.diff
deleted file mode 100644
index 45b710e5a..000000000
--- a/debian/patches/debianize_paths.diff
+++ /dev/null
@@ -1,147 +0,0 @@
-Description: Change (hardcoded) paths in shell and install scripts
- to conform to debian locations.
-Forwarded: not-needed
-Author: Robin Gareus
-Last-Update: 2010-02-14
-Index: campcaster/src/modules/archiveServer/var/conf.php.template
-===================================================================
---- campcaster.orig/src/modules/archiveServer/var/conf.php.template 2010-07-22 15:21:30.000000000 +0200
-+++ campcaster/src/modules/archiveServer/var/conf.php.template 2010-08-26 14:51:22.000000000 +0200
-@@ -3,7 +3,7 @@
- * ArchiveServer configuration file
- */
-
--include(dirname(__FILE__)."/../../storageServer/var/campcaster_version.php");
-+include("/etc/campcaster/storageServer/campcaster_version.php");
-
- /**
- * configuration structure:
-@@ -48,10 +48,10 @@
- 'AdminsGr' => 'Admins',
- 'StationPrefsGr'=> '',
- 'AllGr' => 'All',
-- 'storageDir' => dirname(__FILE__).'/../../archiveServer/var/stor',
-- 'bufferDir' => dirname(__FILE__).'/../../archiveServer/var/stor/buffer',
-- 'transDir' => dirname(__FILE__).'/../../archiveServer/var/trans',
-- 'accessDir' => dirname(__FILE__).'/../../archiveServer/var/access',
-+ 'storageDir' => 'ls_shr_www/archiveServer/var/stor',
-+ 'bufferDir' => 'ls_shr_www/archiveServer/var/stor/buffer',
-+ 'transDir' => 'ls_shr_www/archiveServer/var/trans',
-+ 'accessDir' => 'ls_shr_www/archiveServer/var/access',
- 'pearPath' => 'ls_lib_dir/pear',
- 'isArchive' => TRUE,
- 'validate' => TRUE,
-@@ -117,4 +117,4 @@
- );
- $old_ip = get_include_path();
- set_include_path('.'.PATH_SEPARATOR.$CC_CONFIG['pearPath'].PATH_SEPARATOR.$old_ip);
--?>
-\ No newline at end of file
-+?>
-Index: campcaster/src/modules/htmlUI/var/ui_conf.php.template
-===================================================================
---- campcaster.orig/src/modules/htmlUI/var/ui_conf.php.template 2010-07-22 15:21:30.000000000 +0200
-+++ campcaster/src/modules/htmlUI/var/ui_conf.php.template 2010-08-26 14:51:22.000000000 +0200
-@@ -152,9 +152,9 @@
- )
- );
-
--require_once(dirname(__FILE__).'/ui_base.inc.php');
--require_once('../../../storageServer/var/GreenBox.php');
--require_once(dirname(__FILE__).'/formmask/generic.inc.php');
-+require_once('htmlui_dir/ui_base.inc.php');
-+require_once('storage_server/var/GreenBox.php');
-+require_once('htmlui_dir/formmask/generic.inc.php');
-
- require_once('DB.php');
- require_once('HTML/QuickForm.php');
-Index: campcaster/src/modules/storageAdmin/bin/campcaster-backup
-===================================================================
---- campcaster.orig/src/modules/storageAdmin/bin/campcaster-backup 2010-08-26 13:40:02.000000000 +0200
-+++ campcaster/src/modules/storageAdmin/bin/campcaster-backup 2010-08-26 14:51:22.000000000 +0200
-@@ -36,8 +36,7 @@
- then
- phpdir=`cd $reldir/var; pwd`
- fi
--mkdir -p $reldir/tmp
--tmpmaindir=`cd $reldir/tmp; pwd`
-+tmpmaindir=/tmp
- dbxml="db.xml"
- datestr=`date '+%Y%m%d%H%M%S'`
- xmltar="xmls.tar"
-Index: campcaster/src/modules/storageAdmin/bin/dumpDbSchema.sh
-===================================================================
---- campcaster.orig/src/modules/storageAdmin/bin/dumpDbSchema.sh 2010-08-26 13:40:02.000000000 +0200
-+++ campcaster/src/modules/storageAdmin/bin/dumpDbSchema.sh 2010-08-26 14:51:22.000000000 +0200
-@@ -30,13 +30,7 @@
- # Determine directories, files
- #-------------------------------------------------------------------------------
-
--reldir=`dirname $0`/..
--phpdir=ls_storageAdmin_phppart_dir
--if [ "$phpdir" == "ls_storageAdmin_phppart_dir" ]
--then
-- phpdir=`cd $reldir/var; pwd`
--fi
--filelistpathname=.
-+phpdir=/usr/share/campcaster/www/storageAdmin/var/
-
- #-------------------------------------------------------------------------------
- # Print the usage information for this script.
-Index: campcaster/src/modules/storageServer/var/conf.php.template
-===================================================================
---- campcaster.orig/src/modules/storageServer/var/conf.php.template 2010-07-22 15:21:30.000000000 +0200
-+++ campcaster/src/modules/storageServer/var/conf.php.template 2010-08-26 14:51:22.000000000 +0200
-@@ -53,12 +53,12 @@
- 'StationPrefsGr'=> 'StationPrefs',
- 'AllGr' => 'All',
- 'TrashName' => 'trash_',
-- 'storageDir' => dirname(__FILE__).'/../../storageServer/var/stor',
-- 'bufferDir' => dirname(__FILE__).'/../../storageServer/var/stor/buffer',
-- 'transDir' => dirname(__FILE__).'/../../storageServer/var/trans',
-- 'accessDir' => dirname(__FILE__).'/../../storageServer/var/access',
-+ 'storageDir' => 'ls_shr_www/storageServer/var/stor',
-+ 'bufferDir' => 'ls_shr_www/storageServer/var/stor/buffer',
-+ 'transDir' => 'ls_shr_www/storageServer/var/trans',
-+ 'accessDir' => 'ls_shr_www/storageServer/var/access',
- 'pearPath' => 'ls_lib_dir/pear',
-- 'cronDir' => dirname(__FILE__).'/../../storageServer/var/cron',
-+ 'cronDir' => 'ls_shr_www/storageServer/var/cron',
- 'isArchive' => FALSE,
- 'validate' => TRUE,
- 'useTrash' => TRUE,
-@@ -113,9 +113,10 @@
-
- /* =================================================== cron configuration */
- 'cronUserName' => 'ls_apache_group',
-- 'lockfile' => dirname(__FILE__).'/cron/cron.lock',
-- 'cronfile' => dirname(__FILE__).'/cron/croncall.php',
-- 'paramdir' => dirname(__FILE__).'/cron/params',
-+ 'lockfile' => '/var/lock/campcaster-cron.lock',
-+ 'cronfile' => 'ls_shr_www/storageServer/var/cron/croncall.php',
-+ 'paramdir' => '/var/cache/campcaster/cronparams',
-+
- );
-
- // Add database table names
-Index: campcaster/src/products/scheduler/bin/createOdbcDataSource.sh
-===================================================================
---- campcaster.orig/src/products/scheduler/bin/createOdbcDataSource.sh 2010-08-26 13:40:02.000000000 +0200
-+++ campcaster/src/products/scheduler/bin/createOdbcDataSource.sh 2010-08-26 14:51:22.000000000 +0200
-@@ -32,14 +32,7 @@
- #-------------------------------------------------------------------------------
- # Determine directories, files
- #-------------------------------------------------------------------------------
--reldir=`dirname $0`/..
--basedir=`cd $reldir; pwd;`
--bindir=$basedir/bin
--etcdir=$basedir/etc
--docdir=$basedir/doc
--tmpdir=$basedir/tmp
--usrdir=$basedir/usr
--
-+etcdir=/usr/share/campcaster/etc/
-
- #-------------------------------------------------------------------------------
- # Print the usage information for this script.
-
diff --git a/debian/patches/icon_xpm.diff b/debian/patches/icon_xpm.diff
deleted file mode 100644
index 92e648f02..000000000
--- a/debian/patches/icon_xpm.diff
+++ /dev/null
@@ -1,194 +0,0 @@
-Subject: Add icon in xpm format
-Author: Robin Gareus
-Last-Update: 2010-02-14
-diff --git a/src/products/gLiveSupport/var/icon32.xpm b/src/products/gLiveSupport/var/icon32.xpm
-new file mode 100644
-index 0000000..90f2a46
---- /dev/null
-+++ b/src/products/gLiveSupport/var/icon32.xpm
-@@ -0,0 +1,185 @@
-+/* XPM */
-+static char *icon__[] = {
-+/* columns rows colors chars-per-pixel */
-+"32 32 147 2",
-+" c #B6480F",
-+". c #BB4D16",
-+"X c #BE4D14",
-+"o c #BE4E16",
-+"O c #C2521C",
-+"+ c #D9521C",
-+"@ c #C45925",
-+"# c #C95923",
-+"$ c #CD5D27",
-+"% c #CD5E2C",
-+"& c #D75A25",
-+"* c #DF5E2A",
-+"= c #D46632",
-+"- c #DF6732",
-+"; c #D86C3D",
-+": c #DB6D3C",
-+"> c #DF6E3E",
-+", c #E6642E",
-+"< c #E26330",
-+"1 c #E06735",
-+"2 c #E26837",
-+"3 c #E56938",
-+"4 c #E26D39",
-+"5 c #E56C3B",
-+"6 c #E56D3D",
-+"7 c #E96A38",
-+"8 c #DC7040",
-+"9 c #DD7242",
-+"0 c #DE7245",
-+"q c #E27343",
-+"w c #E47242",
-+"e c #E37546",
-+"r c #E37547",
-+"t c #EB7241",
-+"y c #E97343",
-+"u c #EA7647",
-+"i c #E37548",
-+"p c #E77749",
-+"a c #EA7749",
-+"s c #E27E4E",
-+"d c #E9794C",
-+"f c #E97A4E",
-+"g c #E57B50",
-+"h c #E37D50",
-+"j c #E27C52",
-+"k c #EE7D50",
-+"l c #E87E54",
-+"z c #E68055",
-+"x c #EB8050",
-+"c c #EA8052",
-+"v c #E98056",
-+"b c #ED8157",
-+"n c #EE8157",
-+"m c #E5845C",
-+"M c #E7875F",
-+"N c #E98158",
-+"B c #E88359",
-+"V c #E98459",
-+"C c #EE865B",
-+"Z c #E8855D",
-+"A c #E9865E",
-+"S c #EE875F",
-+"D c #F1855A",
-+"F c #EA8860",
-+"G c #EC8A60",
-+"H c #EE8A62",
-+"J c #EB8C64",
-+"K c #E98C66",
-+"L c #EE8C66",
-+"P c #EF8D66",
-+"I c #EB926C",
-+"U c #EB926D",
-+"Y c #EF946F",
-+"T c #F1916B",
-+"R c #F1936E",
-+"E c #EF9470",
-+"W c #ED9775",
-+"Q c #EF9976",
-+"! c #EE9978",
-+"~ c #EE9D7A",
-+"^ c #F19571",
-+"/ c #F59872",
-+"( c #F39974",
-+") c #F09A77",
-+"_ c #F79B78",
-+"` c #F19D78",
-+"' c #F39C79",
-+"] c #F49E7B",
-+"[ c #F79E7B",
-+"{ c #F39C7C",
-+"} c #F29D7C",
-+"| c #EFA07E",
-+" . c #F7A17F",
-+".. c #F5A282",
-+"X. c #F7A282",
-+"o. c #F7A382",
-+"O. c #F7A785",
-+"+. c #F8A585",
-+"@. c #F8A687",
-+"#. c #F4A98A",
-+"$. c #F7A98B",
-+"%. c #F7AB8D",
-+"&. c #F5AC8D",
-+"*. c #F9AA8A",
-+"=. c #FAAC8D",
-+"-. c #F7AF92",
-+";. c #F9AE91",
-+":. c #F7B091",
-+">. c #F8B196",
-+",. c #FAB59B",
-+"<. c #FCB699",
-+"1. c #FAB79C",
-+"2. c #FABB9F",
-+"3. c #FBBCA1",
-+"4. c #FCBEA6",
-+"5. c #FBC0A6",
-+"6. c #FDC1AA",
-+"7. c #FCC2AC",
-+"8. c #FDC4AE",
-+"9. c #FEC5AF",
-+"0. c #FDC5B0",
-+"q. c #FFC6B0",
-+"w. c #FFC6B1",
-+"e. c #FEC7B2",
-+"r. c #FFCBB4",
-+"t. c #FECBB6",
-+"y. c #FECCB6",
-+"u. c #FFCDB7",
-+"i. c #FFCBB9",
-+"p. c #FFCCB8",
-+"a. c #FECCB9",
-+"s. c #FFCEBA",
-+"d. c #FFD1BF",
-+"f. c #FFD2BF",
-+"g. c #FFD2C1",
-+"h. c #FFD3C1",
-+"j. c #FFD2C2",
-+"k. c #FFD4C4",
-+"l. c #FFD5C4",
-+"z. c #FFD5C5",
-+"x. c #FFD6C7",
-+"c. c #FFD7C7",
-+"v. c #FFD8C7",
-+"b. c #FFD7C9",
-+"n. c #FFD9C9",
-+"m. c #FFD9CA",
-+"M. c None",
-+/* pixels */
-+"M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.",
-+"M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.",
-+"M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.",
-+"M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.",
-+"M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.",
-+"M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.",
-+"M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.",
-+"M.M.M.M.M.M.M.M.M.M.M.M.M.k / +.+.] D , M.M.M.M.M.M.M.M.M.M.M.M.",
-+"M.M.M.M.M.M.M.M.M.M.< ' 8.c.n.b.c.n.v.a.=.u M.M.M.M.M.M.M.M.M.M.",
-+"M.M.M.M.M.M.M.M.M.] c.c.7.#.^ F B A Y %.e.d.<.y M.M.M.M.M.M.M.M.",
-+"M.M.M.M.M.M.M.f t.a.( : o M.M.M.M.M.M.M.. : .6.[ M.M.M.M.M.M.M.",
-+"M.M.M.M.M.M.( 8.K o M.M.M.M.M.M.M.M.M.M.M.M.M.@ U *.7 M.M.M.M.M.",
-+"M.M.M.M.M. .Q O M.M.M.M.M.& f S H C a M.M.M.M.M.M.M.T y M.M.M.M.",
-+"M.M.M.M.R 0 M.M.M.M.M.p ;.i.j.c.j.j.j.e.o.3 M.M.M.M.M.l 6 M.M.M.",
-+"M.M.M.b M.M.M.M.M.5 >.d.4.{ v e e e f Y 1.e.o.* M.M.M.M.M.+ M.M.",
-+"M.M.2 M.M.M.M.M.L e.#.> M.M.M.M.M.M.M.M.% ) ,.n M.M.M.M.M.M.M.",
-+"M.M.M.M.M.M.M...:.: M.M.M.M.M.M.M.M.M.M.M.M.M.M.Q L M.M.M.M.M.M.",
-+"M.M.M.M.M.M.{ h M.M.M.M.M.M.1 x c 4 M.M.M.M.M.M.M.M.B M.M.M.M.M.",
-+"M.M.M.M.M.A M.M.M.M.M.M.V 3.a.a.r.y.5.' M.M.M.M.M.M.M.1 M.M.M.M.",
-+"M.M.M.M.i M.M.M.M.M.M.%.2.I 9 $ # = s ~ :.H M.M.M.M.M.M.M.M.M.M.",
-+"M.M.M.M.M.M.M.M.M.w O.h M.M.M.M.M.M.M.M.M.M K M.M.M.M.M.M.M.M.M.",
-+"M.M.M.M.M.M.M.M.M.z M.M.M.M.M.M.M.M.M.M.M.M.M.m M.M.M.M.M.M.M.M.",
-+"M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.",
-+"M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.",
-+"M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.",
-+"M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.",
-+"M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.",
-+"M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.",
-+"M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.",
-+"M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.",
-+"M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.",
-+"M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M."
-+};
diff --git a/debian/patches/postgres_fixes.diff b/debian/patches/postgres_fixes.diff
deleted file mode 100644
index befd73d23..000000000
--- a/debian/patches/postgres_fixes.diff
+++ /dev/null
@@ -1,47 +0,0 @@
-Subject: Change pgsql setup scripts for debian postgres 8.4
-Author: Robin Gareus
-Last-Update: 2010-02-14
-Index: campcaster/bin/postInstallStation.sh
-===================================================================
---- campcaster.orig/bin/postInstallStation.sh 2010-08-26 14:51:38.000000000 +0200
-+++ campcaster/bin/postInstallStation.sh 2010-08-26 14:51:40.000000000 +0200
-@@ -235,22 +235,22 @@
- #-------------------------------------------------------------------------------
- # Install the new pg_hba.conf file
- #-------------------------------------------------------------------------------
--echo "Modifying postgresql access permissions...";
--
--pg_config_dir=$postgresql_dir
--pg_config_file=pg_hba.conf
--pg_config_file_saved=pg_hba.conf.before-campcaster
--
--if [ -f $pg_config_dir/$pg_config_file ] ; then
-- mv -f $pg_config_dir/$pg_config_file $pg_config_dir/$pg_config_file_saved ;
--fi
--cp $install_etc/$pg_config_file $pg_config_dir/$pg_config_file
--chown root:$postgres_user $pg_config_dir/$pg_config_file
--
--# don't use restart for the init script, as it might return prematurely
--# and in the later call to psql we wouldn't be able to connect
--${postgresql_init_script} stop
--${postgresql_init_script} start
-+#echo "Modifying postgresql access permissions...";
-+#
-+#pg_config_dir=$postgresql_dir
-+#pg_config_file=pg_hba.conf
-+#pg_config_file_saved=pg_hba.conf.before-campcaster
-+#
-+#if [ -f $pg_config_dir/$pg_config_file ] ; then
-+# mv -f $pg_config_dir/$pg_config_file $pg_config_dir/$pg_config_file_saved ;
-+#fi
-+#cp $install_etc/$pg_config_file $pg_config_dir/$pg_config_file
-+#chown root:$postgres_user $pg_config_dir/$pg_config_file
-+#
-+## don't use restart for the init script, as it might return prematurely
-+## and in the later call to psql we wouldn't be able to connect
-+#${postgresql_init_script} stop
-+#${postgresql_init_script} start
-
-
- #-------------------------------------------------------------------------------
-
diff --git a/debian/patches/remove_upstream_deb.diff b/debian/patches/remove_upstream_deb.diff
deleted file mode 100644
index 6a29ca048..000000000
--- a/debian/patches/remove_upstream_deb.diff
+++ /dev/null
@@ -1,1116 +0,0 @@
-Subject: Remove upstream's debian packaging attempt
-Forwarded: no
-Author: Robin Gareus
-Last-Update: 2010-08-26
-Index: campcaster/etc/debian/README.Debian
-===================================================================
---- campcaster.orig/etc/debian/README.Debian 2010-08-26 14:43:22.000000000 +0200
-+++ /dev/null 1970-01-01 00:00:00.000000000 +0000
-@@ -1,16 +0,0 @@
--campcaster for Ubuntu
-----------------------
--
--LiveSupport has been renamed to Campcaster, and the target distribution
--is now Ubuntu.
--
-- -- Ferenc Gerlits , Thu, 16 Nov 2006 12:00:27 +0100
--
--
--livesupport for Debian
------------------------
--
--First debian package of LiveSupport.
--
-- -- Akos Maroy , Wed, 03 Aug 2005 08:17:25 -0400
--
-Index: campcaster/etc/debian/campcaster-station.conffiles
-===================================================================
---- campcaster.orig/etc/debian/campcaster-station.conffiles 2010-08-26 14:43:23.000000000 +0200
-+++ /dev/null 1970-01-01 00:00:00.000000000 +0000
-@@ -1,3 +0,0 @@
--/opt/campcaster/var/Campcaster/storageServer/var/conf.php
--/opt/campcaster/var/Campcaster/archiveServer/var/conf.php
--/opt/campcaster/etc/campcaster-scheduler.xml
-Index: campcaster/etc/debian/campcaster-station.postinst
-===================================================================
---- campcaster.orig/etc/debian/campcaster-station.postinst 2010-08-26 14:43:22.000000000 +0200
-+++ /dev/null 1970-01-01 00:00:00.000000000 +0000
-@@ -1,76 +0,0 @@
--#! /bin/sh
--# postinst script for livesupport
--#
--# see: dh_installdeb(1)
--
--set -e
--
--# summary of how this script can be called:
--# * `configure'
--# * `abort-upgrade'
--# * `abort-remove' `in-favour'
--#
--# * `abort-deconfigure' `in-favour'
--# `removing'
--#
--# for details, see http://www.debian.org/doc/debian-policy/ or
--# the debian-policy package
--#
--
--installdir=/opt/campcaster
--apache_docroot=/var/www
--apache_group=www-data
--
--if [ -d /etc/postgresql/8.1 ]; then
-- postgresql_dir=/etc/postgresql/8.1/main
-- postgresql_init_script=/etc/init.d/postgresql-8.1
--elif [ -d /etc/postgresql/8.2 ]; then
-- postgresql_dir=/etc/postgresql/8.2/main
-- postgresql_init_script=/etc/init.d/postgresql-8.2
--elif [ -d /etc/postgresql/8.3 ]; then
-- postgresql_dir=/etc/postgresql/8.3/main
-- postgresql_init_script=/etc/init.d/postgresql-8.3
--else
-- echo "no postgresql 8.1, 8.2 or 8.3 found" >&2
-- exit 1
--fi
--
--case "$1" in
-- configure)
-- # do post-installation configuration
-- $installdir/bin/postInstallStation.sh --directory=$installdir \
-- --apache-group=$apache_group \
-- --postgresql-dir=$postgresql_dir \
-- --postgresql-init-script=$postgresql_init_script
--
-- # remount the NFS share if we have a 2-computer setup
-- if [ -f $installdir/storageServer.wasMounted ]; then
-- echo "Remounting the remote storage..."
-- mount $installdir/var/Campcaster/storageServer
-- rm $installdir/storageServer.wasMounted
-- fi
--
-- # register and start the Campcaster scheduler daemon
-- cp -f $installdir/etc/campcaster-scheduler /etc/init.d
-- update-rc.d campcaster-scheduler defaults 92 || true
-- /etc/init.d/campcaster-scheduler start || true
-- ;;
--
-- abort-upgrade|abort-remove|abort-deconfigure)
--
-- ;;
--
-- *)
-- echo "postinst called with unknown argument \`$1'" >&2
-- exit 1
-- ;;
--esac
--
--# dh_installdeb will replace this with shell code automatically
--# generated by other debhelper scripts.
--
--#DEBHELPER#
--
--exit 0
--
--
-Index: campcaster/etc/debian/campcaster-station.postrm
-===================================================================
---- campcaster.orig/etc/debian/campcaster-station.postrm 2010-08-26 14:43:22.000000000 +0200
-+++ /dev/null 1970-01-01 00:00:00.000000000 +0000
-@@ -1,95 +0,0 @@
--#! /bin/sh
--# postrm script for campcaster
--#
--# see: dh_installdeb(1)
--
--set -e
--
--# summary of how this script can be called:
--# * `remove'
--# * `purge'
--# * `upgrade'
--# * `failed-upgrade'
--# * `abort-install'
--# * `abort-install'
--# * `abort-upgrade'
--# * `disappear' overwrit>r>
--# for details, see http://www.debian.org/doc/debian-policy/ or
--# the debian-policy package
--
--installdir=/opt/campcaster
--
--if [ -d /etc/postgresql/8.1 ]; then
-- postgresql_dir=/etc/postgresql/8.1/main
-- postgresql_init_script=/etc/init.d/postgresql-8.1
--elif [ -d /etc/postgresql/8.2 ]; then
-- postgresql_dir=/etc/postgresql/8.2/main
-- postgresql_init_script=/etc/init.d/postgresql-8.2
--elif [ -d /etc/postgresql/8.3 ]; then
-- postgresql_dir=/etc/postgresql/8.3/main
-- postgresql_init_script=/etc/init.d/postgresql-8.3
--else
-- echo "no postgresql 8.1, 8.2 or 8.3 found" >&2
-- exit 1
--fi
--postgres_user=postgres
--
--ls_database=Campcaster
--ls_dbuser=campcaster
--
--
--#-------------------------------------------------------------------------------
--# Function to check for the existence of an executable on the PATH
--#
--# @param $1 the name of the exectuable
--# @return 0 if the executable exists on the PATH, non-0 otherwise
--#-------------------------------------------------------------------------------
--check_exe() {
-- if [ -x "`which $1 2> /dev/null`" ]; then
-- return 0;
-- else
-- return 1;
-- fi
--}
--
--
--case "$1" in
-- remove|upgrade|failed-upgrade|abort-install|abort-upgrade)
-- ;;
--
-- purge|disappear)
-- # check for the required tools
-- check_exe "psql" || psql_found=no
--
-- if [ "x$psql_found" != "xno" ] ; then
-- # kill open connections to the Campcaster database
-- $postgresql_init_script stop
-- $postgresql_init_script start
--
-- # remove the PostgreSQL database and user
-- su - $postgres_user -c \
-- "echo \"DROP DATABASE \\\"$ls_database\\\" \" | psql template1" \
-- || echo "Couldn't drop database $ls_database.";
-- su - $postgres_user -c \
-- "echo \"DROP USER $ls_dbuser \" | psql template1" \
-- || echo "Couldn't drop database user $ls_dbuser.";
-- fi
--
-- # remove generated files
-- rm -rf $installdir/var/Campcaster/archiveServer/var/stor/*
-- rm -rf $installdir/var/Campcaster/storageServer/var/stor/*
-- rm -f $installdir/storageServer.wasMounted
-- ;;
--
-- *)
-- echo "postrm called with unknown argument \`$1'" >&2
-- exit 1
-- ;;
--esac
--
--# dh_installdeb will replace this with shell code automatically
--# generated by other debhelper scripts.
--
--#DEBHELPER#
--
--exit 0
-Index: campcaster/etc/debian/campcaster-station.preinst
-===================================================================
---- campcaster.orig/etc/debian/campcaster-station.preinst 2010-08-26 14:43:23.000000000 +0200
-+++ /dev/null 1970-01-01 00:00:00.000000000 +0000
-@@ -1,43 +0,0 @@
--#! /bin/sh
--# preinst script for livesupport
--#
--# see: dh_installdeb(1)
--
--set -e
--
--# summary of how this script can be called:
--# * `install'
--# * `install'
--# * `upgrade'
--# * `abort-upgrade'
--#
--# for details, see http://www.debian.org/doc/debian-policy/ or
--# the debian-policy package
--
--case "$1" in
-- install)
-- ;;
--
-- upgrade)
-- # stop the Campcaster scheduler daemon
-- /etc/init.d/campcaster-scheduler stop || true
-- /etc/init.d/campcaster-scheduler kill || true
-- ;;
--
-- abort-upgrade)
-- ;;
--
-- *)
-- echo "preinst called with unknown argument \`$1'" >&2
-- exit 1
-- ;;
--esac
--
--# dh_installdeb will replace this with shell code automatically
--# generated by other debhelper scripts.
--
--#DEBHELPER#
--
--exit 0
--
--
-Index: campcaster/etc/debian/campcaster-station.prerm
-===================================================================
---- campcaster.orig/etc/debian/campcaster-station.prerm 2010-08-26 14:43:22.000000000 +0200
-+++ /dev/null 1970-01-01 00:00:00.000000000 +0000
-@@ -1,118 +0,0 @@
--#! /bin/sh
--# prerm script for livesupport
--#
--# see: dh_installdeb(1)
--
--set -e
--
--# summary of how this script can be called:
--# * `remove'
--# * `upgrade'
--# * `failed-upgrade'
--# * `remove' `in-favour'
--# * `deconfigure' `in-favour'
--# `removing'
--#
--# for details, see http://www.debian.org/doc/debian-policy/ or
--# the debian-policy package
--
--installdir=/opt/campcaster
--apache_docroot=/var/www
--apache_group=www-data
--
--if [ -d /etc/postgresql/8.1 ]; then
-- postgresql_dir=/etc/postgresql/8.1/main
-- postgresql_init_script=/etc/init.d/postgresql-8.1
--elif [ -d /etc/postgresql/8.2 ]; then
-- postgresql_dir=/etc/postgresql/8.2/main
-- postgresql_init_script=/etc/init.d/postgresql-8.2
--elif [ -d /etc/postgresql/8.3 ]; then
-- postgresql_dir=/etc/postgresql/8.3/main
-- postgresql_init_script=/etc/init.d/postgresql-8.3
--else
-- echo "no postgresql 8.1, 8.2 or 8.3 found" >&2
-- exit 1
--fi
--
--ls_database=Campcaster
--ls_dbuser=campcaster
--
--
--#-------------------------------------------------------------------------------
--# Function to check for the existence of an executable on the PATH
--#
--# @param $1 the name of the exectuable
--# @return 0 if the executable exists on the PATH, non-0 otherwise
--#-------------------------------------------------------------------------------
--check_exe() {
-- if [ -x "`which $1 2> /dev/null`" ]; then
-- return 0;
-- else
-- return 1;
-- fi
--}
--
--
--case "$1" in
-- remove|upgrade|deconfigure)
-- # unmount the NFS share, if we have a 2-computer setup
-- storagedir=$installdir/var/Campcaster/storageServer
-- if [ "`mount | grep -o \"on $storagedir \"`" = "on $storagedir " ]; then
-- echo "Unmounting the remote storage..."
-- umount $storagedir
-- touch $installdir/storageServer.wasMounted
-- fi
--
-- # stop the livesupport scheduler daemon
-- /etc/init.d/campcaster-scheduler stop || true
-- /etc/init.d/campcaster-scheduler kill || true
--
-- # remove the init script
-- rm -f /etc/init.d/campcaster-scheduler
-- update-rc.d campcaster-scheduler remove || true
--
-- # remove the ODBC data source and driver
-- check_exe "odbcinst" || odbcinst_found=no
--
-- if [ "x$odbcinst_found" != "xno" ] ; then
-- odbcinst -u -s -l -n $ls_database
-- odbcinst -u -d -n PostgreSQL_Campcaster
-- fi
--
-- # remove the symlink to the campcaster web pages
-- rm -f $apache_docroot/campcaster
--
-- # restore the old pg_hba.conf file
-- if [ -f $postgresql_dir/pg_hba.conf ] \
-- && [ -f $postgresql_dir/pg_hba.conf.before-campcaster ] ; then
-- mv -f $postgresql_dir/pg_hba.conf.before-campcaster \
-- $postgresql_dir/pg_hba.conf ;
-- fi
--
-- # remove generated files
-- rm -rf $installdir/etc/pear.conf
-- rm -rf $installdir/var/Campcaster/htmlUI/var/html/img/*
-- rm -rf $installdir/var/Campcaster/htmlUI/var/templates_c/*
-- rm -rf $installdir/var/Campcaster/archiveServer/var/access/*
-- rm -rf $installdir/var/Campcaster/archiveServer/var/trans/*
-- rm -rf $installdir/var/Campcaster/storageServer/var/access/*
-- rm -rf $installdir/var/Campcaster/storageServer/var/trans/*
-- ;;
--
-- failed-upgrade)
-- ;;
--
-- *)
-- echo "prerm called with unknown argument \`$1'" >&2
-- exit 1
-- ;;
--esac
--
--# dh_installdeb will replace this with shell code automatically
--# generated by other debhelper scripts.
--
--#DEBHELPER#
--
--exit 0
--
--
-Index: campcaster/etc/debian/campcaster-studio.conffiles
-===================================================================
---- campcaster.orig/etc/debian/campcaster-studio.conffiles 2010-08-26 14:43:22.000000000 +0200
-+++ /dev/null 1970-01-01 00:00:00.000000000 +0000
-@@ -1 +0,0 @@
--/opt/campcaster/etc/campcaster-studio.xml
-Index: campcaster/etc/debian/campcaster-studio.desktop
-===================================================================
---- campcaster.orig/etc/debian/campcaster-studio.desktop 2010-08-26 14:43:23.000000000 +0200
-+++ /dev/null 1970-01-01 00:00:00.000000000 +0000
-@@ -1,14 +0,0 @@
--[Desktop Entry]
--Encoding=UTF-8
--
--Name=Campcaster-Studio
--GenericName=Campcaster Studio GUI Client
--Comment=Control your radio station
--Icon=/opt/campcaster/var/Campcaster/icon48.png
--
--Type=Application
--Categories=Application;AudioVideo;Audio;
--
--Exec=/opt/campcaster/bin/campcaster-studio.sh
--Terminal=false
--
-Index: campcaster/etc/debian/campcaster-studio.menu
-===================================================================
---- campcaster.orig/etc/debian/campcaster-studio.menu 2010-08-26 14:43:23.000000000 +0200
-+++ /dev/null 1970-01-01 00:00:00.000000000 +0000
-@@ -1,4 +0,0 @@
--?package(campcaster-studio):needs="X11" section="Apps/Sound" \
-- title="Campcaster-Studio" command="/opt/campcaster/bin/campcaster-studio.sh" \
-- comment="Control your radio station" \
-- icon="/opt/campcaster/var/Campcaster/icon48.png"
-Index: campcaster/etc/debian/campcaster-studio.postinst
-===================================================================
---- campcaster.orig/etc/debian/campcaster-studio.postinst 2010-08-26 14:43:23.000000000 +0200
-+++ /dev/null 1970-01-01 00:00:00.000000000 +0000
-@@ -1,42 +0,0 @@
--#! /bin/sh
--# postinst script for livesupport
--#
--# see: dh_installdeb(1)
--
--set -e
--
--# summary of how this script can be called:
--# * `configure'
--# * `abort-upgrade'
--# * `abort-remove' `in-favour'
--#
--# * `abort-deconfigure' `in-favour'
--# `removing'
--#
--# for details, see http://www.debian.org/doc/debian-policy/ or
--# the debian-policy package
--#
--
--case "$1" in
-- configure)
--
-- ;;
--
-- abort-upgrade|abort-remove|abort-deconfigure)
--
-- ;;
--
-- *)
-- echo "postinst called with unknown argument \`$1'" >&2
-- exit 1
-- ;;
--esac
--
--# dh_installdeb will replace this with shell code automatically
--# generated by other debhelper scripts.
--
--#DEBHELPER#
--
--exit 0
--
--
-Index: campcaster/etc/debian/campcaster-studio.postrm
-===================================================================
---- campcaster.orig/etc/debian/campcaster-studio.postrm 2010-08-26 14:43:23.000000000 +0200
-+++ /dev/null 1970-01-01 00:00:00.000000000 +0000
-@@ -1,38 +0,0 @@
--#! /bin/sh
--# postrm script for campcaster
--#
--# see: dh_installdeb(1)
--
--set -e
--
--# summary of how this script can be called:
--# * `remove'
--# * `purge'
--# * `upgrade'
--# * `failed-upgrade'
--# * `abort-install'
--# * `abort-install'
--# * `abort-upgrade'
--# * `disappear' overwrit>r>
--# for details, see http://www.debian.org/doc/debian-policy/ or
--# the debian-policy package
--
--case "$1" in
-- remove|upgrade|failed-upgrade|abort-install|abort-upgrade)
-- ;;
--
-- purge|disappear)
-- ;;
--
-- *)
-- echo "postrm called with unknown argument \`$1'" >&2
-- exit 1
-- ;;
--esac
--
--# dh_installdeb will replace this with shell code automatically
--# generated by other debhelper scripts.
--
--#DEBHELPER#
--
--exit 0
-Index: campcaster/etc/debian/campcaster-studio.preinst
-===================================================================
---- campcaster.orig/etc/debian/campcaster-studio.preinst 2010-08-26 14:43:23.000000000 +0200
-+++ /dev/null 1970-01-01 00:00:00.000000000 +0000
-@@ -1,40 +0,0 @@
--#! /bin/sh
--# preinst script for livesupport
--#
--# see: dh_installdeb(1)
--
--set -e
--
--# summary of how this script can be called:
--# * `install'
--# * `install'
--# * `upgrade'
--# * `abort-upgrade'
--#
--# for details, see http://www.debian.org/doc/debian-policy/ or
--# the debian-policy package
--
--case "$1" in
-- install)
-- ;;
--
-- upgrade)
-- ;;
--
-- abort-upgrade)
-- ;;
--
-- *)
-- echo "preinst called with unknown argument \`$1'" >&2
-- exit 1
-- ;;
--esac
--
--# dh_installdeb will replace this with shell code automatically
--# generated by other debhelper scripts.
--
--#DEBHELPER#
--
--exit 0
--
--
-Index: campcaster/etc/debian/campcaster-studio.prerm
-===================================================================
---- campcaster.orig/etc/debian/campcaster-studio.prerm 2010-08-26 14:43:23.000000000 +0200
-+++ /dev/null 1970-01-01 00:00:00.000000000 +0000
-@@ -1,39 +0,0 @@
--#! /bin/sh
--# prerm script for livesupport
--#
--# see: dh_installdeb(1)
--
--set -e
--
--# summary of how this script can be called:
--# * `remove'
--# * `upgrade'
--# * `failed-upgrade'
--# * `remove' `in-favour'
--# * `deconfigure' `in-favour'
--# `removing'
--#
--# for details, see http://www.debian.org/doc/debian-policy/ or
--# the debian-policy package
--
--case "$1" in
-- remove|upgrade|deconfigure)
-- ;;
--
-- failed-upgrade)
-- ;;
--
-- *)
-- echo "prerm called with unknown argument \`$1'" >&2
-- exit 1
-- ;;
--esac
--
--# dh_installdeb will replace this with shell code automatically
--# generated by other debhelper scripts.
--
--#DEBHELPER#
--
--exit 0
--
--
-Index: campcaster/etc/debian/changelog
-===================================================================
---- campcaster.orig/etc/debian/changelog 2010-08-26 14:43:23.000000000 +0200
-+++ /dev/null 1970-01-01 00:00:00.000000000 +0000
-@@ -1,97 +0,0 @@
--campcaster (1.4.0-1) lucid; urgency=low
--
-- * 1.4.0 release
--
-- -- Robin Gareus Fri 05 Feb 2010 02:56:27 +0100
--
--
--campcaster (1.3.0-1) dapper; urgency=low
--
-- * 1.3.0 release
--
-- -- Ferenc Gerlits Wed, 31 Oct 2007 11:45:50 +0100
--
--
--campcaster (1.2.0-1) dapper; urgency=low
--
-- * 1.2.0 release
--
-- -- Ferenc Gerlits Mon, 19 Feb 2007 16:01:25 +0100
--
--
--campcaster (1.1.1-2) dapper; urgency=low
--
-- * 1.1.1 final release, corrected packages
--
-- -- Ferenc Gerlits Mon, 11 Dec 2006 21:25:39 +0000
--
--
--campcaster (1.1.1-1) dapper; urgency=low
--
-- * 1.1.1 final release
--
-- -- Ferenc Gerlits Wed, 06 Dec 2006 22:19:07 +0100
--
--
--campcaster (1.1.0-1) dapper; urgency=low
--
-- * 1.1.0 final release
--
-- -- Ferenc Gerlits Fri, 01 Dec 2006 12:57:51 +0100
--
--
--campcaster (1.1.0rc1-1) unstable; urgency=low
--
-- * 1.1.0 first release candidate
--
-- -- Ferenc Gerlits Thu, 16 Nov 2006 12:00:27 +0100
--
--
--livesupport (1.1b1-1) unstable; urgency=low
--
-- * 1.1 beta release
--
-- -- Ferenc Gerlits Mon, 04 Sep 2006 13:50:24 +0200
--
--
--livesupport (1.0.2-1) unstable; urgency=low
--
-- * 1.0.2 bugfix release
--
-- -- Akos Maroy Sun, 13 Nov 2005 15:10:09 +0200
--
--
--livesupport (1.0.1-1) unstable; urgency=low
--
-- * 1.0.1 bugfix release
--
-- -- Akos Maroy Sat, 01 Oct 2005 17:19:29 +0200
--
--
--livesupport (1.0-1) unstable; urgency=low
--
-- * 1.0 final release
--
-- -- Akos Maroy Fri, 09 Sep 2005 15:04:13 +0200
--
--
--livesupport (1.0rc2-1) unstable; urgency=low
--
-- * second release candidate
--
-- -- Akos Maroy Wed, 03 Aug 2005 08:17:25 -0400
--
--
--livesupport (1.0rc1-1) unstable; urgency=low
--
-- * first release candidate
--
-- -- Akos Maroy Mon, 04 Jul 2005 14:39:11 +0200
--
--
--livesupport (0.9.1-1) unstable; urgency=low
--
-- * Initial Release.
--
-- -- Akos Maroy Tue, 19 Apr 2005 07:40:13 -0400
--
-Index: campcaster/etc/debian/compat
-===================================================================
---- campcaster.orig/etc/debian/compat 2010-08-26 14:43:23.000000000 +0200
-+++ /dev/null 1970-01-01 00:00:00.000000000 +0000
-@@ -1 +0,0 @@
--4
-Index: campcaster/etc/debian/control
-===================================================================
---- campcaster.orig/etc/debian/control 2010-08-26 14:43:23.000000000 +0200
-+++ /dev/null 1970-01-01 00:00:00.000000000 +0000
-@@ -1,181 +0,0 @@
--Source: campcaster
--Section: sound
--Priority: optional
--Maintainer: ls_maintainer
--Build-Depends: debhelper (>= 4.0.0),
-- binutils (>= 2.13),
-- gcc (>= 3.3),
-- g++ (>= 3.3),
-- libc6-dev,
-- make (>= 3.80),
-- automake1.8 | automake (>= 1.8),
-- autoconf (>= 2.59),
-- libtool,
-- pkg-config (>= 0.15),
-- patch (>= 2.5.9),
-- doxygen,
-- tar,
-- gzip,
-- unzip,
-- bzip2,
-- curl,
-- graphviz,
-- xsltproc,
-- unixodbc-dev (>= 2.2),
-- odbc-postgresql,
-- fontconfig,
-- libfontconfig1-dev,
-- libpng12-dev,
-- libjpeg62-dev,
-- openssl,
-- libssl-dev,
-- libxml2-dev,
-- libpopt-dev,
-- alsa-base,
-- libasound2-dev,
-- libid3tag0-dev,
-- libmad0-dev,
-- libogg-dev,
-- libvorbis-dev,
-- libbz2-dev,
-- libtar-dev (>= 1.2.11),
-- libcurl3-dev (>= 7.12.3) | libcurl4-openssl-dev (>= 7.16.4),
-- libboost-date-time-dev (>= 1.33.1),
-- libgtk2.0-dev (>= 2.6.10),
-- libgtkmm-2.4-dev (>= 1:2.6.5),
-- libglademm-2.4-dev (>= 2.6.2),
-- libxml++2.6-dev (>= 2.8.1),
-- libicu34-dev | libicu36-dev | libicu-dev,
-- apache2,
-- php5-pgsql,
-- libapache2-mod-php5,
-- php-pear,
-- php5-gd,
-- postgresql-8.1 | postgresql-8.2 | postgresql-8.3 | postgresql (>= 8.1),
-- postgresql-client-8.1 | postgresql-client-8.2 | postgresql-client-8.3 | postgresql-client (>= 8.1),
-- libgstreamer0.10-dev (>= 0.10.17),
-- libserial-dev (>= 0.5.2)
--Standards-Version: 3.6.1
--
--Package: campcaster-libs
--Architecture: any
--Depends: ${shlibs:Depends},
-- libc6 (>= 2.3.4-1),
-- libgcc1 (>= 1:4.0.2),
-- libstdc++6 (>= 4.0.2-4),
-- libglib2.0-0 (>= 2.9.3),
-- libpopt0 (>= 1.7),
-- libxml2 (>= 2.6.23),
-- zlib1g (>= 1:1.2.1),
-- libasound2 (>> 1.0.10),
-- libid3tag0 (>= 0.15.1b)
--Description: A radio program automation and support tool.
-- Campcaster is the first free and open radio management software that
-- provides live studio broadcast capabilities as well as remote automation
-- in one integrated system.
-- .
-- Major features of Campcaster: live, in-studio playout; web-based remote
-- station management; automation; playlists; centralized archives of station
-- program material; solid, fast playback using the Gstreamer multimedia
-- framework; search-based backup; localization into several languages;
-- innovative design by the Parsons School of Design; open, extensible
-- architecture based on XML-RPC.
-- .
-- This package contains the libraries used by Campcaster.
-- .
-- Web site: http://campcaster.campware.org
--
--Package: campcaster-station
--Architecture: any
--Depends: ${shlibs:Depends},
-- campcaster-libs (= ${binary:Version}),
-- sed,
-- pwgen,
-- unixodbc (>= 2.2),
-- odbc-postgresql,
-- libfontconfig1,
-- libpng12-0,
-- libjpeg62,
-- libssl0.9.8,
-- libxml2,
-- libpopt0,
-- libasound2,
-- libid3tag0,
-- libbz2-1.0,
-- libtar (>= 1.2.11),
-- curl,
-- libcurl3,
-- libboost-date-time1.33.1 | libboost-date-time1.34.1,
-- libxml++2.6c2a (>= 2.8.1),
-- libicu34 | libicu36 | libicu38,
-- apache2,
-- php5-pgsql,
-- libapache2-mod-php5,
-- php-pear,
-- php5-gd,
-- postgresql-8.1 | postgresql-8.2 | postgresql-8.3 | postgresql (>= 8.1),
-- postgresql-client-8.1 | postgresql-client-8.2 | postgresql-client-8.3 | postgresql-client (>= 8.1),
-- libgstreamer0.10-0 (>= 0.10.17),
-- gstreamer0.10-plugins-good (>= 0.10.7),
-- gstreamer0.10-plugins-ugly (>= 0.10.7)
--Description: A radio program automation and support tool.
-- Campcaster is the first free and open radio management software that
-- provides live studio broadcast capabilities as well as remote automation
-- in one integrated system.
-- .
-- Major features of Campcaster: live, in-studio playout; web-based remote
-- station management; automation; playlists; centralized archives of station
-- program material; solid, fast playback using the Gstreamer multimedia
-- framework; search-based backup; localization into several languages;
-- innovative design by the Parsons School of Design; open, extensible
-- architecture based on XML-RPC.
-- .
-- This package contains the server components of Campcaster:
-- a storage server, a scheduler daemon, and a web interface.
-- .
-- Web site: http://campcaster.campware.org
--
--Package: campcaster-studio
--Architecture: any
--Depends: ${shlibs:Depends},
-- campcaster-libs (= ${binary:Version}),
-- campcaster-station (= ${binary:Version}),
-- sed,
-- unixodbc (>= 2.2),
-- odbc-postgresql,
-- libfontconfig1,
-- libpng12-0,
-- libjpeg62,
-- libssl0.9.8,
-- libxml2,
-- libpopt0,
-- libasound2,
-- libid3tag0,
-- libmad0,
-- libogg0,
-- libvorbis0a,
-- libbz2-1.0,
-- libtar (>= 1.2.11),
-- libcurl3 (>= 7.12.3),
-- libboost-date-time1.33.1 | libboost-date-time1.34.1,
-- libxml++2.6c2a (>= 2.8.1),
-- libicu34 | libicu36 | libicu38,
-- libgtk2.0-0 (>= 2.6.10),
-- libgtkmm-2.4-1c2a (>= 1:2.6.5),
-- libglademm-2.4-1c2a (>= 2.6.2),
-- libserial0 (>= 0.5.2)
--Description: A radio program automation and support tool.
-- Campcaster is the first free and open radio management software that
-- provides live studio broadcast capabilities as well as remote automation
-- in one integrated system.
-- .
-- Major features of Campcaster: live, in-studio playout; web-based remote
-- station management; automation; playlists; centralized archives of station
-- program material; solid, fast playback using the Gstreamer multimedia
-- framework; search-based backup; localization into several languages;
-- innovative design by the Parsons School of Design; open, extensible
-- architecture based on XML-RPC.
-- .
-- This package contains the GUI client component of Campcaster.
-- .
-- Web site: http://campcaster.campware.org
-Index: campcaster/etc/debian/copyright
-===================================================================
---- campcaster.orig/etc/debian/copyright 2010-08-26 14:43:22.000000000 +0200
-+++ /dev/null 1970-01-01 00:00:00.000000000 +0000
-@@ -1,25 +0,0 @@
--This package was debianized by Akos Maroy on
--Wed, 03 Aug 2005 08:17:25 -0400
--
--It was downloaded from http://campcaster.sourcefabric.org/
--
--Copyright:
--
--Upstream Author(s): Sourcefabric O.P.S., http://sourcefabric.org/
--
--License:
--
-- Campcaster is free software; you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation; either version 2 of the License, or
-- (at your option) any later version.
--
-- Campcaster is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with Campcaster; if not, write to the Free Software
-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
--
-Index: campcaster/etc/debian/dirs
-===================================================================
---- campcaster.orig/etc/debian/dirs 2010-08-26 14:43:23.000000000 +0200
-+++ /dev/null 1970-01-01 00:00:00.000000000 +0000
-@@ -1 +0,0 @@
--opt/campcaster
-Index: campcaster/etc/debian/rules
-===================================================================
---- campcaster.orig/etc/debian/rules 2010-08-26 14:43:23.000000000 +0200
-+++ /dev/null 1970-01-01 00:00:00.000000000 +0000
-@@ -1,183 +0,0 @@
--#!/usr/bin/make -f
--# -*- makefile -*-
--# Sample debian/rules that uses debhelper.
--#
--# This file was originally written by Joey Hess and Craig Small.
--# As a special exception, when this file is copied by dh-make into a
--# dh-make output file, you may use that output file without restriction.
--# This special exception was added by Craig Small in version 0.37 of dh-make.
--
--# Uncomment this to turn on verbose mode.
--#export DH_VERBOSE=1
--
--# This has to be exported to make some magic below work.
--export DH_OPTIONS
--
--# These are used for cross-compiling and for saving the configure script
--# from having to guess our platform (since we know it already)
--DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
--DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
--
--
--CFLAGS = -Wall -g
--
--ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
-- CFLAGS += -O0
--else
-- CFLAGS += -O2
--endif
--
--config.status: configure
-- dh_testdir
-- CFLAGS="$(CFLAGS)" ./configure --host=$(DEB_HOST_GNU_TYPE) \
-- --build=$(DEB_BUILD_GNU_TYPE) \
-- --prefix=/opt/campcaster \
-- --with-www-docroot=/var/www \
-- --with-apache-group=www-data \
-- --with-station-audio-out=hw:0,0 \
-- --with-studio-audio-out=hw:1,0 \
-- --with-studio-audio-cue=hw:2,0 \
-- --with-hostname=localhost
--
--build: build-arch
--
--build-arch: build-arch-stamp
--build-arch-stamp: config.status
--
-- $(MAKE) setup compile
-- touch build-arch-stamp
--
--clean:
-- dh_testdir
-- dh_testroot
-- rm -f build-arch-stamp #CONFIGURE-STAMP#
--
-- -$(MAKE) distclean clean
--
-- dh_clean
--
--install: install-arch
--
--install-arch:
-- dh_testdir
-- dh_testroot
-- dh_clean -k -s
-- dh_installdirs -s
--
-- # this will install everything into /opt/campcaster/usr
-- $(MAKE) install
--
-- # move the installation to debian/campcaster
-- mkdir -p $(CURDIR)/debian/campcaster/opt
-- mv /opt/campcaster $(CURDIR)/debian/campcaster/opt
--
-- # now separate the libraries into debian/campcaster-libs
-- mkdir -p $(CURDIR)/debian/campcaster-libs
-- mkdir -p $(CURDIR)/debian/campcaster-libs/opt/campcaster
-- mkdir -p $(CURDIR)/debian/campcaster-libs/opt/campcaster/bin
-- mkdir -p $(CURDIR)/debian/campcaster-libs/opt/campcaster/tmp
-- mkdir -p $(CURDIR)/debian/campcaster-libs/opt/campcaster/usr/lib
-- mv -f $(CURDIR)/debian/campcaster/opt/campcaster/lib \
-- $(CURDIR)/debian/campcaster-libs/opt/campcaster
--
-- # now separate the station (server) files into debian/campcaster-station
-- mkdir -p $(CURDIR)/debian/campcaster-station
-- mkdir -p $(CURDIR)/debian/campcaster-station/opt/campcaster
-- mkdir -p $(CURDIR)/debian/campcaster-station/opt/campcaster/bin
-- mkdir -p $(CURDIR)/debian/campcaster-station/opt/campcaster/etc
-- mkdir -p $(CURDIR)/debian/campcaster-station/opt/campcaster/tmp
-- mkdir -p $(CURDIR)/debian/campcaster-station/opt/campcaster/var/Campcaster
-- mkdir -p $(CURDIR)/debian/campcaster-station/opt/campcaster/usr/lib
-- mv -f $(CURDIR)/debian/campcaster/opt/campcaster/bin/campcaster-scheduler \
-- $(CURDIR)/debian/campcaster/opt/campcaster/bin/campcaster-scheduler.sh \
-- $(CURDIR)/debian/campcaster/opt/campcaster/bin/postInstallStation.sh \
-- $(CURDIR)/debian/campcaster/opt/campcaster/bin/createDatabase.sh \
-- $(CURDIR)/debian/campcaster/opt/campcaster/bin/createOdbcDataSource.sh \
-- $(CURDIR)/debian/campcaster-station/opt/campcaster/bin
-- mv -f $(CURDIR)/debian/campcaster/opt/campcaster/etc/campcaster-scheduler.xml* \
-- $(CURDIR)/debian/campcaster/opt/campcaster/etc/odbc* \
-- $(CURDIR)/debian/campcaster-station/opt/campcaster/etc
-- mv -f $(CURDIR)/debian/campcaster/opt/campcaster/var/Campcaster/alib \
-- $(CURDIR)/debian/campcaster/opt/campcaster/var/Campcaster/archiveServer \
-- $(CURDIR)/debian/campcaster/opt/campcaster/var/Campcaster/getid3 \
-- $(CURDIR)/debian/campcaster/opt/campcaster/var/Campcaster/htmlUI \
-- $(CURDIR)/debian/campcaster/opt/campcaster/var/Campcaster/index.php \
-- $(CURDIR)/debian/campcaster/opt/campcaster/var/Campcaster/scheduler \
-- $(CURDIR)/debian/campcaster/opt/campcaster/var/Campcaster/storageServer \
-- $(CURDIR)/debian/campcaster/opt/campcaster/var/Campcaster/storageAdmin \
-- $(CURDIR)/debian/campcaster-station/opt/campcaster/var/Campcaster
-- mv -f $(CURDIR)/debian/campcaster/opt/campcaster/bin/campcaster-backup \
-- $(CURDIR)/debian/campcaster/opt/campcaster/bin/campcaster-import \
-- $(CURDIR)/debian/campcaster/opt/campcaster/bin/dumpDbSchema.sh \
-- $(CURDIR)/debian/campcaster/opt/campcaster/bin/campcaster-restore \
-- $(CURDIR)/debian/campcaster-station/opt/campcaster/bin
-- mv -f $(CURDIR)/debian/campcaster/opt/campcaster/etc/apache \
-- $(CURDIR)/debian/campcaster/opt/campcaster/etc/pg_hba.conf \
-- $(CURDIR)/debian/campcaster/opt/campcaster/etc/campcaster-scheduler \
-- $(CURDIR)/debian/campcaster-station/opt/campcaster/etc
--
-- # now separate the studio (client) files into debian/campcaster-studio
-- mkdir -p $(CURDIR)/debian/campcaster-studio
-- mkdir -p $(CURDIR)/debian/campcaster-studio/opt/campcaster
-- mkdir -p $(CURDIR)/debian/campcaster-studio/opt/campcaster/bin
-- mkdir -p $(CURDIR)/debian/campcaster-studio/opt/campcaster/etc
-- mkdir -p $(CURDIR)/debian/campcaster-studio/opt/campcaster/tmp
-- mkdir -p $(CURDIR)/debian/campcaster-studio/opt/campcaster/var/Campcaster
-- mv -f $(CURDIR)/debian/campcaster/opt/campcaster/bin/campcaster-studio \
-- $(CURDIR)/debian/campcaster/opt/campcaster/bin/campcaster-studio.sh \
-- $(CURDIR)/debian/campcaster-studio/opt/campcaster/bin
-- mv -f $(CURDIR)/debian/campcaster/opt/campcaster/etc/campcaster-studio.xml* \
-- $(CURDIR)/debian/campcaster-studio/opt/campcaster/etc
-- mv -f $(CURDIR)/debian/campcaster/opt/campcaster/var/Campcaster/Widgets \
-- $(CURDIR)/debian/campcaster/opt/campcaster/var/Campcaster/studio-localization \
-- $(CURDIR)/debian/campcaster/opt/campcaster/var/Campcaster/glade \
-- $(CURDIR)/debian/campcaster/opt/campcaster/var/Campcaster/campcaster.png \
-- $(CURDIR)/debian/campcaster/opt/campcaster/var/Campcaster/icon*.png \
-- $(CURDIR)/debian/campcaster/opt/campcaster/var/Campcaster/stationLogo.png \
-- $(CURDIR)/debian/campcaster/opt/campcaster/var/Campcaster/testAudio.ogg \
-- $(CURDIR)/debian/campcaster/opt/campcaster/var/Campcaster/testAudio.ogg.license \
-- $(CURDIR)/debian/campcaster-studio/opt/campcaster/var/Campcaster
-- mkdir -p $(CURDIR)/debian/campcaster-studio/usr/share/applications
-- cp -a $(CURDIR)/debian/campcaster-studio.desktop \
-- $(CURDIR)/debian/campcaster-studio/usr/share/applications/
-- dh_desktop -pcampcaster-studio
-- dh_installmenu
--
-- dh_install -s
--
--binary-common:
-- dh_testdir
-- dh_testroot
-- dh_installchangelogs
--# dh_installdocs
--# dh_installexamples
-- dh_installmenu
--# dh_installdebconf
--# dh_installlogrotate
--# dh_installemacsen
--# dh_installpam
--# dh_installmime
--# Replaced dh_installinit with manual init script installation
--# because invoke.rc-d is linked to /bin/true in the knoppix hdd install.
--# Should be changed back when/if knoppix is fixed.
--# dh_installinit --update-rcd-params="defaults 92"
--# dh_installcron
--# dh_installinfo
--# dh_installman
-- dh_link
-- dh_strip
-- dh_compress
-- dh_fixperms
-- dh_makeshlibs
-- dh_installdeb
-- dh_shlibdeps -l${CURDIR}/debian/campcaster-libs/opt/campcaster/lib
-- dh_gencontrol
-- dh_md5sums
-- dh_builddeb
--
--# Build architecture dependant packages using the common target.
--binary-arch: build-arch install-arch
-- $(MAKE) -f debian/rules DH_OPTIONS=-a binary-common
--
--binary: binary-arch
--.PHONY: build clean binary-arch binary install install-arch
diff --git a/debian/patches/series b/debian/patches/series
deleted file mode 100644
index afa132701..000000000
--- a/debian/patches/series
+++ /dev/null
@@ -1,6 +0,0 @@
-remove_upstream_deb.diff
-icon_xpm.diff
-debianize_paths.diff
-postgres_fixes.diff
-apache_setup.diff
-
diff --git a/debian/rules b/debian/rules
deleted file mode 100755
index 057f36fa9..000000000
--- a/debian/rules
+++ /dev/null
@@ -1,161 +0,0 @@
-#!/usr/bin/make -f
-# -*- makefile -*-
-
-# Uncomment this to turn on verbose mode.
-export DH_VERBOSE=1
-
-%:
- dh $@
-
-override_dh_auto_configure:
- CFLAGS="$(CFLAGS)" LDFLAGS="-Wl,-z,defs" \
- ./configure --prefix=$(CURDIR)/debian/tmp \
- --mandir=\$${prefix}/share/man \
- --infodir=\$${prefix}/share/info \
- --sysconfdir=$(CURDIR)/debian/tmp/etc\
- --with-www-docroot=$(CURDIR)/debian/tmp/var/www \
- --with-apache-group=www-data \
- --with-station-audio-out=hw:0,0 \
- --with-studio-audio-out=hw:1,0 \
- --with-studio-audio-cue=hw:2,0 \
- --with-storage-server=/usr/share/campcaster\
- --with-hostname=localhost
-
-override_dh_prep:
- #dh_prep
- rm -f debian/campcaster.substvars
- rm -f debian/campcaster.*.debhelper
- rm -rf debian/campcaster-libs/
- rm -rf debian/campcaster-studio/
- rm -rf debian/campcaster-station/
- #
- # CUSTOMIZED LIBS..
- mkdir -p debian/campcaster-libs/usr/lib/campcaster
- mv debian/tmp/lib/libodbc++-mt.so* debian/campcaster-libs/usr/lib/campcaster/
- mv debian/tmp/lib/libtag.so* debian/campcaster-libs/usr/lib/campcaster/
- mv debian/tmp/lib/libxmlrpc++.so* debian/campcaster-libs/usr/lib/campcaster/
- mv debian/tmp/lib/pear debian/campcaster-libs/usr/lib/campcaster/pear
- #
- rm -rf debian/tmp
- #
- # campcaster installs a symlink here and will fail if the dir does not exist
- mkdir -p debian/tmp/var/www
-
-
-override_dh_install:
- dh_install
- #
- mkdir -p debian/campcaster-studio/usr/share/pixmaps/
- cp src/products/gLiveSupport/var/icon32.xpm debian/campcaster-studio/usr/share/pixmaps/campcaster.xpm
- #
- mkdir -p debian/campcaster-studio/usr/lib/campcaster/bin
- #
- # station (server)
- mkdir -p debian/campcaster-station/usr/lib/campcaster/bin
- mkdir -p debian/campcaster-station/usr/share/campcaster/etc
- mkdir -p debian/campcaster-station/usr/share/campcaster/www
- mkdir -p debian/campcaster-station/etc/
- mv -f debian/tmp/bin/campcaster-scheduler \
- debian/tmp/bin/campcaster-scheduler.sh \
- debian/tmp/bin/postInstallStation.sh \
- debian/tmp/bin/createDatabase.sh \
- debian/tmp/bin/createOdbcDataSource.sh \
- debian/tmp/bin/campcaster-backup \
- debian/tmp/bin/campcaster-import \
- debian/tmp/bin/dumpDbSchema.sh \
- debian/tmp/bin/campcaster-restore \
- debian/campcaster-station/usr/lib/campcaster/bin/
- mv -f debian/tmp/etc/campcaster-scheduler.xml \
- debian/campcaster-station/etc/
- # CONFIG templates (for postinst and cc-scripts)
- mv -f debian/tmp/etc/pg_hba.conf \
- debian/tmp/etc/odbc_template \
- debian/tmp/etc/odbcinst_template \
- debian/tmp/etc/odbcinst_old_debian_template \
- debian/tmp/etc/odbcinst_new_debian_template \
- debian/tmp/etc/apache/90_php_campcaster.conf \
- debian/campcaster-station/usr/share/campcaster/etc/
- # CONFIG files
- mkdir -p debian/campcaster-station/etc/campcaster/storageServer
- mkdir -p debian/campcaster-station/etc/campcaster/storageAdmin
- mkdir -p debian/campcaster-station/etc/campcaster/htmlUI
- #
- mv -f debian/tmp/var/Campcaster/storageServer/var/conf.php \
- debian/campcaster-station/etc/campcaster/storageServer/conf.php
- mv -f debian/tmp/var/Campcaster/storageServer/var/campcaster_version.php \
- debian/campcaster-station/etc/campcaster/storageServer/
- mv -f debian/tmp/var/Campcaster/storageAdmin/var/conf.php \
- debian/campcaster-station/etc/campcaster/storageAdmin/conf.php
- mv -f debian/tmp/var/Campcaster/htmlUI/var/ui_conf.php \
- debian/campcaster-station/etc/campcaster/htmlUI/ui_conf.php
- #
- mv -f debian/tmp/var/Campcaster/alib \
- debian/tmp/var/Campcaster/getid3 \
- debian/tmp/var/Campcaster/htmlUI \
- debian/tmp/var/Campcaster/index.php \
- debian/tmp/var/Campcaster/scheduler \
- debian/tmp/var/Campcaster/storageServer \
- debian/tmp/var/Campcaster/storageAdmin \
- debian/campcaster-station/usr/share/campcaster/www
- # symlink CONFIG files
- ln -s /etc/campcaster/storageServer/conf.php debian/campcaster-station/usr/share/campcaster/www/storageServer/var/conf.php
- ln -s /etc/campcaster/storageServer/campcaster_version.php debian/campcaster-station/usr/share/campcaster/www/storageServer/var/
- ln -s /etc/campcaster/storageAdmin/conf.php debian/campcaster-station/usr/share/campcaster/www/storageAdmin/var/conf.php
- ln -s /etc/campcaster/htmlUI/ui_conf.php debian/campcaster-station/usr/share/campcaster/www/htmlUI/var/ui_conf.php
- #
- mkdir -p debian/campcaster-station/usr/bin/
- ln -s /usr/lib/campcaster/bin/campcaster-scheduler.sh debian/campcaster-station/usr/bin/campcaster-scheduler
- ln -s /usr/lib/campcaster/bin/campcaster-import debian/campcaster-station/usr/bin/campcaster-import
- #ln -s /usr/lib/campcaster/bin/campcaster-backup debian/campcaster-station/usr/bin/campcaster-backup
- #ln -s /usr/lib/campcaster/bin/campcaster-restore debian/campcaster-station/usr/sbin/campcaster-restore
- #
- # studio (client)
- mkdir -p debian/campcaster-studio/usr/lib/campcaster/bin
- mkdir -p debian/campcaster-studio/usr/share/campcaster/etc
- mkdir -p debian/campcaster-studio/etc/
- mkdir -p debian/campcaster-studio/usr/share/campcaster/www
-
- mv debian/tmp/lib/liblivesupport* debian/campcaster-studio/usr/lib/
- mv -f debian/tmp/bin/campcaster-studio \
- debian/tmp/bin/campcaster-studio.sh \
- debian/campcaster-studio/usr/lib/campcaster/bin/
- mv -f debian/tmp/etc/campcaster-studio.xml debian/campcaster-studio/etc/
- mv -f debian/tmp/etc/campcaster-studio.xml.template debian/campcaster-studio/usr/share/campcaster/etc/
- mv -f debian/tmp/var/Campcaster/Widgets \
- debian/tmp/var/Campcaster/studio-localization \
- debian/tmp/var/Campcaster/glade \
- debian/tmp/var/Campcaster/campcaster.png \
- debian/tmp/var/Campcaster/icon*.png \
- debian/tmp/var/Campcaster/stationLogo.png \
- debian/tmp/var/Campcaster/testAudio.ogg \
- debian/campcaster-studio/usr/share/campcaster/www/
- mkdir -p debian/campcaster-studio/usr/bin/
- ln -s /usr/lib/campcaster/bin/campcaster-studio.sh debian/campcaster-studio/usr/bin/campcaster-studio
- # move -studio's share to -data
- mkdir -p debian/campcaster-data/usr/share/
- mv debian/campcaster-station/usr/share/campcaster debian/campcaster-data/usr/share/
- rmdir debian/campcaster-station/usr/share/
-
-override_dh_fixperms:
- dh_fixperms
- #
- chmod +x debian/campcaster-data/usr/share/campcaster/www/storageServer/var/install/airtime-user.php
- chmod -x debian/campcaster-data/usr/share/campcaster/www/storageServer/var/cron/Crontab.php \
- debian/campcaster-data/usr/share/campcaster/www/storageServer/var/cron/CronJob.php \
- debian/campcaster-data/usr/share/campcaster/www/htmlUI/var/templates/popup/PLAYLIST.downloadExportedFile.tpl \
- debian/campcaster-data/usr/share/campcaster/www/htmlUI/var/Smarty/libs/plugins/outputfilter.localizer.php \
- debian/campcaster-data/usr/share/campcaster/www/htmlUI/var/templates/playlist/import.tpl \
- debian/campcaster-data/usr/share/campcaster/www/htmlUI/var/Smarty/libs/Smarty.class.php \
- debian/campcaster-data/usr/share/campcaster/www/storageServer/var/Backup.php \
- debian/campcaster-data/usr/share/campcaster/www/storageServer/var/cron/Cron.php \
- debian/campcaster-data/usr/share/campcaster/www/htmlUI/var/templates/popup/PLAYLIST.export.tpl \
- debian/campcaster-data/usr/share/campcaster/www/htmlUI/var/Smarty/libs/plugins/postfilter.template_marker.php
-
-override_dh_shlibdeps:
- LD_LIBRARY_PATH=debian/campcaster-libs/usr/lib/campcaster/ dh_shlibdeps
-
-override_dh_makeshlibs:
- dh_makeshlibs -n
-
-override_dh_installinit:
- dh_installinit --params "defaults 92"
diff --git a/debian/source/format b/debian/source/format
deleted file mode 100644
index 163aaf8d8..000000000
--- a/debian/source/format
+++ /dev/null
@@ -1 +0,0 @@
-3.0 (quilt)
diff --git a/debian/watch b/debian/watch
deleted file mode 100644
index a65f7a804..000000000
--- a/debian/watch
+++ /dev/null
@@ -1,2 +0,0 @@
-version=3
-http://sf.net/campcaster/campcaster-([0-9].+)\.tar\.bz2
diff --git a/dev_tools/gen_doctrine_migration.php b/dev_tools/gen_doctrine_migration.php
new file mode 100644
index 000000000..2e9791f30
--- /dev/null
+++ b/dev_tools/gen_doctrine_migration.php
@@ -0,0 +1,9 @@
+createTable('users');
- $table->addColumn('username', 'string');
- $table->addColumn('password', 'string');
+ $table = $schema->getTable("cc_show_instances");
+ $table->addColumn("record", "boolean", array( 'notnull' => 0, 'default' => 0));
}
public function down(Schema $schema)
{
- $schema->dropTable('users');
+ $table = $schema->getTable("cc_show_instances");
+ $table->dropColumn("record");
}
}
diff --git a/install/DoctrineMigrations/migrations.xml b/install/DoctrineMigrations/migrations.xml
index bcadb0e1c..bab01e8a6 100644
--- a/install/DoctrineMigrations/migrations.xml
+++ b/install/DoctrineMigrations/migrations.xml
@@ -4,7 +4,7 @@
xsi:schemaLocation="http://doctrine-project.org/schemas/migrations/configuration
http://doctrine-project.org/schemas/migrations/configuration.xsd">
- Doctrine Sandbox Migrations
+ Airtime 1.7 Database UpgradeDoctrineMigrations
diff --git a/install/airtime-install.php b/install/airtime-install.php
index 68913f554..984928e74 100644
--- a/install/airtime-install.php
+++ b/install/airtime-install.php
@@ -15,141 +15,46 @@ if (isset($arr["DOCUMENT_ROOT"]) && ($arr["DOCUMENT_ROOT"] != "") ) {
exit(1);
}
-createAPIKey();
-
require_once(dirname(__FILE__).'/../application/configs/conf.php');
require_once(dirname(__FILE__).'/installInit.php');
-
-function rand_string($len=20, $chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789')
-{
- $string = '';
- for ($i = 0; $i < $len; $i++)
- {
- $pos = mt_rand(0, strlen($chars)-1);
- $string .= $chars{$pos};
- }
- return $string;
-}
-
-function createAPIKey(){
-
- $api_key = rand_string();
- updateINIKeyValues(__DIR__.'/../build/airtime.conf', 'api_key', $api_key);
- updateINIKeyValues(__DIR__.'/../pypo/config.cfg', 'api_key', "'$api_key'");
-}
-
-function checkIfRoot(){
- // Need to check that we are superuser before running this.
- if(exec("whoami") != "root"){
- echo "Must be root user.\n";
- exit(1);
- }
-}
-
-function updateINIKeyValues($filename, $property, $value){
- $lines = file($filename);
- $n=count($lines);
- for ($i=0; $i<$n; $i++) {
- if (strlen($lines[$i]) > strlen($property))
- if ($property == substr($lines[$i], 0, strlen($property))){
- $lines[$i] = "$property = $value\n";
- }
- }
-
- $fp=fopen($filename, 'w');
- for($i=0; $i<$n; $i++){
- fwrite($fp, $lines[$i]);
- }
- fclose($fp);
-}
-
-function directorySetup($CC_CONFIG){
- //------------------------------------------------------------------------
-// Install storage directories
-//------------------------------------------------------------------------
-echo " *** Directory Setup ***\n";
- foreach (array('baseFilesDir', 'storageDir') as $d) {
- $test = file_exists($CC_CONFIG[$d]);
- if ( $test === FALSE ) {
- @mkdir($CC_CONFIG[$d], 02775, true);
- if (file_exists($CC_CONFIG[$d])) {
- $rp = realpath($CC_CONFIG[$d]);
- echo " * Directory $rp created\n";
- } else {
- echo " * Failed creating {$CC_CONFIG[$d]}\n";
- exit(1);
- }
- } elseif (is_writable($CC_CONFIG[$d])) {
- $rp = realpath($CC_CONFIG[$d]);
- echo " * Skipping directory already exists: $rp\n";
- } else {
- $rp = realpath($CC_CONFIG[$d]);
- echo " * WARNING: Directory already exists, but is not writable: $rp\n";
- //exit(1);
- }
- $CC_CONFIG[$d] = $rp;
- }
-}
-
-
+echo "******************************** Install Begin *********************************".PHP_EOL;
checkIfRoot();
+createAPIKey();
updateINIKeyValues('../build/build.properties', 'project.home', realpath(__dir__.'/../'));
-echo "******************************** Install Begin *********************************\n";
-echo " *** Database Installation ***\n";
+echo PHP_EOL."*** Database Installation ***".PHP_EOL;
+
+echo "* Creating Airtime Database User".PHP_EOL;
+createAirtimeDatabaseUser();
+
+echo "* Creating Airtime Database".PHP_EOL;
+createAirtimeDatabase();
-// Create the database user
-$command = "sudo -u postgres psql postgres --command \"CREATE USER {$CC_CONFIG['dsn']['username']} "
- ." ENCRYPTED PASSWORD '{$CC_CONFIG['dsn']['password']}' LOGIN CREATEDB NOCREATEUSER;\" 2>/dev/null";
-//echo $command."\n";
-@exec($command, $output, $results);
-if ($results == 0) {
- echo " * User {$CC_CONFIG['dsn']['username']} created.\n";
-} else {
- echo " * User {$CC_CONFIG['dsn']['username']} already exists.\n";
-}
+airtime_db_connect(true);
-$command = "sudo -u postgres createdb {$CC_CONFIG['dsn']['database']} --owner {$CC_CONFIG['dsn']['username']} 2> /dev/null";
-//echo $command."\n";
-@exec($command, $output, $results);
-if ($results == 0) {
- echo " * Database '{$CC_CONFIG['dsn']['database']}' created.\n";
-} else {
- echo " * Database '{$CC_CONFIG['dsn']['database']}' already exists.\n";
-}
+echo "* Install Postgresql Scripting Language".PHP_EOL;
+installPostgresScriptingLanguage();
-// Connect to DB
-campcaster_db_connect(true);
+echo "* Creating Database Tables".PHP_EOL;
+createAirtimeDatabaseTables();
+doctrineMigrateTables(__DIR__);
-// Install postgres scripting language
-$langIsInstalled = $CC_DBC->GetOne('SELECT COUNT(*) FROM pg_language WHERE lanname = \'plpgsql\'');
-if ($langIsInstalled == '0') {
- echo " * Installing Postgres scripting language\n";
- $sql = "CREATE LANGUAGE 'plpgsql'";
- camp_install_query($sql, false);
-} else {
- echo " * Postgres scripting language already installed\n";
-}
+echo "* Storage Directory Setup".PHP_EOL;
+storageDirectorySetup($CC_CONFIG);
-echo " * Creating database tables\n";
-// Put Propel sql files in Database
-$command = __DIR__."/../library/propel/generator/bin/propel-gen ../build/ insert-sql 2>propel-error.log";
-@exec($command, $output, $results);
-
-directorySetup($CC_CONFIG);
-
-echo " * Setting dir permissions...\n";
+echo "* Setting Dir Permissions".PHP_EOL;
install_setDirPermissions($CC_CONFIG["storageDir"]);
-echo " * Importing sample audio clips \n";
-$command = __DIR__."/../utils/airtime-import --copy ../audio_samples/ > /dev/null";
-@exec($command, $output, $results);
+echo "* Importing Sample Audio Clips".PHP_EOL;
+system(__DIR__."/../utils/airtime-import --copy ../audio_samples/ > /dev/null");
-$command = "python ".__DIR__."/../pypo/install/pypo-install.py";
-system($command);
-echo "******************************* Install Complete *******************************\n";
+echo PHP_EOL."*** Pypo Installation ***".PHP_EOL;
+system("python ".__DIR__."/../pypo/install/pypo-install.py");
+
+
+echo "******************************* Install Complete *******************************".PHP_EOL;
diff --git a/install/airtime-uninstall.php b/install/airtime-uninstall.php
index 07c938538..5f425610d 100644
--- a/install/airtime-uninstall.php
+++ b/install/airtime-uninstall.php
@@ -10,35 +10,25 @@ $arr = array_diff_assoc($_SERVER, $_ENV);
if (isset($arr["DOCUMENT_ROOT"]) && ($arr["DOCUMENT_ROOT"] != "") ) {
header("HTTP/1.1 400");
header("Content-type: text/plain; charset=UTF-8");
- echo "400 Not executable\r\n";
+ echo "400 Not executable".PHP_EOL;
exit;
}
-// Need to check that we are superuser before running this.
-if(exec("whoami") != "root"){
- echo "Must be root user.\n";
- exit(1);
-}
-
-
-echo "******************************* Uninstall Begin ********************************\n";
-
require_once(dirname(__FILE__).'/../application/configs/conf.php');
require_once(dirname(__FILE__).'/installInit.php');
-function airtime_uninstall_delete_files($p_path)
-{
- $command = "rm -rf $p_path";
- exec($command);
-}
+// Need to check that we are superuser before running this.
+checkIfRoot();
+
+echo "******************************* Uninstall Begin ********************************".PHP_EOL;
//------------------------------------------------------------------------
// Delete the database
-// Note: Do not put a call to campcaster_db_connect()
+// Note: Do not put a call to airtime_db_connect()
// before this function, even if you called $CC_DBC->disconnect(), there will
// still be a connection to the database and you wont be able to delete it.
//------------------------------------------------------------------------
-echo " * Dropping the database '".$CC_CONFIG['dsn']['database']."'...\n";
+echo " * Dropping the database '".$CC_CONFIG['dsn']['database']."'...".PHP_EOL;
$command = "sudo -u postgres dropdb {$CC_CONFIG['dsn']['database']} 2> /dev/null";
@exec($command, $output, $dbDeleteFailed);
@@ -47,174 +37,38 @@ $command = "sudo -u postgres dropdb {$CC_CONFIG['dsn']['database']} 2> /dev/null
// We do this if dropping the database fails above.
//------------------------------------------------------------------------
if ($dbDeleteFailed) {
- echo " * Couldn't delete the database, so deleting all the DB tables...\n";
- campcaster_db_connect(true);
- if (!PEAR::isError($CC_DBC)) {
- if (camp_db_table_exists($CC_CONFIG['prefTable'])) {
- echo " * Removing database table ".$CC_CONFIG['prefTable']."...";
- $sql = "DROP TABLE ".$CC_CONFIG['prefTable'];
- camp_install_query($sql, false);
+ echo " * Couldn't delete the database, so deleting all the DB tables...".PHP_EOL;
+ airtime_db_connect(true);
- $CC_DBC->dropSequence($CC_CONFIG['prefTable']."_id");
- echo "done.\n";
- } else {
- echo " * Skipping: database table ".$CC_CONFIG['prefTable']."\n";
+ if (!PEAR::isError($CC_DBC)) {
+ $sql = "select * from pg_tables where tableowner = 'airtime'";
+ $rows = airtime_get_query($sql);
+
+ foreach ($rows as $row){
+ $tablename = $row["tablename"];
+ echo " * Removing database table $tablename...";
+
+ if (airtime_db_table_exists($tablename)){
+ $sql = "DROP TABLE $tablename CASCADE";
+ airtime_install_query($sql, false);
+
+ $CC_DBC->dropSequence($tablename."_id");
+ }
+ echo "done.".PHP_EOL;
}
}
-
- if (camp_db_table_exists($CC_CONFIG['transTable'])) {
- echo " * Removing database table ".$CC_CONFIG['transTable']."...";
- $sql = "DROP TABLE ".$CC_CONFIG['transTable'];
- camp_install_query($sql, false);
-
- $CC_DBC->dropSequence($CC_CONFIG['transTable']."_id");
- echo "done.\n";
- } else {
- echo " * Skipping: database table ".$CC_CONFIG['transTable']."\n";
- }
-
- if (camp_db_table_exists($CC_CONFIG['filesTable'])) {
- echo " * Removing database table ".$CC_CONFIG['filesTable']."...";
- $sql = "DROP TABLE ".$CC_CONFIG['filesTable']." CASCADE";
- camp_install_query($sql);
- $CC_DBC->dropSequence($CC_CONFIG['filesTable']."_id");
-
- } else {
- echo " * Skipping: database table ".$CC_CONFIG['filesTable']."\n";
- }
-
- if (camp_db_table_exists($CC_CONFIG['playListTable'])) {
- echo " * Removing database table ".$CC_CONFIG['playListTable']."...";
- $sql = "DROP TABLE ".$CC_CONFIG['playListTable']." CASCADE";
- camp_install_query($sql);
- $CC_DBC->dropSequence($CC_CONFIG['playListTable']."_id");
-
- } else {
- echo " * Skipping: database table ".$CC_CONFIG['playListTable']."\n";
- }
-
- if (camp_db_table_exists($CC_CONFIG['playListContentsTable'])) {
- echo " * Removing database table ".$CC_CONFIG['playListContentsTable']."...";
- $sql = "DROP TABLE ".$CC_CONFIG['playListContentsTable'];
- camp_install_query($sql);
- $CC_DBC->dropSequence($CC_CONFIG['playListContentsTable']."_id");
-
- } else {
- echo " * Skipping: database table ".$CC_CONFIG['playListContentsTable']."\n";
- }
-
- //if (camp_db_sequence_exists($CC_CONFIG['filesSequence'])) {
- // $sql = "DROP SEQUENCE ".$CC_CONFIG['filesSequence'];
- // camp_install_query($sql);
- //}
- //
- if (camp_db_table_exists($CC_CONFIG['accessTable'])) {
- echo " * Removing database table ".$CC_CONFIG['accessTable']."...";
- $sql = "DROP TABLE ".$CC_CONFIG['accessTable'];
- camp_install_query($sql);
- } else {
- echo " * Skipping: database table ".$CC_CONFIG['accessTable']."\n";
- }
-
- if (camp_db_table_exists($CC_CONFIG['permTable'])) {
- echo " * Removing database table ".$CC_CONFIG['permTable']."...";
- $sql = "DROP TABLE ".$CC_CONFIG['permTable'];
- camp_install_query($sql, false);
-
- $CC_DBC->dropSequence($CC_CONFIG['permTable']."_id");
- echo "done.\n";
- } else {
- echo " * Skipping: database table ".$CC_CONFIG['permTable']."\n";
- }
-
- if (camp_db_table_exists($CC_CONFIG['sessTable'])) {
- echo " * Removing database table ".$CC_CONFIG['sessTable']."...";
- $sql = "DROP TABLE ".$CC_CONFIG['sessTable'];
- camp_install_query($sql);
- } else {
- echo " * Skipping: database table ".$CC_CONFIG['sessTable']."\n";
- }
-
- if (camp_db_table_exists($CC_CONFIG['subjTable'])) {
- echo " * Removing database table ".$CC_CONFIG['subjTable']."...";
- $CC_DBC->dropSequence($CC_CONFIG['subjTable']."_id");
-
- $sql = "DROP TABLE ".$CC_CONFIG['subjTable']." CASCADE";
- camp_install_query($sql, false);
-
- echo "done.\n";
- } else {
- echo " * Skipping: database table ".$CC_CONFIG['subjTable']."\n";
- }
-
- if (camp_db_table_exists($CC_CONFIG['smembTable'])) {
- echo " * Removing database table ".$CC_CONFIG['smembTable']."...";
- $sql = "DROP TABLE ".$CC_CONFIG['smembTable'];
- camp_install_query($sql, false);
-
- $CC_DBC->dropSequence($CC_CONFIG['smembTable']."_id");
- echo "done.\n";
- } else {
- echo " * Skipping: database table ".$CC_CONFIG['smembTable']."\n";
- }
-
- if (camp_db_table_exists($CC_CONFIG['scheduleTable'])) {
- echo " * Removing database table ".$CC_CONFIG['scheduleTable']."...";
- camp_install_query("DROP TABLE ".$CC_CONFIG['scheduleTable']);
- } else {
- echo " * Skipping: database table ".$CC_CONFIG['scheduleTable']."\n";
- }
-
- if (camp_db_table_exists($CC_CONFIG['backupTable'])) {
- echo " * Removing database table ".$CC_CONFIG['backupTable']."...";
- camp_install_query("DROP TABLE ".$CC_CONFIG['backupTable']);
- } else {
- echo " * Skipping: database table ".$CC_CONFIG['backupTable']."\n";
- }
}
-
-//------------------------------------------------------------------------
-// Uninstall Cron job
-//------------------------------------------------------------------------
-/*
-$old_regex = '/transportCron\.php/';
-echo " * Uninstalling cron job...";
-
-$cron = new Cron();
-$access = $cron->openCrontab('write');
-if ($access != 'write') {
- do {
- $r = $cron->forceWriteable();
- } while ($r);
-}
-foreach ($cron->ct->getByType(CRON_CMD) as $id => $line) {
- if (preg_match($old_regex, $line['command'])) {
- //echo " removing cron entry\n";
- $cron->ct->delEntry($id);
- }
-}
-$cron->closeCrontab();
-echo "done.\n";
-*/
-
-
-//------------------------------------------------------------------------
-// Disconnect from the database
-//------------------------------------------------------------------------
-//echo " * Disconnecting from database...\n";
-//$CC_DBC->disconnect();
-
//------------------------------------------------------------------------
// Delete the user
//------------------------------------------------------------------------
-echo " * Deleting database user '{$CC_CONFIG['dsn']['username']}'...\n";
+echo " * Deleting database user '{$CC_CONFIG['dsn']['username']}'...".PHP_EOL;
$command = "sudo -u postgres psql postgres --command \"DROP USER {$CC_CONFIG['dsn']['username']}\" 2> /dev/null";
@exec($command, $output, $results);
if ($results == 0) {
- echo " * User '{$CC_CONFIG['dsn']['username']}' deleted.\n";
+ echo " * User '{$CC_CONFIG['dsn']['username']}' deleted.".PHP_EOL;
} else {
- echo " * Nothing to delete..\n";
+ echo " * Nothing to delete..".PHP_EOL;
}
@@ -226,5 +80,5 @@ airtime_uninstall_delete_files($CC_CONFIG['storageDir']);
$command = "python ".__DIR__."/../pypo/install/pypo-uninstall.py";
system($command);
-echo "****************************** Uninstall Complete ******************************\n";
+echo "****************************** Uninstall Complete ******************************".PHP_EOL;
diff --git a/install/airtime-upgrade.php b/install/airtime-upgrade.php
index 707cd30e3..ebb84a970 100644
--- a/install/airtime-upgrade.php
+++ b/install/airtime-upgrade.php
@@ -1,7 +1,33 @@
GetOne($sql);
- if (!PEAR::isError($result) && $result == "1") {
- return true;
+ $result = $CC_DBC->GetAll($sql);
+ if (PEAR::isError($result)) {
+ return array();
}
- return false;
+ return $result;
}
-function camp_install_query($sql, $verbose = true)
+function airtime_install_query($sql, $verbose = true)
{
global $CC_DBC;
$result = $CC_DBC->query($sql);
@@ -43,20 +43,20 @@ function camp_install_query($sql, $verbose = true)
}
}
-function campcaster_db_connect($p_exitOnError = true) {
+function airtime_db_connect($p_exitOnError = true) {
global $CC_DBC, $CC_CONFIG;
$CC_DBC = DB::connect($CC_CONFIG['dsn'], TRUE);
if (PEAR::isError($CC_DBC)) {
- echo $CC_DBC->getMessage()."\n";
- echo $CC_DBC->getUserInfo()."\n";
- echo "Database connection problem.\n";
+ echo $CC_DBC->getMessage().PHP_EOL;
+ echo $CC_DBC->getUserInfo().PHP_EOL;
+ echo "Database connection problem.".PHP_EOL;
echo "Check if database '{$CC_CONFIG['dsn']['database']}' exists".
- " with corresponding permissions.\n";
+ " with corresponding permissions.".PHP_EOL;
if ($p_exitOnError) {
exit(1);
}
} else {
- echo " * Connected to database\n";
+ echo "* Connected to database".PHP_EOL;
$CC_DBC->setFetchMode(DB_FETCHMODE_ASSOC);
}
}
@@ -68,20 +68,129 @@ function install_setDirPermissions($filePath) {
$fileperms = $fileperms | 0x0010; // group write bit
$fileperms = $fileperms | 0x0400; // group sticky bit
chmod($filePath, $fileperms);
+}
-// // Verify Smarty template dir permissions
-// $fileGroup = filegroup($CC_CONFIG["smartyTemplateCompiled"]);
-// $groupOwner = (function_exists('posix_getgrgid'))?@posix_getgrgid($fileGroup):'';
-// if (!empty($groupOwner) && ($groupOwner["name"] != $CC_CONFIG["webServerUser"])) {
-// echo " * Error: Your directory permissions for {$filePath} are not set correctly. \n";
-// echo " * The group perms need to be set to the web server user, in this case '{$CC_CONFIG['webServerUser']}'. \n";
-// echo " * Currently the group is set to be '{$groupOwner['name']}'. \n";
-// exit(1);
-// }
-// if (!($fileperms & 0x0400)) {
-// echo " * Error: Sticky bit not set for {$filePath}. \n";
-// exit(1);
-// }
+function rand_string($len=20, $chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789')
+{
+ $string = '';
+ for ($i = 0; $i < $len; $i++)
+ {
+ $pos = mt_rand(0, strlen($chars)-1);
+ $string .= $chars{$pos};
+ }
+ return $string;
+}
+
+function createAPIKey(){
+
+ $api_key = rand_string();
+ updateINIKeyValues(__DIR__.'/../build/airtime.conf', 'api_key', $api_key);
+ updateINIKeyValues(__DIR__.'/../pypo/config.cfg', 'api_key', "'$api_key'");
+}
+
+function checkIfRoot(){
+ // Need to check that we are superuser before running this.
+ if(exec("whoami") != "root"){
+ echo "Must be root user.\n";
+ exit(1);
+ }
+}
+
+function updateINIKeyValues($filename, $property, $value){
+ $lines = file($filename);
+ $n=count($lines);
+ for ($i=0; $i<$n; $i++) {
+ if (strlen($lines[$i]) > strlen($property))
+ if ($property == substr($lines[$i], 0, strlen($property))){
+ $lines[$i] = "$property = $value\n";
+ }
+ }
+
+ $fp=fopen($filename, 'w');
+ for($i=0; $i<$n; $i++){
+ fwrite($fp, $lines[$i]);
+ }
+ fclose($fp);
+}
+
+function storageDirectorySetup($CC_CONFIG){
+ global $CC_CONFIG, $CC_DBC;
+
+ echo PHP_EOL."*** Directory Setup ***".PHP_EOL;
+ foreach (array('baseFilesDir', 'storageDir') as $d) {
+ if ( !file_exists($CC_CONFIG[$d]) ) {
+ @mkdir($CC_CONFIG[$d], 02775, true);
+ if (file_exists($CC_CONFIG[$d])) {
+ $rp = realpath($CC_CONFIG[$d]);
+ echo "* Directory $rp created".PHP_EOL;
+ } else {
+ echo "* Failed creating {$CC_CONFIG[$d]}".PHP_EOL;
+ exit(1);
+ }
+ } elseif (is_writable($CC_CONFIG[$d])) {
+ $rp = realpath($CC_CONFIG[$d]);
+ echo "* Skipping directory already exists: $rp".PHP_EOL;
+ } else {
+ $rp = realpath($CC_CONFIG[$d]);
+ echo "* WARNING: Directory already exists, but is not writable: $rp".PHP_EOL;
+ }
+ $CC_CONFIG[$d] = $rp;
+ }
+}
+
+function createAirtimeDatabaseUser(){
+ global $CC_CONFIG;
+ // Create the database user
+ $command = "sudo -u postgres psql postgres --command \"CREATE USER {$CC_CONFIG['dsn']['username']} "
+ ." ENCRYPTED PASSWORD '{$CC_CONFIG['dsn']['password']}' LOGIN CREATEDB NOCREATEUSER;\" 2>/dev/null";
+
+ @exec($command, $output, $results);
+ if ($results == 0) {
+ echo "* User {$CC_CONFIG['dsn']['username']} created.".PHP_EOL;
+ } else {
+ echo "* User {$CC_CONFIG['dsn']['username']} already exists.".PHP_EOL;
+ }
+}
+
+function createAirtimeDatabase(){
+ global $CC_CONFIG;
+
+ $command = "sudo -u postgres createdb {$CC_CONFIG['dsn']['database']} --owner {$CC_CONFIG['dsn']['username']} 2> /dev/null";
+ @exec($command, $output, $results);
+ if ($results == 0) {
+ echo "* Database '{$CC_CONFIG['dsn']['database']}' created.".PHP_EOL;
+ } else {
+ echo "* Database '{$CC_CONFIG['dsn']['database']}' already exists.".PHP_EOL;
+ }
+}
+
+function installPostgresScriptingLanguage(){
+ global $CC_DBC;
+ // Install postgres scripting language
+ $langIsInstalled = $CC_DBC->GetOne('SELECT COUNT(*) FROM pg_language WHERE lanname = \'plpgsql\'');
+ if ($langIsInstalled == '0') {
+ echo "* Installing Postgres scripting language".PHP_EOL;
+ $sql = "CREATE LANGUAGE 'plpgsql'";
+ airtime_install_query($sql, false);
+ } else {
+ echo "* Postgres scripting language already installed".PHP_EOL;
+ }
}
+function createAirtimeDatabaseTables(){
+ // Put Propel sql files in Database
+ $command = __DIR__."/../library/propel/generator/bin/propel-gen ../build/ insert-sql 2>propel-error.log";
+ @exec($command, $output, $results);
+}
+
+function doctrineMigrateTables($dir){
+ $command = "php $dir/../library/doctrine/migrations/doctrine-migrations.phar --configuration=$dir/DoctrineMigrations/migrations.xml --db-configuration=$dir/../library/doctrine/migrations/migrations-db.php --no-interaction migrations:migrate";
+ system($command);
+}
+
+function airtime_uninstall_delete_files($p_path)
+{
+ $command = "rm -rf $p_path";
+ exec($command);
+}
diff --git a/library/ecasound-2.7.2/Documentation/Makefile b/library/ecasound-2.7.2/Documentation/Makefile
deleted file mode 100644
index 075ec298c..000000000
--- a/library/ecasound-2.7.2/Documentation/Makefile
+++ /dev/null
@@ -1,662 +0,0 @@
-# Makefile.in generated by automake 1.9.6 from Makefile.am.
-# Documentation/Makefile. Generated from Makefile.in by configure.
-
-# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
-# 2003, 2004, 2005 Free Software Foundation, Inc.
-# This Makefile.in is free software; the Free Software Foundation
-# gives unlimited permission to copy and/or distribute it,
-# with or without modifications, as long as this notice is preserved.
-
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
-# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
-# PARTICULAR PURPOSE.
-
-
-
-# ----------------------------------------------------------------------
-# File: ecasound/Documentation/Makefile.am
-# Description: Ecasound documentation files
-# License: GPL (see ecasound/{AUTHORS,COPYING})
-# ----------------------------------------------------------------------
-srcdir = .
-top_srcdir = ..
-
-pkgdatadir = $(datadir)/ecasound
-pkglibdir = $(libdir)/ecasound
-pkgincludedir = $(includedir)/ecasound
-top_builddir = ..
-am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
-INSTALL = /usr/bin/install -c
-install_sh_DATA = $(install_sh) -c -m 644
-install_sh_PROGRAM = $(install_sh) -c
-install_sh_SCRIPT = $(install_sh) -c
-INSTALL_HEADER = $(INSTALL_DATA)
-transform = $(program_transform_name)
-NORMAL_INSTALL = :
-PRE_INSTALL = :
-POST_INSTALL = :
-NORMAL_UNINSTALL = :
-PRE_UNINSTALL = :
-POST_UNINSTALL = :
-build_triplet = x86_64-unknown-linux-gnu
-host_triplet = x86_64-unknown-linux-gnu
-subdir = Documentation
-DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
-am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
- $(top_srcdir)/configure.in
-am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
- $(ACLOCAL_M4)
-mkinstalldirs = $(install_sh) -d
-CONFIG_HEADER = $(top_builddir)/config.h
-CONFIG_CLEAN_FILES =
-SOURCES =
-DIST_SOURCES =
-RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
- html-recursive info-recursive install-data-recursive \
- install-exec-recursive install-info-recursive \
- install-recursive installcheck-recursive installdirs-recursive \
- pdf-recursive ps-recursive uninstall-info-recursive \
- uninstall-recursive
-ETAGS = etags
-CTAGS = ctags
-DIST_SUBDIRS = $(SUBDIRS)
-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run aclocal-1.9
-AMDEP_FALSE = #
-AMDEP_TRUE =
-AMTAR = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run tar
-AM_CFLAGS = -ffast-math -fstrict-aliasing -DNDEBUG -DENABLE_DBC
-AM_CPPFLAGS = -D_REENTRANT -D_XOPEN_SOURCE=500
-AM_CXXFLAGS = -ffast-math -fstrict-aliasing -DNDEBUG -DENABLE_DBC
-AM_LDFLAGS =
-AR = ar
-ARTSC_CONFIG = none
-AUTOCONF = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run autoconf
-AUTOHEADER = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run autoheader
-AUTOMAKE = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run automake-1.9
-AWK = gawk
-CC = gcc
-CCDEPMODE = depmode=gcc3
-CFLAGS = -g -O2
-CPP = gcc -E
-CPPFLAGS =
-CXX = g++
-CXXCPP = g++ -E
-CXXDEPMODE = depmode=gcc3
-CXXFLAGS = -g -O2
-CYGPATH_W = echo
-DEFS = -DHAVE_CONFIG_H
-DEPDIR = .deps
-DSYMUTIL =
-ECA_AM_ALL_STATIC_FALSE =
-ECA_AM_ALL_STATIC_TRUE = #
-ECA_AM_COMPILE_ALSA_FALSE = #
-ECA_AM_COMPILE_ALSA_TRUE =
-ECA_AM_COMPILE_ARTS_FALSE =
-ECA_AM_COMPILE_ARTS_TRUE = #
-ECA_AM_COMPILE_AUDIOFILE_FALSE = #
-ECA_AM_COMPILE_AUDIOFILE_TRUE =
-ECA_AM_COMPILE_JACK_FALSE =
-ECA_AM_COMPILE_JACK_TRUE = #
-ECA_AM_COMPILE_OSS_FALSE = #
-ECA_AM_COMPILE_OSS_TRUE =
-ECA_AM_COMPILE_SAMPLERATE_FALSE = #
-ECA_AM_COMPILE_SAMPLERATE_TRUE =
-ECA_AM_COMPILE_SNDFILE_FALSE = #
-ECA_AM_COMPILE_SNDFILE_TRUE =
-ECA_AM_DEBUG_MODE_FALSE =
-ECA_AM_DEBUG_MODE_TRUE = #
-ECA_AM_DISABLE_EFFECTS_FALSE =
-ECA_AM_DISABLE_EFFECTS_TRUE = #
-ECA_AM_FEELING_EXPERIMENTAL_FALSE =
-ECA_AM_FEELING_EXPERIMENTAL_TRUE = #
-ECA_AM_KVUTILS_INSTALLED_FALSE = #
-ECA_AM_KVUTILS_INSTALLED_TRUE =
-ECA_AM_PYECASOUND_CEXT_FALSE =
-ECA_AM_PYECASOUND_CEXT_TRUE = #
-ECA_AM_PYECASOUND_INSTALL_FALSE = #
-ECA_AM_PYECASOUND_INSTALL_TRUE =
-ECA_AM_RUBYECASOUND_INSTALL_FALSE =
-ECA_AM_RUBYECASOUND_INSTALL_TRUE = #
-ECA_AM_SYSTEM_READLINE_FALSE = #
-ECA_AM_SYSTEM_READLINE_TRUE =
-ECA_AM_USE_NCURSES_FALSE = #
-ECA_AM_USE_NCURSES_TRUE =
-ECA_AM_USE_TERMCAP_FALSE =
-ECA_AM_USE_TERMCAP_TRUE = #
-ECA_S_EXTRA_CPPFLAGS =
-ECA_S_EXTRA_LIBS = -lsamplerate -laudiofile -lsndfile -lasound
-ECA_S_JACK_INCLUDES =
-ECA_S_JACK_LIBS =
-ECA_S_PREFIX = /usr/local
-ECA_S_PYTHON_DLMODULES = /usr/lib/python2.6/lib-dynload
-ECA_S_PYTHON_INCLUDES =
-ECA_S_PYTHON_MODULES = /usr/lib/python2.6
-ECA_S_READLINE_INCLUDES = /usr/include/readline
-ECA_S_READLINE_LIBS = -lreadline -lhistory
-ECA_S_RUBY_SITEDIR =
-ECHO = echo
-ECHO_C =
-ECHO_N = -n
-ECHO_T =
-EGREP = /bin/grep -E
-EXEEXT =
-F77 =
-FFLAGS =
-GREP = /bin/grep
-INSTALL_DATA = ${INSTALL} -m 644
-INSTALL_PROGRAM = ${INSTALL}
-INSTALL_SCRIPT = ${INSTALL}
-INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s
-LDFLAGS =
-LIBECASOUNDC_VERSION = 2
-LIBECASOUNDC_VERSION_AGE = 1
-LIBECASOUND_VERSION = 22
-LIBECASOUND_VERSION_AGE = 0
-LIBKVUTILS_VERSION = 9
-LIBKVUTILS_VERSION_AGE = 5
-LIBLO_CFLAGS =
-LIBLO_LIBS =
-LIBOBJS =
-LIBOIL_CFLAGS =
-LIBOIL_LIBS =
-LIBS = -ldl -lm -lrt -lpthread
-LIBTOOL = $(SHELL) $(top_builddir)/libtool
-LN_S = ln -s
-LTLIBOBJS =
-MAKEINFO = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run makeinfo
-NMEDIT =
-OBJEXT = o
-PACKAGE = ecasound
-PACKAGE_BUGREPORT =
-PACKAGE_NAME = ecasound
-PACKAGE_STRING = ecasound 2.7.2
-PACKAGE_TARNAME = ecasound
-PACKAGE_VERSION = 2.7.2
-PATH_SEPARATOR = :
-PKG_CONFIG = /usr/bin/pkg-config
-PYTHONPATH = /usr/bin/python
-RANLIB = ranlib
-RUBYPATH = none
-SED = /bin/sed
-SET_MAKE =
-SHELL = /bin/bash
-STRIP = strip
-VERSION = 2.7.2
-ac_ct_CC = gcc
-ac_ct_CXX = g++
-ac_ct_F77 =
-am__fastdepCC_FALSE = #
-am__fastdepCC_TRUE =
-am__fastdepCXX_FALSE = #
-am__fastdepCXX_TRUE =
-am__include = include
-am__leading_dot = .
-am__quote =
-am__tar = ${AMTAR} chof - "$$tardir"
-am__untar = ${AMTAR} xf -
-bindir = ${exec_prefix}/bin
-build = x86_64-unknown-linux-gnu
-build_alias =
-build_cpu = x86_64
-build_os = linux-gnu
-build_vendor = unknown
-datadir = ${datarootdir}
-datarootdir = ${prefix}/share
-docdir = ${datarootdir}/doc/${PACKAGE_TARNAME}
-dvidir = ${docdir}
-exec_prefix = ${prefix}
-host = x86_64-unknown-linux-gnu
-host_alias =
-host_cpu = x86_64
-host_os = linux-gnu
-host_vendor = unknown
-htmldir = ${docdir}
-includedir = ${prefix}/include
-infodir = ${datarootdir}/info
-install_sh = /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/install-sh
-libdir = ${exec_prefix}/lib
-libexecdir = ${exec_prefix}/libexec
-localedir = ${datarootdir}/locale
-localstatedir = ${prefix}/var
-mandir = ${datarootdir}/man
-mkdir_p = mkdir -p --
-oldincludedir = /usr/include
-pdfdir = ${docdir}
-prefix = /usr/local
-program_transform_name = s,x,x,
-psdir = ${docdir}
-sbindir = ${exec_prefix}/sbin
-sharedstatedir = ${prefix}/com
-sysconfdir = ${prefix}/etc
-target_alias =
-SUBDIRS = users_guide programmers_guide
-
-# ---------------------------------------------------------------------
-# Files going into distribution:
-man1_pages_to_install = \
- ecasound.1 \
- ecasound-iam.1 \
- ecatools.1 \
- ecaconvert.1 \
- ecafixdc.1 \
- ecalength.1 \
- ecaplay.1 \
- ecamonitor.1 \
- ecanormalize.1 \
- ecasignalview.1
-
-man5_pages_to_install = \
- ecasoundrc.5
-
-html_man_pages = \
- ecasound_manpage.html \
- ecasoundrc_manpage.html \
- ecatools_manpage.html \
- ecalength_manpage.html \
- ecasound-iam_manpage.html
-
-EXTRA_DIST = $(man1_pages_to_install) \
- $(man5_pages_to_install) \
- $(html_man_pages)
-
-all: all-recursive
-
-.SUFFIXES:
-$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
- @for dep in $?; do \
- case '$(am__configure_deps)' in \
- *$$dep*) \
- cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
- && exit 0; \
- exit 1;; \
- esac; \
- done; \
- echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Documentation/Makefile'; \
- cd $(top_srcdir) && \
- $(AUTOMAKE) --foreign Documentation/Makefile
-.PRECIOUS: Makefile
-Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
- @case '$?' in \
- *config.status*) \
- cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
- *) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
- esac;
-
-$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
- cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
-
-$(top_srcdir)/configure: $(am__configure_deps)
- cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
-$(ACLOCAL_M4): $(am__aclocal_m4_deps)
- cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
-
-mostlyclean-libtool:
- -rm -f *.lo
-
-clean-libtool:
- -rm -rf .libs _libs
-
-distclean-libtool:
- -rm -f libtool
-uninstall-info-am:
-
-# This directory's subdirectories are mostly independent; you can cd
-# into them and run `make' without going through this Makefile.
-# To change the values of `make' variables: instead of editing Makefiles,
-# (1) if the variable is set in `config.status', edit `config.status'
-# (which will cause the Makefiles to be regenerated when you run `make');
-# (2) otherwise, pass the desired values on the `make' command line.
-$(RECURSIVE_TARGETS):
- @failcom='exit 1'; \
- for f in x $$MAKEFLAGS; do \
- case $$f in \
- *=* | --[!k]*);; \
- *k*) failcom='fail=yes';; \
- esac; \
- done; \
- dot_seen=no; \
- target=`echo $@ | sed s/-recursive//`; \
- list='$(SUBDIRS)'; for subdir in $$list; do \
- echo "Making $$target in $$subdir"; \
- if test "$$subdir" = "."; then \
- dot_seen=yes; \
- local_target="$$target-am"; \
- else \
- local_target="$$target"; \
- fi; \
- (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
- || eval $$failcom; \
- done; \
- if test "$$dot_seen" = "no"; then \
- $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
- fi; test -z "$$fail"
-
-mostlyclean-recursive clean-recursive distclean-recursive \
-maintainer-clean-recursive:
- @failcom='exit 1'; \
- for f in x $$MAKEFLAGS; do \
- case $$f in \
- *=* | --[!k]*);; \
- *k*) failcom='fail=yes';; \
- esac; \
- done; \
- dot_seen=no; \
- case "$@" in \
- distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
- *) list='$(SUBDIRS)' ;; \
- esac; \
- rev=''; for subdir in $$list; do \
- if test "$$subdir" = "."; then :; else \
- rev="$$subdir $$rev"; \
- fi; \
- done; \
- rev="$$rev ."; \
- target=`echo $@ | sed s/-recursive//`; \
- for subdir in $$rev; do \
- echo "Making $$target in $$subdir"; \
- if test "$$subdir" = "."; then \
- local_target="$$target-am"; \
- else \
- local_target="$$target"; \
- fi; \
- (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
- || eval $$failcom; \
- done && test -z "$$fail"
-tags-recursive:
- list='$(SUBDIRS)'; for subdir in $$list; do \
- test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
- done
-ctags-recursive:
- list='$(SUBDIRS)'; for subdir in $$list; do \
- test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
- done
-
-ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
- list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
- unique=`for i in $$list; do \
- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- done | \
- $(AWK) ' { files[$$0] = 1; } \
- END { for (i in files) print i; }'`; \
- mkid -fID $$unique
-tags: TAGS
-
-TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
- $(TAGS_FILES) $(LISP)
- tags=; \
- here=`pwd`; \
- if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
- include_option=--etags-include; \
- empty_fix=.; \
- else \
- include_option=--include; \
- empty_fix=; \
- fi; \
- list='$(SUBDIRS)'; for subdir in $$list; do \
- if test "$$subdir" = .; then :; else \
- test ! -f $$subdir/TAGS || \
- tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \
- fi; \
- done; \
- list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
- unique=`for i in $$list; do \
- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- done | \
- $(AWK) ' { files[$$0] = 1; } \
- END { for (i in files) print i; }'`; \
- if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
- test -n "$$unique" || unique=$$empty_fix; \
- $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
- $$tags $$unique; \
- fi
-ctags: CTAGS
-CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
- $(TAGS_FILES) $(LISP)
- tags=; \
- here=`pwd`; \
- list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
- unique=`for i in $$list; do \
- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- done | \
- $(AWK) ' { files[$$0] = 1; } \
- END { for (i in files) print i; }'`; \
- test -z "$(CTAGS_ARGS)$$tags$$unique" \
- || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
- $$tags $$unique
-
-GTAGS:
- here=`$(am__cd) $(top_builddir) && pwd` \
- && cd $(top_srcdir) \
- && gtags -i $(GTAGS_ARGS) $$here
-
-distclean-tags:
- -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-
-distdir: $(DISTFILES)
- @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
- list='$(DISTFILES)'; for file in $$list; do \
- case $$file in \
- $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
- $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
- esac; \
- if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
- dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
- if test "$$dir" != "$$file" && test "$$dir" != "."; then \
- dir="/$$dir"; \
- $(mkdir_p) "$(distdir)$$dir"; \
- else \
- dir=''; \
- fi; \
- if test -d $$d/$$file; then \
- if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
- cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
- fi; \
- cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
- else \
- test -f $(distdir)/$$file \
- || cp -p $$d/$$file $(distdir)/$$file \
- || exit 1; \
- fi; \
- done
- list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
- if test "$$subdir" = .; then :; else \
- test -d "$(distdir)/$$subdir" \
- || $(mkdir_p) "$(distdir)/$$subdir" \
- || exit 1; \
- distdir=`$(am__cd) $(distdir) && pwd`; \
- top_distdir=`$(am__cd) $(top_distdir) && pwd`; \
- (cd $$subdir && \
- $(MAKE) $(AM_MAKEFLAGS) \
- top_distdir="$$top_distdir" \
- distdir="$$distdir/$$subdir" \
- distdir) \
- || exit 1; \
- fi; \
- done
-check-am: all-am
-check: check-recursive
-all-am: Makefile
-installdirs: installdirs-recursive
-installdirs-am:
-install: install-recursive
-install-exec: install-exec-recursive
-install-data: install-data-recursive
-uninstall: uninstall-recursive
-
-install-am: all-am
- @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
-
-installcheck: installcheck-recursive
-install-strip:
- $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
- install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
- `test -z '$(STRIP)' || \
- echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
-mostlyclean-generic:
-
-clean-generic:
-
-distclean-generic:
- -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
-
-maintainer-clean-generic:
- @echo "This command is intended for maintainers to use"
- @echo "it deletes files that may require special tools to rebuild."
-clean-am: clean-generic clean-libtool mostlyclean-am
-
-distclean: distclean-recursive
- -rm -f Makefile
-distclean-am: clean-am distclean-generic distclean-libtool \
- distclean-tags
-
-dvi: dvi-recursive
-
-dvi-am:
-
-html: html-recursive
-
-info: info-recursive
-
-info-am:
-
-install-data-am: install-data-local
-
-install-exec-am:
-
-install-info: install-info-recursive
-
-install-man:
-
-installcheck-am:
-
-maintainer-clean: maintainer-clean-recursive
- -rm -f Makefile
-maintainer-clean-am: distclean-am maintainer-clean-generic
-
-mostlyclean: mostlyclean-recursive
-
-mostlyclean-am: mostlyclean-generic mostlyclean-libtool
-
-pdf: pdf-recursive
-
-pdf-am:
-
-ps: ps-recursive
-
-ps-am:
-
-uninstall-am: uninstall-info-am uninstall-local
-
-uninstall-info: uninstall-info-recursive
-
-.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am \
- clean clean-generic clean-libtool clean-recursive ctags \
- ctags-recursive distclean distclean-generic distclean-libtool \
- distclean-recursive distclean-tags distdir dvi dvi-am html \
- html-am info info-am install install-am install-data \
- install-data-am install-data-local install-exec \
- install-exec-am install-info install-info-am install-man \
- install-strip installcheck installcheck-am installdirs \
- installdirs-am maintainer-clean maintainer-clean-generic \
- maintainer-clean-recursive mostlyclean mostlyclean-generic \
- mostlyclean-libtool mostlyclean-recursive pdf pdf-am ps ps-am \
- tags tags-recursive uninstall uninstall-am uninstall-info-am \
- uninstall-local
-
- $(srcdir)/ecasound_manpage.yo \
- $(srcdir)/ecasoundrc_manpage.yo \
- $(srcdir)/ecasound-iam_manpage.yo \
- $(srcdir)/ecatools_manpage.yo \
- $(srcdir)/ecalength_manpage.yo \
- $(srcdir)/index.html \
- $(srcdir)/examples.html \
- $(srcdir)/manpages.html \
- $(srcdir)/tutorials.html \
- $(srcdir)/style_ecasound.css \
- $(srcdir)/ecasound_osc_interface.txt
-
-# ---------------------------------------------------------------------
-# local targets for generating docs from latex and yodl sources
-
-all:
-
-docs: docs-guides docs-manpages
-
-docs-guides:
- cd programmers_guide; $(MAKE) $(AM_MAKEFLAGS) docs
- cd users_guide; $(MAKE) $(AM_MAKEFLAGS) docs
-
-docs-manpages: $(man1_pages_to_install) \
- $(man5_pages_to_install) \
- $(html_man_pages)
-
-# ---------------------------------------------------------------------
-# Man pages
-
-# following are copies of ecatools.1
-ecaconvert.1: ecatools.1
- cp ecatools.1 ecaconvert.1
-ecafixdc.1: ecatools.1
- cp ecatools.1 ecafixdc.1
-ecamonitor.1: ecatools.1
- cp -v ecatools.1 ecamonitor.1
-ecanormalize.1: ecatools.1
- cp -v ecatools.1 ecanormalize.1
-ecaplay.1: ecatools.1
- cp -v ecatools.1 ecaplay.1
-ecasignalview.1: ecatools.1
- cp -v ecatools.1 ecasignalview.1
-
-%.1: $(srcdir)/%_manpage.yo
- yodl2man -o $@ $<
-
-%.5: $(srcdir)/%_manpage.yo
- yodl2man -o $@ $<
-
-%.html: $(srcdir)/%.yo
- yodl2html -o $@ $<
-
-# ---------------------------------------------------------------------
-# doxygen (target removed 2009/Feb)
-#doxygen:
-# doxygen doxygen_libkvutils_config
-# doxygen doxygen_libecasound_config
-
-# ---------------------------------------------------------------------
-# Clean targets
-
-clean:
-
-clean-docs: clean-manpages clean-guides
-
-clean-guides:
- cd programmers_guide; $(MAKE) $(AM_MAKEFLAGS) clean-docs
- cd users_guide; $(MAKE) $(AM_MAKEFLAGS) clean-docs
-
-clean-manpages:
- rm -f $(man1_pages_to_install) \
- $(man5_pages_to_install) \
- $(html_man_pages)
-
-# ---------------------------------------------------------------------
-# Install targets
-install-data-local:
- mkdir -p $(DESTDIR)$(mandir)/man1
- mkdir -p $(DESTDIR)$(mandir)/man5
- for f in $(man1_pages_to_install) ; do if test -f $$f ; then cp -v $$f $(DESTDIR)$(mandir)/man1/; fi ; done
- for f in $(man5_pages_to_install) ; do if test -f $$f ; then cp -v $$f $(DESTDIR)$(mandir)/man5/; fi ; done
-
-# ---------------------------------------------------------------------
-# Uninstall targets
-uninstall-local:
- for f in $(man1_pages_to_install) ; do if test -f $$f ; then rm -vf $(DESTDIR)$(mandir)/man1/$$f ; fi ; done
- for f in $(man5_pages_to_install) ; do if test -f $$f ; then rm -vf $(DESTDIR)$(mandir)/man5/$$f ; fi ; done
-# Tell versions [3.59,3.63) of GNU make to not export all variables.
-# Otherwise a system limit (for SysV at least) may be exceeded.
-.NOEXPORT:
diff --git a/library/ecasound-2.7.2/Documentation/programmers_guide/Makefile b/library/ecasound-2.7.2/Documentation/programmers_guide/Makefile
deleted file mode 100644
index 49f52d668..000000000
--- a/library/ecasound-2.7.2/Documentation/programmers_guide/Makefile
+++ /dev/null
@@ -1,435 +0,0 @@
-# Makefile.in generated by automake 1.9.6 from Makefile.am.
-# Documentation/programmers_guide/Makefile. Generated from Makefile.in by configure.
-
-# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
-# 2003, 2004, 2005 Free Software Foundation, Inc.
-# This Makefile.in is free software; the Free Software Foundation
-# gives unlimited permission to copy and/or distribute it,
-# with or without modifications, as long as this notice is preserved.
-
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
-# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
-# PARTICULAR PURPOSE.
-
-
-
-# ----------------------------------------------------------------------
-# File: ecasound/Documentation/programmers_guide/Makefile.am
-# Description: Ecasound documentation - programmer's guide
-# License: GPL (see ecasound/{AUTHORS,COPYING})
-# ----------------------------------------------------------------------
-srcdir = .
-top_srcdir = ../..
-
-pkgdatadir = $(datadir)/ecasound
-pkglibdir = $(libdir)/ecasound
-pkgincludedir = $(includedir)/ecasound
-top_builddir = ../..
-am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
-INSTALL = /usr/bin/install -c
-install_sh_DATA = $(install_sh) -c -m 644
-install_sh_PROGRAM = $(install_sh) -c
-install_sh_SCRIPT = $(install_sh) -c
-INSTALL_HEADER = $(INSTALL_DATA)
-transform = $(program_transform_name)
-NORMAL_INSTALL = :
-PRE_INSTALL = :
-POST_INSTALL = :
-NORMAL_UNINSTALL = :
-PRE_UNINSTALL = :
-POST_UNINSTALL = :
-build_triplet = x86_64-unknown-linux-gnu
-host_triplet = x86_64-unknown-linux-gnu
-subdir = Documentation/programmers_guide
-DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
-am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
- $(top_srcdir)/configure.in
-am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
- $(ACLOCAL_M4)
-mkinstalldirs = $(install_sh) -d
-CONFIG_HEADER = $(top_builddir)/config.h
-CONFIG_CLEAN_FILES =
-SOURCES =
-DIST_SOURCES =
-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run aclocal-1.9
-AMDEP_FALSE = #
-AMDEP_TRUE =
-AMTAR = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run tar
-AM_CFLAGS = -ffast-math -fstrict-aliasing -DNDEBUG -DENABLE_DBC
-AM_CPPFLAGS = -D_REENTRANT -D_XOPEN_SOURCE=500
-AM_CXXFLAGS = -ffast-math -fstrict-aliasing -DNDEBUG -DENABLE_DBC
-AM_LDFLAGS =
-AR = ar
-ARTSC_CONFIG = none
-AUTOCONF = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run autoconf
-AUTOHEADER = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run autoheader
-AUTOMAKE = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run automake-1.9
-AWK = gawk
-CC = gcc
-CCDEPMODE = depmode=gcc3
-CFLAGS = -g -O2
-CPP = gcc -E
-CPPFLAGS =
-CXX = g++
-CXXCPP = g++ -E
-CXXDEPMODE = depmode=gcc3
-CXXFLAGS = -g -O2
-CYGPATH_W = echo
-DEFS = -DHAVE_CONFIG_H
-DEPDIR = .deps
-DSYMUTIL =
-ECA_AM_ALL_STATIC_FALSE =
-ECA_AM_ALL_STATIC_TRUE = #
-ECA_AM_COMPILE_ALSA_FALSE = #
-ECA_AM_COMPILE_ALSA_TRUE =
-ECA_AM_COMPILE_ARTS_FALSE =
-ECA_AM_COMPILE_ARTS_TRUE = #
-ECA_AM_COMPILE_AUDIOFILE_FALSE = #
-ECA_AM_COMPILE_AUDIOFILE_TRUE =
-ECA_AM_COMPILE_JACK_FALSE =
-ECA_AM_COMPILE_JACK_TRUE = #
-ECA_AM_COMPILE_OSS_FALSE = #
-ECA_AM_COMPILE_OSS_TRUE =
-ECA_AM_COMPILE_SAMPLERATE_FALSE = #
-ECA_AM_COMPILE_SAMPLERATE_TRUE =
-ECA_AM_COMPILE_SNDFILE_FALSE = #
-ECA_AM_COMPILE_SNDFILE_TRUE =
-ECA_AM_DEBUG_MODE_FALSE =
-ECA_AM_DEBUG_MODE_TRUE = #
-ECA_AM_DISABLE_EFFECTS_FALSE =
-ECA_AM_DISABLE_EFFECTS_TRUE = #
-ECA_AM_FEELING_EXPERIMENTAL_FALSE =
-ECA_AM_FEELING_EXPERIMENTAL_TRUE = #
-ECA_AM_KVUTILS_INSTALLED_FALSE = #
-ECA_AM_KVUTILS_INSTALLED_TRUE =
-ECA_AM_PYECASOUND_CEXT_FALSE =
-ECA_AM_PYECASOUND_CEXT_TRUE = #
-ECA_AM_PYECASOUND_INSTALL_FALSE = #
-ECA_AM_PYECASOUND_INSTALL_TRUE =
-ECA_AM_RUBYECASOUND_INSTALL_FALSE =
-ECA_AM_RUBYECASOUND_INSTALL_TRUE = #
-ECA_AM_SYSTEM_READLINE_FALSE = #
-ECA_AM_SYSTEM_READLINE_TRUE =
-ECA_AM_USE_NCURSES_FALSE = #
-ECA_AM_USE_NCURSES_TRUE =
-ECA_AM_USE_TERMCAP_FALSE =
-ECA_AM_USE_TERMCAP_TRUE = #
-ECA_S_EXTRA_CPPFLAGS =
-ECA_S_EXTRA_LIBS = -lsamplerate -laudiofile -lsndfile -lasound
-ECA_S_JACK_INCLUDES =
-ECA_S_JACK_LIBS =
-ECA_S_PREFIX = /usr/local
-ECA_S_PYTHON_DLMODULES = /usr/lib/python2.6/lib-dynload
-ECA_S_PYTHON_INCLUDES =
-ECA_S_PYTHON_MODULES = /usr/lib/python2.6
-ECA_S_READLINE_INCLUDES = /usr/include/readline
-ECA_S_READLINE_LIBS = -lreadline -lhistory
-ECA_S_RUBY_SITEDIR =
-ECHO = echo
-ECHO_C =
-ECHO_N = -n
-ECHO_T =
-EGREP = /bin/grep -E
-EXEEXT =
-F77 =
-FFLAGS =
-GREP = /bin/grep
-INSTALL_DATA = ${INSTALL} -m 644
-INSTALL_PROGRAM = ${INSTALL}
-INSTALL_SCRIPT = ${INSTALL}
-INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s
-LDFLAGS =
-LIBECASOUNDC_VERSION = 2
-LIBECASOUNDC_VERSION_AGE = 1
-LIBECASOUND_VERSION = 22
-LIBECASOUND_VERSION_AGE = 0
-LIBKVUTILS_VERSION = 9
-LIBKVUTILS_VERSION_AGE = 5
-LIBLO_CFLAGS =
-LIBLO_LIBS =
-LIBOBJS =
-LIBOIL_CFLAGS =
-LIBOIL_LIBS =
-LIBS = -ldl -lm -lrt -lpthread
-LIBTOOL = $(SHELL) $(top_builddir)/libtool
-LN_S = ln -s
-LTLIBOBJS =
-MAKEINFO = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run makeinfo
-NMEDIT =
-OBJEXT = o
-PACKAGE = ecasound
-PACKAGE_BUGREPORT =
-PACKAGE_NAME = ecasound
-PACKAGE_STRING = ecasound 2.7.2
-PACKAGE_TARNAME = ecasound
-PACKAGE_VERSION = 2.7.2
-PATH_SEPARATOR = :
-PKG_CONFIG = /usr/bin/pkg-config
-PYTHONPATH = /usr/bin/python
-RANLIB = ranlib
-RUBYPATH = none
-SED = /bin/sed
-SET_MAKE =
-SHELL = /bin/bash
-STRIP = strip
-VERSION = 2.7.2
-ac_ct_CC = gcc
-ac_ct_CXX = g++
-ac_ct_F77 =
-am__fastdepCC_FALSE = #
-am__fastdepCC_TRUE =
-am__fastdepCXX_FALSE = #
-am__fastdepCXX_TRUE =
-am__include = include
-am__leading_dot = .
-am__quote =
-am__tar = ${AMTAR} chof - "$$tardir"
-am__untar = ${AMTAR} xf -
-bindir = ${exec_prefix}/bin
-build = x86_64-unknown-linux-gnu
-build_alias =
-build_cpu = x86_64
-build_os = linux-gnu
-build_vendor = unknown
-datadir = ${datarootdir}
-datarootdir = ${prefix}/share
-docdir = ${datarootdir}/doc/${PACKAGE_TARNAME}
-dvidir = ${docdir}
-exec_prefix = ${prefix}
-host = x86_64-unknown-linux-gnu
-host_alias =
-host_cpu = x86_64
-host_os = linux-gnu
-host_vendor = unknown
-htmldir = ${docdir}
-includedir = ${prefix}/include
-infodir = ${datarootdir}/info
-install_sh = /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/install-sh
-libdir = ${exec_prefix}/lib
-libexecdir = ${exec_prefix}/libexec
-localedir = ${datarootdir}/locale
-localstatedir = ${prefix}/var
-mandir = ${datarootdir}/man
-mkdir_p = mkdir -p --
-oldincludedir = /usr/include
-pdfdir = ${docdir}
-prefix = /usr/local
-program_transform_name = s,x,x,
-psdir = ${docdir}
-sbindir = ${exec_prefix}/sbin
-sharedstatedir = ${prefix}/com
-sysconfdir = ${prefix}/etc
-target_alias =
-
-# ---------------------------------------------------------------------
-# Files going into distribution:
-EXTRA_DIST = ecasound_programmers_guide.txt \
- eci_doc.latex
-
-DISTCLEANFILES = \
- ecasound_programmers_guide.html \
- eci_doc.log \
- eci_doc.aux \
- eci_doc.toc \
- eci_doc.dvi \
- eci_doc.ps \
- ecasound_eci_doc.pdf \
- html_ecidoc/eci_doc.html \
- html_ecidoc/eci_doc.haux \
- html_ecidoc/eci_doc.htoc
-
-all: all-am
-
-.SUFFIXES:
-$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
- @for dep in $?; do \
- case '$(am__configure_deps)' in \
- *$$dep*) \
- cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
- && exit 0; \
- exit 1;; \
- esac; \
- done; \
- echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Documentation/programmers_guide/Makefile'; \
- cd $(top_srcdir) && \
- $(AUTOMAKE) --foreign Documentation/programmers_guide/Makefile
-.PRECIOUS: Makefile
-Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
- @case '$?' in \
- *config.status*) \
- cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
- *) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
- esac;
-
-$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
- cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
-
-$(top_srcdir)/configure: $(am__configure_deps)
- cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
-$(ACLOCAL_M4): $(am__aclocal_m4_deps)
- cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
-
-mostlyclean-libtool:
- -rm -f *.lo
-
-clean-libtool:
- -rm -rf .libs _libs
-
-distclean-libtool:
- -rm -f libtool
-uninstall-info-am:
-tags: TAGS
-TAGS:
-
-ctags: CTAGS
-CTAGS:
-
-
-distdir: $(DISTFILES)
- @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
- list='$(DISTFILES)'; for file in $$list; do \
- case $$file in \
- $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
- $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
- esac; \
- if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
- dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
- if test "$$dir" != "$$file" && test "$$dir" != "."; then \
- dir="/$$dir"; \
- $(mkdir_p) "$(distdir)$$dir"; \
- else \
- dir=''; \
- fi; \
- if test -d $$d/$$file; then \
- if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
- cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
- fi; \
- cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
- else \
- test -f $(distdir)/$$file \
- || cp -p $$d/$$file $(distdir)/$$file \
- || exit 1; \
- fi; \
- done
-check-am: all-am
-check: check-am
-all-am: Makefile
-installdirs:
-install: install-am
-install-exec: install-exec-am
-install-data: install-data-am
-uninstall: uninstall-am
-
-install-am: all-am
- @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
-
-installcheck: installcheck-am
-install-strip:
- $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
- install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
- `test -z '$(STRIP)' || \
- echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
-mostlyclean-generic:
-
-clean-generic:
-
-distclean-generic:
- -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
- -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
-
-maintainer-clean-generic:
- @echo "This command is intended for maintainers to use"
- @echo "it deletes files that may require special tools to rebuild."
-clean: clean-am
-
-clean-am: clean-generic clean-libtool mostlyclean-am
-
-distclean: distclean-am
- -rm -f Makefile
-distclean-am: clean-am distclean-generic distclean-libtool
-
-dvi: dvi-am
-
-dvi-am:
-
-html: html-am
-
-info: info-am
-
-info-am:
-
-install-data-am:
-
-install-exec-am:
-
-install-info: install-info-am
-
-install-man:
-
-installcheck-am:
-
-maintainer-clean: maintainer-clean-am
- -rm -f Makefile
-maintainer-clean-am: distclean-am maintainer-clean-generic
-
-mostlyclean: mostlyclean-am
-
-mostlyclean-am: mostlyclean-generic mostlyclean-libtool
-
-pdf: pdf-am
-
-pdf-am:
-
-ps: ps-am
-
-ps-am:
-
-uninstall-am: uninstall-info-am
-
-.PHONY: all all-am check check-am clean clean-generic clean-libtool \
- distclean distclean-generic distclean-libtool distdir dvi \
- dvi-am html html-am info info-am install install-am \
- install-data install-data-am install-exec install-exec-am \
- install-info install-info-am install-man install-strip \
- installcheck installcheck-am installdirs maintainer-clean \
- maintainer-clean-generic mostlyclean mostlyclean-generic \
- mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \
- uninstall-info-am
-
-
-all:
-
-docs: ecasound_programmers_guide.html ecasound_eci_doc.pdf
-
-ecasound_programmers_guide.html: $(srcdir)/ecasound_programmers_guide.txt
- rst2html $(srcdir)/ecasound_programmers_guide.txt ecasound_programmers_guide.html
-
-# note: to create the table of contents (which spans multiple pages), and
-# re-calculate the page numbers after the page offset generated by table
-# of contents, latex needs to be ran 3 times. (Junichi Uekawa, 2007-08-06)
-
-ecasound_eci_doc.pdf: $(srcdir)/eci_doc.latex eci_doc.dvi
- latex $(srcdir)/eci_doc.latex
- latex $(srcdir)/eci_doc.latex
- latex $(srcdir)/eci_doc.latex
- dvips -Ppdf -o eci_doc.ps eci_doc.dvi
- ps2pdf eci_doc.ps ecasound_eci_doc.pdf
- mkdir -p html_ecidoc
- hevea -o html_ecidoc/eci_doc.html $(srcdir)/eci_doc.latex
- hevea -o html_ecidoc/eci_doc.html $(srcdir)/eci_doc.latex
-
-eci_doc.dvi: $(srcdir)/eci_doc.latex
-
-clean-docs:
- rm -fv ecasound_programmers_guide.html ecasound_eci_doc.pdf
- rm -fv eci_doc.log eci_doc.toc eci_doc.dvi eci_doc.aux eci_doc.ps eci_doc.dvi
- rm -fv html_ecidoc/*
-# Tell versions [3.59,3.63) of GNU make to not export all variables.
-# Otherwise a system limit (for SysV at least) may be exceeded.
-.NOEXPORT:
diff --git a/library/ecasound-2.7.2/Documentation/users_guide/Makefile b/library/ecasound-2.7.2/Documentation/users_guide/Makefile
deleted file mode 100644
index 96213866e..000000000
--- a/library/ecasound-2.7.2/Documentation/users_guide/Makefile
+++ /dev/null
@@ -1,432 +0,0 @@
-# Makefile.in generated by automake 1.9.6 from Makefile.am.
-# Documentation/users_guide/Makefile. Generated from Makefile.in by configure.
-
-# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
-# 2003, 2004, 2005 Free Software Foundation, Inc.
-# This Makefile.in is free software; the Free Software Foundation
-# gives unlimited permission to copy and/or distribute it,
-# with or without modifications, as long as this notice is preserved.
-
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
-# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
-# PARTICULAR PURPOSE.
-
-
-
-# ----------------------------------------------------------------------
-# File: ecasound/Documentation/users_guide/Makefile.am
-# Description: Ecasound documentation - user's guide
-# License: GPL (see ecasound/{AUTHORS,COPYING})
-# ----------------------------------------------------------------------
-
-# ---------------------------------------------------------------------
-# Files going into distribution:
-srcdir = .
-top_srcdir = ../..
-
-pkgdatadir = $(datadir)/ecasound
-pkglibdir = $(libdir)/ecasound
-pkgincludedir = $(includedir)/ecasound
-top_builddir = ../..
-am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
-INSTALL = /usr/bin/install -c
-install_sh_DATA = $(install_sh) -c -m 644
-install_sh_PROGRAM = $(install_sh) -c
-install_sh_SCRIPT = $(install_sh) -c
-INSTALL_HEADER = $(INSTALL_DATA)
-transform = $(program_transform_name)
-NORMAL_INSTALL = :
-PRE_INSTALL = :
-POST_INSTALL = :
-NORMAL_UNINSTALL = :
-PRE_UNINSTALL = :
-POST_UNINSTALL = :
-build_triplet = x86_64-unknown-linux-gnu
-host_triplet = x86_64-unknown-linux-gnu
-subdir = Documentation/users_guide
-DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
-am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
- $(top_srcdir)/configure.in
-am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
- $(ACLOCAL_M4)
-mkinstalldirs = $(install_sh) -d
-CONFIG_HEADER = $(top_builddir)/config.h
-CONFIG_CLEAN_FILES =
-SOURCES =
-DIST_SOURCES =
-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run aclocal-1.9
-AMDEP_FALSE = #
-AMDEP_TRUE =
-AMTAR = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run tar
-AM_CFLAGS = -ffast-math -fstrict-aliasing -DNDEBUG -DENABLE_DBC
-AM_CPPFLAGS = -D_REENTRANT -D_XOPEN_SOURCE=500
-AM_CXXFLAGS = -ffast-math -fstrict-aliasing -DNDEBUG -DENABLE_DBC
-AM_LDFLAGS =
-AR = ar
-ARTSC_CONFIG = none
-AUTOCONF = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run autoconf
-AUTOHEADER = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run autoheader
-AUTOMAKE = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run automake-1.9
-AWK = gawk
-CC = gcc
-CCDEPMODE = depmode=gcc3
-CFLAGS = -g -O2
-CPP = gcc -E
-CPPFLAGS =
-CXX = g++
-CXXCPP = g++ -E
-CXXDEPMODE = depmode=gcc3
-CXXFLAGS = -g -O2
-CYGPATH_W = echo
-DEFS = -DHAVE_CONFIG_H
-DEPDIR = .deps
-DSYMUTIL =
-ECA_AM_ALL_STATIC_FALSE =
-ECA_AM_ALL_STATIC_TRUE = #
-ECA_AM_COMPILE_ALSA_FALSE = #
-ECA_AM_COMPILE_ALSA_TRUE =
-ECA_AM_COMPILE_ARTS_FALSE =
-ECA_AM_COMPILE_ARTS_TRUE = #
-ECA_AM_COMPILE_AUDIOFILE_FALSE = #
-ECA_AM_COMPILE_AUDIOFILE_TRUE =
-ECA_AM_COMPILE_JACK_FALSE =
-ECA_AM_COMPILE_JACK_TRUE = #
-ECA_AM_COMPILE_OSS_FALSE = #
-ECA_AM_COMPILE_OSS_TRUE =
-ECA_AM_COMPILE_SAMPLERATE_FALSE = #
-ECA_AM_COMPILE_SAMPLERATE_TRUE =
-ECA_AM_COMPILE_SNDFILE_FALSE = #
-ECA_AM_COMPILE_SNDFILE_TRUE =
-ECA_AM_DEBUG_MODE_FALSE =
-ECA_AM_DEBUG_MODE_TRUE = #
-ECA_AM_DISABLE_EFFECTS_FALSE =
-ECA_AM_DISABLE_EFFECTS_TRUE = #
-ECA_AM_FEELING_EXPERIMENTAL_FALSE =
-ECA_AM_FEELING_EXPERIMENTAL_TRUE = #
-ECA_AM_KVUTILS_INSTALLED_FALSE = #
-ECA_AM_KVUTILS_INSTALLED_TRUE =
-ECA_AM_PYECASOUND_CEXT_FALSE =
-ECA_AM_PYECASOUND_CEXT_TRUE = #
-ECA_AM_PYECASOUND_INSTALL_FALSE = #
-ECA_AM_PYECASOUND_INSTALL_TRUE =
-ECA_AM_RUBYECASOUND_INSTALL_FALSE =
-ECA_AM_RUBYECASOUND_INSTALL_TRUE = #
-ECA_AM_SYSTEM_READLINE_FALSE = #
-ECA_AM_SYSTEM_READLINE_TRUE =
-ECA_AM_USE_NCURSES_FALSE = #
-ECA_AM_USE_NCURSES_TRUE =
-ECA_AM_USE_TERMCAP_FALSE =
-ECA_AM_USE_TERMCAP_TRUE = #
-ECA_S_EXTRA_CPPFLAGS =
-ECA_S_EXTRA_LIBS = -lsamplerate -laudiofile -lsndfile -lasound
-ECA_S_JACK_INCLUDES =
-ECA_S_JACK_LIBS =
-ECA_S_PREFIX = /usr/local
-ECA_S_PYTHON_DLMODULES = /usr/lib/python2.6/lib-dynload
-ECA_S_PYTHON_INCLUDES =
-ECA_S_PYTHON_MODULES = /usr/lib/python2.6
-ECA_S_READLINE_INCLUDES = /usr/include/readline
-ECA_S_READLINE_LIBS = -lreadline -lhistory
-ECA_S_RUBY_SITEDIR =
-ECHO = echo
-ECHO_C =
-ECHO_N = -n
-ECHO_T =
-EGREP = /bin/grep -E
-EXEEXT =
-F77 =
-FFLAGS =
-GREP = /bin/grep
-INSTALL_DATA = ${INSTALL} -m 644
-INSTALL_PROGRAM = ${INSTALL}
-INSTALL_SCRIPT = ${INSTALL}
-INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s
-LDFLAGS =
-LIBECASOUNDC_VERSION = 2
-LIBECASOUNDC_VERSION_AGE = 1
-LIBECASOUND_VERSION = 22
-LIBECASOUND_VERSION_AGE = 0
-LIBKVUTILS_VERSION = 9
-LIBKVUTILS_VERSION_AGE = 5
-LIBLO_CFLAGS =
-LIBLO_LIBS =
-LIBOBJS =
-LIBOIL_CFLAGS =
-LIBOIL_LIBS =
-LIBS = -ldl -lm -lrt -lpthread
-LIBTOOL = $(SHELL) $(top_builddir)/libtool
-LN_S = ln -s
-LTLIBOBJS =
-MAKEINFO = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run makeinfo
-NMEDIT =
-OBJEXT = o
-PACKAGE = ecasound
-PACKAGE_BUGREPORT =
-PACKAGE_NAME = ecasound
-PACKAGE_STRING = ecasound 2.7.2
-PACKAGE_TARNAME = ecasound
-PACKAGE_VERSION = 2.7.2
-PATH_SEPARATOR = :
-PKG_CONFIG = /usr/bin/pkg-config
-PYTHONPATH = /usr/bin/python
-RANLIB = ranlib
-RUBYPATH = none
-SED = /bin/sed
-SET_MAKE =
-SHELL = /bin/bash
-STRIP = strip
-VERSION = 2.7.2
-ac_ct_CC = gcc
-ac_ct_CXX = g++
-ac_ct_F77 =
-am__fastdepCC_FALSE = #
-am__fastdepCC_TRUE =
-am__fastdepCXX_FALSE = #
-am__fastdepCXX_TRUE =
-am__include = include
-am__leading_dot = .
-am__quote =
-am__tar = ${AMTAR} chof - "$$tardir"
-am__untar = ${AMTAR} xf -
-bindir = ${exec_prefix}/bin
-build = x86_64-unknown-linux-gnu
-build_alias =
-build_cpu = x86_64
-build_os = linux-gnu
-build_vendor = unknown
-datadir = ${datarootdir}
-datarootdir = ${prefix}/share
-docdir = ${datarootdir}/doc/${PACKAGE_TARNAME}
-dvidir = ${docdir}
-exec_prefix = ${prefix}
-host = x86_64-unknown-linux-gnu
-host_alias =
-host_cpu = x86_64
-host_os = linux-gnu
-host_vendor = unknown
-htmldir = ${docdir}
-includedir = ${prefix}/include
-infodir = ${datarootdir}/info
-install_sh = /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/install-sh
-libdir = ${exec_prefix}/lib
-libexecdir = ${exec_prefix}/libexec
-localedir = ${datarootdir}/locale
-localstatedir = ${prefix}/var
-mandir = ${datarootdir}/man
-mkdir_p = mkdir -p --
-oldincludedir = /usr/include
-pdfdir = ${docdir}
-prefix = /usr/local
-program_transform_name = s,x,x,
-psdir = ${docdir}
-sbindir = ${exec_prefix}/sbin
-sharedstatedir = ${prefix}/com
-sysconfdir = ${prefix}/etc
-target_alias =
-EXTRA_DIST = users_guide.latex
-DISTCLEANFILES = \
- users_guide.log \
- users_guide.aux \
- users_guide.out \
- users_guide.dvi \
- users_guide.toc \
- users_guide.ps \
- ecasound_users_guide.pdf \
- html_uguide/users_guide.html \
- html_uguide/users_guide.haux \
- html_uguide/users_guide.htoc
-
-all: all-am
-
-.SUFFIXES:
-$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
- @for dep in $?; do \
- case '$(am__configure_deps)' in \
- *$$dep*) \
- cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
- && exit 0; \
- exit 1;; \
- esac; \
- done; \
- echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Documentation/users_guide/Makefile'; \
- cd $(top_srcdir) && \
- $(AUTOMAKE) --foreign Documentation/users_guide/Makefile
-.PRECIOUS: Makefile
-Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
- @case '$?' in \
- *config.status*) \
- cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
- *) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
- esac;
-
-$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
- cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
-
-$(top_srcdir)/configure: $(am__configure_deps)
- cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
-$(ACLOCAL_M4): $(am__aclocal_m4_deps)
- cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
-
-mostlyclean-libtool:
- -rm -f *.lo
-
-clean-libtool:
- -rm -rf .libs _libs
-
-distclean-libtool:
- -rm -f libtool
-uninstall-info-am:
-tags: TAGS
-TAGS:
-
-ctags: CTAGS
-CTAGS:
-
-
-distdir: $(DISTFILES)
- @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
- list='$(DISTFILES)'; for file in $$list; do \
- case $$file in \
- $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
- $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
- esac; \
- if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
- dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
- if test "$$dir" != "$$file" && test "$$dir" != "."; then \
- dir="/$$dir"; \
- $(mkdir_p) "$(distdir)$$dir"; \
- else \
- dir=''; \
- fi; \
- if test -d $$d/$$file; then \
- if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
- cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
- fi; \
- cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
- else \
- test -f $(distdir)/$$file \
- || cp -p $$d/$$file $(distdir)/$$file \
- || exit 1; \
- fi; \
- done
-check-am: all-am
-check: check-am
-all-am: Makefile
-installdirs:
-install: install-am
-install-exec: install-exec-am
-install-data: install-data-am
-uninstall: uninstall-am
-
-install-am: all-am
- @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
-
-installcheck: installcheck-am
-install-strip:
- $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
- install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
- `test -z '$(STRIP)' || \
- echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
-mostlyclean-generic:
-
-clean-generic:
-
-distclean-generic:
- -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
- -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
-
-maintainer-clean-generic:
- @echo "This command is intended for maintainers to use"
- @echo "it deletes files that may require special tools to rebuild."
-clean: clean-am
-
-clean-am: clean-generic clean-libtool mostlyclean-am
-
-distclean: distclean-am
- -rm -f Makefile
-distclean-am: clean-am distclean-generic distclean-libtool
-
-dvi: dvi-am
-
-dvi-am:
-
-html: html-am
-
-info: info-am
-
-info-am:
-
-install-data-am:
-
-install-exec-am:
-
-install-info: install-info-am
-
-install-man:
-
-installcheck-am:
-
-maintainer-clean: maintainer-clean-am
- -rm -f Makefile
-maintainer-clean-am: distclean-am maintainer-clean-generic
-
-mostlyclean: mostlyclean-am
-
-mostlyclean-am: mostlyclean-generic mostlyclean-libtool
-
-pdf: pdf-am
-
-pdf-am:
-
-ps: ps-am
-
-ps-am:
-
-uninstall-am: uninstall-info-am
-
-.PHONY: all all-am check check-am clean clean-generic clean-libtool \
- distclean distclean-generic distclean-libtool distdir dvi \
- dvi-am html html-am info info-am install install-am \
- install-data install-data-am install-exec install-exec-am \
- install-info install-info-am install-man install-strip \
- installcheck installcheck-am installdirs maintainer-clean \
- maintainer-clean-generic mostlyclean mostlyclean-generic \
- mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \
- uninstall-info-am
-
-
-all:
-
-docs: ecasound_users_guide.pdf
-
-ecasound_eci_doc.pdf: eci_doc.latex eci_doc.dvi
-
-# note: to create the table of contents (which spans multiple pages), and
-# re-calculate the page numbers after the page offset generated by table
-# of contents, latex needs to be ran 3 times. (Junichi Uekawa, 2007-08-06)
-
-users_guide.dvi: $(srcdir)/users_guide.latex
- latex $(srcdir)/users_guide.latex
- latex $(srcdir)/users_guide.latex
- latex $(srcdir)/users_guide.latex
- dvips -Ppdf -o users_guide.ps users_guide.dvi
- ps2pdf users_guide.ps ecasound_users_guide.pdf
- mkdir -p html_uguide
- hevea -o html_uguide/users_guide.html $(srcdir)/users_guide.latex
- hevea -o html_uguide/users_guide.html $(srcdir)/users_guide.latex
-
-ecasound_users_guide.pdf: users_guide.dvi
-
-clean-docs:
- rm -fv ecasound_users_guide.pdf
- rm -fv users_guide.log users_guide.toc users_guide.dvi users_guide.aux users_guide.ps users_guide.dvi
- rm -fv html_uguide/*
-# Tell versions [3.59,3.63) of GNU make to not export all variables.
-# Otherwise a system limit (for SysV at least) may be exceeded.
-.NOEXPORT:
diff --git a/library/ecasound-2.7.2/Makefile b/library/ecasound-2.7.2/Makefile
deleted file mode 100644
index fe82fd9fe..000000000
--- a/library/ecasound-2.7.2/Makefile
+++ /dev/null
@@ -1,726 +0,0 @@
-# Makefile.in generated by automake 1.9.6 from Makefile.am.
-# Makefile. Generated from Makefile.in by configure.
-
-# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
-# 2003, 2004, 2005 Free Software Foundation, Inc.
-# This Makefile.in is free software; the Free Software Foundation
-# gives unlimited permission to copy and/or distribute it,
-# with or without modifications, as long as this notice is preserved.
-
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
-# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
-# PARTICULAR PURPOSE.
-
-
-
-# ----------------------------------------------------------------------
-# File: ecasound/Makefile.am
-# Description: Ecasound multitrack audio processing tool
-# License: GPL (see ecasound/{AUTHORS,COPYING})
-# ----------------------------------------------------------------------
-srcdir = .
-top_srcdir = .
-
-pkgdatadir = $(datadir)/ecasound
-pkglibdir = $(libdir)/ecasound
-pkgincludedir = $(includedir)/ecasound
-top_builddir = .
-am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
-INSTALL = /usr/bin/install -c
-install_sh_DATA = $(install_sh) -c -m 644
-install_sh_PROGRAM = $(install_sh) -c
-install_sh_SCRIPT = $(install_sh) -c
-INSTALL_HEADER = $(INSTALL_DATA)
-transform = $(program_transform_name)
-NORMAL_INSTALL = :
-PRE_INSTALL = :
-POST_INSTALL = :
-NORMAL_UNINSTALL = :
-PRE_UNINSTALL = :
-POST_UNINSTALL = :
-build_triplet = x86_64-unknown-linux-gnu
-host_triplet = x86_64-unknown-linux-gnu
-DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \
- $(srcdir)/Makefile.in $(srcdir)/config.h.in \
- $(srcdir)/ecasound.spec.in $(top_srcdir)/configure AUTHORS \
- COPYING INSTALL NEWS TODO compile config.guess config.sub \
- depcomp install-sh ltmain.sh missing
-subdir = .
-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
-am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
- $(top_srcdir)/configure.in
-am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
- $(ACLOCAL_M4)
-am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
- configure.lineno configure.status.lineno
-mkinstalldirs = $(install_sh) -d
-CONFIG_HEADER = config.h
-CONFIG_CLEAN_FILES = ecasound.spec
-SOURCES =
-DIST_SOURCES =
-RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
- html-recursive info-recursive install-data-recursive \
- install-exec-recursive install-info-recursive \
- install-recursive installcheck-recursive installdirs-recursive \
- pdf-recursive ps-recursive uninstall-info-recursive \
- uninstall-recursive
-ETAGS = etags
-CTAGS = ctags
-DIST_SUBDIRS = $(SUBDIRS)
-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-distdir = $(PACKAGE)-$(VERSION)
-top_distdir = $(distdir)
-am__remove_distdir = \
- { test ! -d $(distdir) \
- || { find $(distdir) -type d ! -perm -200 -exec chmod u+w {} ';' \
- && rm -fr $(distdir); }; }
-DIST_ARCHIVES = $(distdir).tar.gz
-GZIP_ENV = --best
-distuninstallcheck_listfiles = find . -type f -print
-distcleancheck_listfiles = find . -type f -print
-ACLOCAL = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run aclocal-1.9
-AMDEP_FALSE = #
-AMDEP_TRUE =
-AMTAR = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run tar
-AM_CFLAGS = -ffast-math -fstrict-aliasing -DNDEBUG -DENABLE_DBC
-AM_CPPFLAGS = -D_REENTRANT -D_XOPEN_SOURCE=500
-AM_CXXFLAGS = -ffast-math -fstrict-aliasing -DNDEBUG -DENABLE_DBC
-AM_LDFLAGS =
-AR = ar
-ARTSC_CONFIG = none
-AUTOCONF = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run autoconf
-AUTOHEADER = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run autoheader
-AUTOMAKE = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run automake-1.9
-AWK = gawk
-CC = gcc
-CCDEPMODE = depmode=gcc3
-CFLAGS = -g -O2
-CPP = gcc -E
-CPPFLAGS =
-CXX = g++
-CXXCPP = g++ -E
-CXXDEPMODE = depmode=gcc3
-CXXFLAGS = -g -O2
-CYGPATH_W = echo
-DEFS = -DHAVE_CONFIG_H
-DEPDIR = .deps
-DSYMUTIL =
-ECA_AM_ALL_STATIC_FALSE =
-ECA_AM_ALL_STATIC_TRUE = #
-ECA_AM_COMPILE_ALSA_FALSE = #
-ECA_AM_COMPILE_ALSA_TRUE =
-ECA_AM_COMPILE_ARTS_FALSE =
-ECA_AM_COMPILE_ARTS_TRUE = #
-ECA_AM_COMPILE_AUDIOFILE_FALSE = #
-ECA_AM_COMPILE_AUDIOFILE_TRUE =
-ECA_AM_COMPILE_JACK_FALSE =
-ECA_AM_COMPILE_JACK_TRUE = #
-ECA_AM_COMPILE_OSS_FALSE = #
-ECA_AM_COMPILE_OSS_TRUE =
-ECA_AM_COMPILE_SAMPLERATE_FALSE = #
-ECA_AM_COMPILE_SAMPLERATE_TRUE =
-ECA_AM_COMPILE_SNDFILE_FALSE = #
-ECA_AM_COMPILE_SNDFILE_TRUE =
-ECA_AM_DEBUG_MODE_FALSE =
-ECA_AM_DEBUG_MODE_TRUE = #
-ECA_AM_DISABLE_EFFECTS_FALSE =
-ECA_AM_DISABLE_EFFECTS_TRUE = #
-ECA_AM_FEELING_EXPERIMENTAL_FALSE =
-ECA_AM_FEELING_EXPERIMENTAL_TRUE = #
-ECA_AM_KVUTILS_INSTALLED_FALSE = #
-ECA_AM_KVUTILS_INSTALLED_TRUE =
-ECA_AM_PYECASOUND_CEXT_FALSE =
-ECA_AM_PYECASOUND_CEXT_TRUE = #
-ECA_AM_PYECASOUND_INSTALL_FALSE = #
-ECA_AM_PYECASOUND_INSTALL_TRUE =
-ECA_AM_RUBYECASOUND_INSTALL_FALSE =
-ECA_AM_RUBYECASOUND_INSTALL_TRUE = #
-ECA_AM_SYSTEM_READLINE_FALSE = #
-ECA_AM_SYSTEM_READLINE_TRUE =
-ECA_AM_USE_NCURSES_FALSE = #
-ECA_AM_USE_NCURSES_TRUE =
-ECA_AM_USE_TERMCAP_FALSE =
-ECA_AM_USE_TERMCAP_TRUE = #
-ECA_S_EXTRA_CPPFLAGS =
-ECA_S_EXTRA_LIBS = -lsamplerate -laudiofile -lsndfile -lasound
-ECA_S_JACK_INCLUDES =
-ECA_S_JACK_LIBS =
-ECA_S_PREFIX = /usr/local
-ECA_S_PYTHON_DLMODULES = /usr/lib/python2.6/lib-dynload
-ECA_S_PYTHON_INCLUDES =
-ECA_S_PYTHON_MODULES = /usr/lib/python2.6
-ECA_S_READLINE_INCLUDES = /usr/include/readline
-ECA_S_READLINE_LIBS = -lreadline -lhistory
-ECA_S_RUBY_SITEDIR =
-ECHO = echo
-ECHO_C =
-ECHO_N = -n
-ECHO_T =
-EGREP = /bin/grep -E
-EXEEXT =
-F77 =
-FFLAGS =
-GREP = /bin/grep
-INSTALL_DATA = ${INSTALL} -m 644
-INSTALL_PROGRAM = ${INSTALL}
-INSTALL_SCRIPT = ${INSTALL}
-INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s
-LDFLAGS =
-LIBECASOUNDC_VERSION = 2
-LIBECASOUNDC_VERSION_AGE = 1
-LIBECASOUND_VERSION = 22
-LIBECASOUND_VERSION_AGE = 0
-LIBKVUTILS_VERSION = 9
-LIBKVUTILS_VERSION_AGE = 5
-LIBLO_CFLAGS =
-LIBLO_LIBS =
-LIBOBJS =
-LIBOIL_CFLAGS =
-LIBOIL_LIBS =
-LIBS = -ldl -lm -lrt -lpthread
-LIBTOOL = $(SHELL) $(top_builddir)/libtool
-LN_S = ln -s
-LTLIBOBJS =
-MAKEINFO = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run makeinfo
-NMEDIT =
-OBJEXT = o
-PACKAGE = ecasound
-PACKAGE_BUGREPORT =
-PACKAGE_NAME = ecasound
-PACKAGE_STRING = ecasound 2.7.2
-PACKAGE_TARNAME = ecasound
-PACKAGE_VERSION = 2.7.2
-PATH_SEPARATOR = :
-PKG_CONFIG = /usr/bin/pkg-config
-PYTHONPATH = /usr/bin/python
-RANLIB = ranlib
-RUBYPATH = none
-SED = /bin/sed
-SET_MAKE =
-SHELL = /bin/bash
-STRIP = strip
-VERSION = 2.7.2
-ac_ct_CC = gcc
-ac_ct_CXX = g++
-ac_ct_F77 =
-am__fastdepCC_FALSE = #
-am__fastdepCC_TRUE =
-am__fastdepCXX_FALSE = #
-am__fastdepCXX_TRUE =
-am__include = include
-am__leading_dot = .
-am__quote =
-am__tar = ${AMTAR} chof - "$$tardir"
-am__untar = ${AMTAR} xf -
-bindir = ${exec_prefix}/bin
-build = x86_64-unknown-linux-gnu
-build_alias =
-build_cpu = x86_64
-build_os = linux-gnu
-build_vendor = unknown
-datadir = ${datarootdir}
-datarootdir = ${prefix}/share
-docdir = ${datarootdir}/doc/${PACKAGE_TARNAME}
-dvidir = ${docdir}
-exec_prefix = ${prefix}
-host = x86_64-unknown-linux-gnu
-host_alias =
-host_cpu = x86_64
-host_os = linux-gnu
-host_vendor = unknown
-htmldir = ${docdir}
-includedir = ${prefix}/include
-infodir = ${datarootdir}/info
-install_sh = /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/install-sh
-libdir = ${exec_prefix}/lib
-libexecdir = ${exec_prefix}/libexec
-localedir = ${datarootdir}/locale
-localstatedir = ${prefix}/var
-mandir = ${datarootdir}/man
-mkdir_p = mkdir -p --
-oldincludedir = /usr/include
-pdfdir = ${docdir}
-prefix = /usr/local
-program_transform_name = s,x,x,
-psdir = ${docdir}
-sbindir = ${exec_prefix}/sbin
-sharedstatedir = ${prefix}/com
-sysconfdir = ${prefix}/etc
-target_alias =
-EXTRA_DIST = AUTHORS BUGS COPYING.GPL COPYING.LGPL NEWS TODO ecasoundrc.in ecasound.spec effect_presets generic_oscillators
-SUBDIRS = kvutils libecasound ecasound libecasoundc pyecasound rubyecasound ecatools Documentation examples
-AUTOMAKE_OPTIONS = foreign
-RELEASE = 1
-all: config.h
- $(MAKE) $(AM_MAKEFLAGS) all-recursive
-
-.SUFFIXES:
-am--refresh:
- @:
-$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
- @for dep in $?; do \
- case '$(am__configure_deps)' in \
- *$$dep*) \
- echo ' cd $(srcdir) && $(AUTOMAKE) --foreign '; \
- cd $(srcdir) && $(AUTOMAKE) --foreign \
- && exit 0; \
- exit 1;; \
- esac; \
- done; \
- echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \
- cd $(top_srcdir) && \
- $(AUTOMAKE) --foreign Makefile
-.PRECIOUS: Makefile
-Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
- @case '$?' in \
- *config.status*) \
- echo ' $(SHELL) ./config.status'; \
- $(SHELL) ./config.status;; \
- *) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
- esac;
-
-$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
- $(SHELL) ./config.status --recheck
-
-$(top_srcdir)/configure: $(am__configure_deps)
- cd $(srcdir) && $(AUTOCONF)
-$(ACLOCAL_M4): $(am__aclocal_m4_deps)
- cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
-
-config.h: stamp-h1
- @if test ! -f $@; then \
- rm -f stamp-h1; \
- $(MAKE) stamp-h1; \
- else :; fi
-
-stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
- @rm -f stamp-h1
- cd $(top_builddir) && $(SHELL) ./config.status config.h
-$(srcdir)/config.h.in: $(am__configure_deps)
- cd $(top_srcdir) && $(AUTOHEADER)
- rm -f stamp-h1
- touch $@
-
-distclean-hdr:
- -rm -f config.h stamp-h1
-ecasound.spec: $(top_builddir)/config.status $(srcdir)/ecasound.spec.in
- cd $(top_builddir) && $(SHELL) ./config.status $@
-
-mostlyclean-libtool:
- -rm -f *.lo
-
-clean-libtool:
- -rm -rf .libs _libs
-
-distclean-libtool:
- -rm -f libtool
-uninstall-info-am:
-
-# This directory's subdirectories are mostly independent; you can cd
-# into them and run `make' without going through this Makefile.
-# To change the values of `make' variables: instead of editing Makefiles,
-# (1) if the variable is set in `config.status', edit `config.status'
-# (which will cause the Makefiles to be regenerated when you run `make');
-# (2) otherwise, pass the desired values on the `make' command line.
-$(RECURSIVE_TARGETS):
- @failcom='exit 1'; \
- for f in x $$MAKEFLAGS; do \
- case $$f in \
- *=* | --[!k]*);; \
- *k*) failcom='fail=yes';; \
- esac; \
- done; \
- dot_seen=no; \
- target=`echo $@ | sed s/-recursive//`; \
- list='$(SUBDIRS)'; for subdir in $$list; do \
- echo "Making $$target in $$subdir"; \
- if test "$$subdir" = "."; then \
- dot_seen=yes; \
- local_target="$$target-am"; \
- else \
- local_target="$$target"; \
- fi; \
- (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
- || eval $$failcom; \
- done; \
- if test "$$dot_seen" = "no"; then \
- $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
- fi; test -z "$$fail"
-
-mostlyclean-recursive clean-recursive distclean-recursive \
-maintainer-clean-recursive:
- @failcom='exit 1'; \
- for f in x $$MAKEFLAGS; do \
- case $$f in \
- *=* | --[!k]*);; \
- *k*) failcom='fail=yes';; \
- esac; \
- done; \
- dot_seen=no; \
- case "$@" in \
- distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
- *) list='$(SUBDIRS)' ;; \
- esac; \
- rev=''; for subdir in $$list; do \
- if test "$$subdir" = "."; then :; else \
- rev="$$subdir $$rev"; \
- fi; \
- done; \
- rev="$$rev ."; \
- target=`echo $@ | sed s/-recursive//`; \
- for subdir in $$rev; do \
- echo "Making $$target in $$subdir"; \
- if test "$$subdir" = "."; then \
- local_target="$$target-am"; \
- else \
- local_target="$$target"; \
- fi; \
- (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
- || eval $$failcom; \
- done && test -z "$$fail"
-tags-recursive:
- list='$(SUBDIRS)'; for subdir in $$list; do \
- test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
- done
-ctags-recursive:
- list='$(SUBDIRS)'; for subdir in $$list; do \
- test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
- done
-
-ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
- list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
- unique=`for i in $$list; do \
- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- done | \
- $(AWK) ' { files[$$0] = 1; } \
- END { for (i in files) print i; }'`; \
- mkid -fID $$unique
-tags: TAGS
-
-TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
- $(TAGS_FILES) $(LISP)
- tags=; \
- here=`pwd`; \
- if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
- include_option=--etags-include; \
- empty_fix=.; \
- else \
- include_option=--include; \
- empty_fix=; \
- fi; \
- list='$(SUBDIRS)'; for subdir in $$list; do \
- if test "$$subdir" = .; then :; else \
- test ! -f $$subdir/TAGS || \
- tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \
- fi; \
- done; \
- list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
- unique=`for i in $$list; do \
- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- done | \
- $(AWK) ' { files[$$0] = 1; } \
- END { for (i in files) print i; }'`; \
- if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
- test -n "$$unique" || unique=$$empty_fix; \
- $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
- $$tags $$unique; \
- fi
-ctags: CTAGS
-CTAGS: ctags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
- $(TAGS_FILES) $(LISP)
- tags=; \
- here=`pwd`; \
- list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
- unique=`for i in $$list; do \
- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- done | \
- $(AWK) ' { files[$$0] = 1; } \
- END { for (i in files) print i; }'`; \
- test -z "$(CTAGS_ARGS)$$tags$$unique" \
- || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
- $$tags $$unique
-
-GTAGS:
- here=`$(am__cd) $(top_builddir) && pwd` \
- && cd $(top_srcdir) \
- && gtags -i $(GTAGS_ARGS) $$here
-
-distclean-tags:
- -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-
-distdir: $(DISTFILES)
- $(am__remove_distdir)
- mkdir $(distdir)
- $(mkdir_p) $(distdir)/. $(distdir)/libecasound $(distdir)/libecasoundc
- @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
- list='$(DISTFILES)'; for file in $$list; do \
- case $$file in \
- $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
- $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
- esac; \
- if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
- dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
- if test "$$dir" != "$$file" && test "$$dir" != "."; then \
- dir="/$$dir"; \
- $(mkdir_p) "$(distdir)$$dir"; \
- else \
- dir=''; \
- fi; \
- if test -d $$d/$$file; then \
- if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
- cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
- fi; \
- cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
- else \
- test -f $(distdir)/$$file \
- || cp -p $$d/$$file $(distdir)/$$file \
- || exit 1; \
- fi; \
- done
- list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
- if test "$$subdir" = .; then :; else \
- test -d "$(distdir)/$$subdir" \
- || $(mkdir_p) "$(distdir)/$$subdir" \
- || exit 1; \
- distdir=`$(am__cd) $(distdir) && pwd`; \
- top_distdir=`$(am__cd) $(top_distdir) && pwd`; \
- (cd $$subdir && \
- $(MAKE) $(AM_MAKEFLAGS) \
- top_distdir="$$top_distdir" \
- distdir="$$distdir/$$subdir" \
- distdir) \
- || exit 1; \
- fi; \
- done
- $(MAKE) $(AM_MAKEFLAGS) \
- top_distdir="$(top_distdir)" distdir="$(distdir)" \
- dist-hook
- -find $(distdir) -type d ! -perm -777 -exec chmod a+rwx {} \; -o \
- ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
- ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
- ! -type d ! -perm -444 -exec $(SHELL) $(install_sh) -c -m a+r {} {} \; \
- || chmod -R a+r $(distdir)
-dist-gzip: distdir
- tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
- $(am__remove_distdir)
-
-dist-bzip2: distdir
- tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2
- $(am__remove_distdir)
-
-dist-tarZ: distdir
- tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
- $(am__remove_distdir)
-
-dist-shar: distdir
- shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
- $(am__remove_distdir)
-
-dist-zip: distdir
- -rm -f $(distdir).zip
- zip -rq $(distdir).zip $(distdir)
- $(am__remove_distdir)
-
-dist dist-all: distdir
- tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
- $(am__remove_distdir)
-
-# This target untars the dist file and tries a VPATH configuration. Then
-# it guarantees that the distribution is self-contained by making another
-# tarfile.
-distcheck: dist
- case '$(DIST_ARCHIVES)' in \
- *.tar.gz*) \
- GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\
- *.tar.bz2*) \
- bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\
- *.tar.Z*) \
- uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
- *.shar.gz*) \
- GZIP=$(GZIP_ENV) gunzip -c $(distdir).shar.gz | unshar ;;\
- *.zip*) \
- unzip $(distdir).zip ;;\
- esac
- chmod -R a-w $(distdir); chmod a+w $(distdir)
- mkdir $(distdir)/_build
- mkdir $(distdir)/_inst
- chmod a-w $(distdir)
- dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
- && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
- && cd $(distdir)/_build \
- && ../configure --srcdir=.. --prefix="$$dc_install_base" \
- $(DISTCHECK_CONFIGURE_FLAGS) \
- && $(MAKE) $(AM_MAKEFLAGS) \
- && $(MAKE) $(AM_MAKEFLAGS) dvi \
- && $(MAKE) $(AM_MAKEFLAGS) check \
- && $(MAKE) $(AM_MAKEFLAGS) install \
- && $(MAKE) $(AM_MAKEFLAGS) installcheck \
- && $(MAKE) $(AM_MAKEFLAGS) uninstall \
- && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
- distuninstallcheck \
- && chmod -R a-w "$$dc_install_base" \
- && ({ \
- (cd ../.. && umask 077 && mkdir "$$dc_destdir") \
- && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
- && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
- && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
- distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
- } || { rm -rf "$$dc_destdir"; exit 1; }) \
- && rm -rf "$$dc_destdir" \
- && $(MAKE) $(AM_MAKEFLAGS) dist \
- && rm -rf $(DIST_ARCHIVES) \
- && $(MAKE) $(AM_MAKEFLAGS) distcleancheck
- $(am__remove_distdir)
- @(echo "$(distdir) archives ready for distribution: "; \
- list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
- sed -e '1{h;s/./=/g;p;x;}' -e '$${p;x;}'
-distuninstallcheck:
- @cd $(distuninstallcheck_dir) \
- && test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \
- || { echo "ERROR: files left after uninstall:" ; \
- if test -n "$(DESTDIR)"; then \
- echo " (check DESTDIR support)"; \
- fi ; \
- $(distuninstallcheck_listfiles) ; \
- exit 1; } >&2
-distcleancheck: distclean
- @if test '$(srcdir)' = . ; then \
- echo "ERROR: distcleancheck can only run from a VPATH build" ; \
- exit 1 ; \
- fi
- @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
- || { echo "ERROR: files left in build directory after distclean:" ; \
- $(distcleancheck_listfiles) ; \
- exit 1; } >&2
-check-am: all-am
-check: check-recursive
-all-am: Makefile config.h
-installdirs: installdirs-recursive
-installdirs-am:
-install: install-recursive
-install-exec: install-exec-recursive
-install-data: install-data-recursive
-uninstall: uninstall-recursive
-
-install-am: all-am
- @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
-
-installcheck: installcheck-recursive
-install-strip:
- $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
- install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
- `test -z '$(STRIP)' || \
- echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
-mostlyclean-generic:
-
-clean-generic:
-
-distclean-generic:
- -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
-
-maintainer-clean-generic:
- @echo "This command is intended for maintainers to use"
- @echo "it deletes files that may require special tools to rebuild."
-clean: clean-recursive
-
-clean-am: clean-generic clean-libtool clean-local mostlyclean-am
-
-distclean: distclean-recursive
- -rm -f $(am__CONFIG_DISTCLEAN_FILES)
- -rm -f Makefile
-distclean-am: clean-am distclean-generic distclean-hdr \
- distclean-libtool distclean-tags
-
-dvi: dvi-recursive
-
-dvi-am:
-
-html: html-recursive
-
-info: info-recursive
-
-info-am:
-
-install-data-am: install-data-local
-
-install-exec-am:
-
-install-info: install-info-recursive
-
-install-man:
-
-installcheck-am:
-
-maintainer-clean: maintainer-clean-recursive
- -rm -f $(am__CONFIG_DISTCLEAN_FILES)
- -rm -rf $(top_srcdir)/autom4te.cache
- -rm -f Makefile
-maintainer-clean-am: distclean-am maintainer-clean-generic
-
-mostlyclean: mostlyclean-recursive
-
-mostlyclean-am: mostlyclean-generic mostlyclean-libtool
-
-pdf: pdf-recursive
-
-pdf-am:
-
-ps: ps-recursive
-
-ps-am:
-
-uninstall-am: uninstall-info-am uninstall-local
-
-uninstall-info: uninstall-info-recursive
-
-.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am am--refresh check \
- check-am clean clean-generic clean-libtool clean-local \
- clean-recursive ctags ctags-recursive dist dist-all dist-bzip2 \
- dist-gzip dist-hook dist-shar dist-tarZ dist-zip distcheck \
- distclean distclean-generic distclean-hdr distclean-libtool \
- distclean-recursive distclean-tags distcleancheck distdir \
- distuninstallcheck dvi dvi-am html html-am info info-am \
- install install-am install-data install-data-am \
- install-data-local install-exec install-exec-am install-info \
- install-info-am install-man install-strip installcheck \
- installcheck-am installdirs installdirs-am maintainer-clean \
- maintainer-clean-generic maintainer-clean-recursive \
- mostlyclean mostlyclean-generic mostlyclean-libtool \
- mostlyclean-recursive pdf pdf-am ps ps-am tags tags-recursive \
- uninstall uninstall-am uninstall-info-am uninstall-local
-
-
-docs:
- cd Documentation ; $(MAKE) $(AM_MAKEFLAGS) docs
-
-install-data-local: ecasoundrc
- $(INSTALL) -d $(DESTDIR)$(pkgdatadir)
- $(INSTALL_DATA) $(top_builddir)/ecasoundrc $(DESTDIR)$(pkgdatadir)/ecasoundrc
- $(INSTALL_DATA) $(top_srcdir)/effect_presets $(DESTDIR)$(pkgdatadir)/effect_presets
- $(INSTALL_DATA) $(top_srcdir)/ecatools/ecasound.el $(DESTDIR)$(pkgdatadir)/ecasound.el
- $(INSTALL_DATA) $(top_srcdir)/generic_oscillators $(DESTDIR)$(pkgdatadir)/generic_oscillators
-
-uninstall-local:
- rm -f $(DESTDIR)$(pkgdatadir)/effect_presets \
- $(DESTDIR)$(pkgdatadir)/ecasound.el \
- $(DESTDIR)$(pkgdatadir)/generic_oscillators \
- $(DESTDIR)$(pkgdatadir)/ecasoundrc
- rmdir $(DESTDIR)$(pkgdatadir) || echo "Skipping non-empty directory"
-
-ecasoundrc: ecasoundrc.in Makefile.am
- sed -e "s%[@]VERSION[@]%$(VERSION)%" \
- -e "s%[@]prefix[@]%$(prefix)%" \
- -e "s%[@]pkgdatadir[@]%$(pkgdatadir)%" \
- < $(top_srcdir)/ecasoundrc.in > ecasoundrc
-
-clean-local:
- rm -fv ecasoundrc
-
-dist-hook: docs
-# Tell versions [3.59,3.63) of GNU make to not export all variables.
-# Otherwise a system limit (for SysV at least) may be exceeded.
-.NOEXPORT:
diff --git a/library/ecasound-2.7.2/autom4te.cache/output.0 b/library/ecasound-2.7.2/autom4te.cache/output.0
deleted file mode 100644
index cb9e1ed90..000000000
--- a/library/ecasound-2.7.2/autom4te.cache/output.0
+++ /dev/null
@@ -1,25026 +0,0 @@
-@%:@! /bin/sh
-@%:@ Guess values for system-dependent variables and create Makefiles.
-@%:@ Generated by GNU Autoconf 2.65 for ecasound 2.7.2.
-@%:@
-@%:@
-@%:@ Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
-@%:@ 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,
-@%:@ Inc.
-@%:@
-@%:@
-@%:@ This configure script is free software; the Free Software Foundation
-@%:@ gives unlimited permission to copy, distribute and modify it.
-## -------------------- ##
-## M4sh Initialization. ##
-## -------------------- ##
-
-# Be more Bourne compatible
-DUALCASE=1; export DUALCASE # for MKS sh
-if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
- emulate sh
- NULLCMD=:
- # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
- # is contrary to our usage. Disable this feature.
- alias -g '${1+"$@"}'='"$@"'
- setopt NO_GLOB_SUBST
-else
- case `(set -o) 2>/dev/null` in @%:@(
- *posix*) :
- set -o posix ;; @%:@(
- *) :
- ;;
-esac
-fi
-
-
-as_nl='
-'
-export as_nl
-# Printing a long string crashes Solaris 7 /usr/bin/printf.
-as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
-as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
-as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
-# Prefer a ksh shell builtin over an external printf program on Solaris,
-# but without wasting forks for bash or zsh.
-if test -z "$BASH_VERSION$ZSH_VERSION" \
- && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
- as_echo='print -r --'
- as_echo_n='print -rn --'
-elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
- as_echo='printf %s\n'
- as_echo_n='printf %s'
-else
- if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
- as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
- as_echo_n='/usr/ucb/echo -n'
- else
- as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
- as_echo_n_body='eval
- arg=$1;
- case $arg in @%:@(
- *"$as_nl"*)
- expr "X$arg" : "X\\(.*\\)$as_nl";
- arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
- esac;
- expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
- '
- export as_echo_n_body
- as_echo_n='sh -c $as_echo_n_body as_echo'
- fi
- export as_echo_body
- as_echo='sh -c $as_echo_body as_echo'
-fi
-
-# The user is always right.
-if test "${PATH_SEPARATOR+set}" != set; then
- PATH_SEPARATOR=:
- (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
- (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
- PATH_SEPARATOR=';'
- }
-fi
-
-
-# IFS
-# We need space, tab and new line, in precisely that order. Quoting is
-# there to prevent editors from complaining about space-tab.
-# (If _AS_PATH_WALK were called with IFS unset, it would disable word
-# splitting by setting IFS to empty value.)
-IFS=" "" $as_nl"
-
-# Find who we are. Look in the path if we contain no directory separator.
-case $0 in @%:@((
- *[\\/]* ) as_myself=$0 ;;
- *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-for as_dir in $PATH
-do
- IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
- done
-IFS=$as_save_IFS
-
- ;;
-esac
-# We did not find ourselves, most probably we were run as `sh COMMAND'
-# in which case we are not to be found in the path.
-if test "x$as_myself" = x; then
- as_myself=$0
-fi
-if test ! -f "$as_myself"; then
- $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
- exit 1
-fi
-
-# Unset variables that we do not need and which cause bugs (e.g. in
-# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1"
-# suppresses any "Segmentation fault" message there. '((' could
-# trigger a bug in pdksh 5.2.14.
-for as_var in BASH_ENV ENV MAIL MAILPATH
-do eval test x\${$as_var+set} = xset \
- && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
-done
-PS1='$ '
-PS2='> '
-PS4='+ '
-
-# NLS nuisances.
-LC_ALL=C
-export LC_ALL
-LANGUAGE=C
-export LANGUAGE
-
-# CDPATH.
-(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
-
-if test "x$CONFIG_SHELL" = x; then
- as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then :
- emulate sh
- NULLCMD=:
- # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which
- # is contrary to our usage. Disable this feature.
- alias -g '\${1+\"\$@\"}'='\"\$@\"'
- setopt NO_GLOB_SUBST
-else
- case \`(set -o) 2>/dev/null\` in @%:@(
- *posix*) :
- set -o posix ;; @%:@(
- *) :
- ;;
-esac
-fi
-"
- as_required="as_fn_return () { (exit \$1); }
-as_fn_success () { as_fn_return 0; }
-as_fn_failure () { as_fn_return 1; }
-as_fn_ret_success () { return 0; }
-as_fn_ret_failure () { return 1; }
-
-exitcode=0
-as_fn_success || { exitcode=1; echo as_fn_success failed.; }
-as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; }
-as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; }
-as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; }
-if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then :
-
-else
- exitcode=1; echo positional parameters were not saved.
-fi
-test x\$exitcode = x0 || exit 1"
- as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO
- as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO
- eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" &&
- test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1
-test \$(( 1 + 1 )) = 2 || exit 1"
- if (eval "$as_required") 2>/dev/null; then :
- as_have_required=yes
-else
- as_have_required=no
-fi
- if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then :
-
-else
- as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-as_found=false
-for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
-do
- IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- as_found=:
- case $as_dir in @%:@(
- /*)
- for as_base in sh bash ksh sh5; do
- # Try only shells that exist, to save several forks.
- as_shell=$as_dir/$as_base
- if { test -f "$as_shell" || test -f "$as_shell.exe"; } &&
- { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then :
- CONFIG_SHELL=$as_shell as_have_required=yes
- if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then :
- break 2
-fi
-fi
- done;;
- esac
- as_found=false
-done
-$as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } &&
- { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then :
- CONFIG_SHELL=$SHELL as_have_required=yes
-fi; }
-IFS=$as_save_IFS
-
-
- if test "x$CONFIG_SHELL" != x; then :
- # We cannot yet assume a decent shell, so we have to provide a
- # neutralization value for shells without unset; and this also
- # works around shells that cannot unset nonexistent variables.
- BASH_ENV=/dev/null
- ENV=/dev/null
- (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
- export CONFIG_SHELL
- exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"}
-fi
-
- if test x$as_have_required = xno; then :
- $as_echo "$0: This script requires a shell more modern than all"
- $as_echo "$0: the shells that I found on your system."
- if test x${ZSH_VERSION+set} = xset ; then
- $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should"
- $as_echo "$0: be upgraded to zsh 4.3.4 or later."
- else
- $as_echo "$0: Please tell bug-autoconf@gnu.org about your system,
-$0: including any error possibly output before this
-$0: message. Then install a modern shell, or manually run
-$0: the script under such a shell if you do have one."
- fi
- exit 1
-fi
-fi
-fi
-SHELL=${CONFIG_SHELL-/bin/sh}
-export SHELL
-# Unset more variables known to interfere with behavior of common tools.
-CLICOLOR_FORCE= GREP_OPTIONS=
-unset CLICOLOR_FORCE GREP_OPTIONS
-
-## --------------------- ##
-## M4sh Shell Functions. ##
-## --------------------- ##
-@%:@ as_fn_unset VAR
-@%:@ ---------------
-@%:@ Portably unset VAR.
-as_fn_unset ()
-{
- { eval $1=; unset $1;}
-}
-as_unset=as_fn_unset
-
-@%:@ as_fn_set_status STATUS
-@%:@ -----------------------
-@%:@ Set @S|@? to STATUS, without forking.
-as_fn_set_status ()
-{
- return $1
-} @%:@ as_fn_set_status
-
-@%:@ as_fn_exit STATUS
-@%:@ -----------------
-@%:@ Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
-as_fn_exit ()
-{
- set +e
- as_fn_set_status $1
- exit $1
-} @%:@ as_fn_exit
-
-@%:@ as_fn_mkdir_p
-@%:@ -------------
-@%:@ Create "@S|@as_dir" as a directory, including parents if necessary.
-as_fn_mkdir_p ()
-{
-
- case $as_dir in #(
- -*) as_dir=./$as_dir;;
- esac
- test -d "$as_dir" || eval $as_mkdir_p || {
- as_dirs=
- while :; do
- case $as_dir in #(
- *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
- *) as_qdir=$as_dir;;
- esac
- as_dirs="'$as_qdir' $as_dirs"
- as_dir=`$as_dirname -- "$as_dir" ||
-$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
- X"$as_dir" : 'X\(//\)[^/]' \| \
- X"$as_dir" : 'X\(//\)$' \| \
- X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
-$as_echo X"$as_dir" |
- sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
- s//\1/
- q
- }
- /^X\(\/\/\)[^/].*/{
- s//\1/
- q
- }
- /^X\(\/\/\)$/{
- s//\1/
- q
- }
- /^X\(\/\).*/{
- s//\1/
- q
- }
- s/.*/./; q'`
- test -d "$as_dir" && break
- done
- test -z "$as_dirs" || eval "mkdir $as_dirs"
- } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir"
-
-
-} @%:@ as_fn_mkdir_p
-@%:@ as_fn_append VAR VALUE
-@%:@ ----------------------
-@%:@ Append the text in VALUE to the end of the definition contained in VAR. Take
-@%:@ advantage of any shell optimizations that allow amortized linear growth over
-@%:@ repeated appends, instead of the typical quadratic growth present in naive
-@%:@ implementations.
-if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
- eval 'as_fn_append ()
- {
- eval $1+=\$2
- }'
-else
- as_fn_append ()
- {
- eval $1=\$$1\$2
- }
-fi # as_fn_append
-
-@%:@ as_fn_arith ARG...
-@%:@ ------------------
-@%:@ Perform arithmetic evaluation on the ARGs, and store the result in the
-@%:@ global @S|@as_val. Take advantage of shells that can avoid forks. The arguments
-@%:@ must be portable across @S|@(()) and expr.
-if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
- eval 'as_fn_arith ()
- {
- as_val=$(( $* ))
- }'
-else
- as_fn_arith ()
- {
- as_val=`expr "$@" || test $? -eq 1`
- }
-fi # as_fn_arith
-
-
-@%:@ as_fn_error ERROR [LINENO LOG_FD]
-@%:@ ---------------------------------
-@%:@ Output "`basename @S|@0`: error: ERROR" to stderr. If LINENO and LOG_FD are
-@%:@ provided, also output the error to LOG_FD, referencing LINENO. Then exit the
-@%:@ script with status @S|@?, using 1 if that was 0.
-as_fn_error ()
-{
- as_status=$?; test $as_status -eq 0 && as_status=1
- if test "$3"; then
- as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
- $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3
- fi
- $as_echo "$as_me: error: $1" >&2
- as_fn_exit $as_status
-} @%:@ as_fn_error
-
-if expr a : '\(a\)' >/dev/null 2>&1 &&
- test "X`expr 00001 : '.*\(...\)'`" = X001; then
- as_expr=expr
-else
- as_expr=false
-fi
-
-if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
- as_basename=basename
-else
- as_basename=false
-fi
-
-if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
- as_dirname=dirname
-else
- as_dirname=false
-fi
-
-as_me=`$as_basename -- "$0" ||
-$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
- X"$0" : 'X\(//\)$' \| \
- X"$0" : 'X\(/\)' \| . 2>/dev/null ||
-$as_echo X/"$0" |
- sed '/^.*\/\([^/][^/]*\)\/*$/{
- s//\1/
- q
- }
- /^X\/\(\/\/\)$/{
- s//\1/
- q
- }
- /^X\/\(\/\).*/{
- s//\1/
- q
- }
- s/.*/./; q'`
-
-# Avoid depending upon Character Ranges.
-as_cr_letters='abcdefghijklmnopqrstuvwxyz'
-as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
-as_cr_Letters=$as_cr_letters$as_cr_LETTERS
-as_cr_digits='0123456789'
-as_cr_alnum=$as_cr_Letters$as_cr_digits
-
-
- as_lineno_1=$LINENO as_lineno_1a=$LINENO
- as_lineno_2=$LINENO as_lineno_2a=$LINENO
- eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" &&
- test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || {
- # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-)
- sed -n '
- p
- /[$]LINENO/=
- ' <$as_myself |
- sed '
- s/[$]LINENO.*/&-/
- t lineno
- b
- :lineno
- N
- :loop
- s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/
- t loop
- s/-\n.*//
- ' >$as_me.lineno &&
- chmod +x "$as_me.lineno" ||
- { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; }
-
- # Don't try to exec as it changes $[0], causing all sort of problems
- # (the dirname of $[0] is not the place where we might find the
- # original and so on. Autoconf is especially sensitive to this).
- . "./$as_me.lineno"
- # Exit status is that of the last command.
- exit
-}
-
-ECHO_C= ECHO_N= ECHO_T=
-case `echo -n x` in @%:@(((((
--n*)
- case `echo 'xy\c'` in
- *c*) ECHO_T=' ';; # ECHO_T is single tab character.
- xy) ECHO_C='\c';;
- *) echo `echo ksh88 bug on AIX 6.1` > /dev/null
- ECHO_T=' ';;
- esac;;
-*)
- ECHO_N='-n';;
-esac
-
-rm -f conf$$ conf$$.exe conf$$.file
-if test -d conf$$.dir; then
- rm -f conf$$.dir/conf$$.file
-else
- rm -f conf$$.dir
- mkdir conf$$.dir 2>/dev/null
-fi
-if (echo >conf$$.file) 2>/dev/null; then
- if ln -s conf$$.file conf$$ 2>/dev/null; then
- as_ln_s='ln -s'
- # ... but there are two gotchas:
- # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
- # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
- # In both cases, we have to default to `cp -p'.
- ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
- as_ln_s='cp -p'
- elif ln conf$$.file conf$$ 2>/dev/null; then
- as_ln_s=ln
- else
- as_ln_s='cp -p'
- fi
-else
- as_ln_s='cp -p'
-fi
-rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
-rmdir conf$$.dir 2>/dev/null
-
-if mkdir -p . 2>/dev/null; then
- as_mkdir_p='mkdir -p "$as_dir"'
-else
- test -d ./-p && rmdir ./-p
- as_mkdir_p=false
-fi
-
-if test -x / >/dev/null 2>&1; then
- as_test_x='test -x'
-else
- if ls -dL / >/dev/null 2>&1; then
- as_ls_L_option=L
- else
- as_ls_L_option=
- fi
- as_test_x='
- eval sh -c '\''
- if test -d "$1"; then
- test -d "$1/.";
- else
- case $1 in @%:@(
- -*)set "./$1";;
- esac;
- case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in @%:@((
- ???[sx]*):;;*)false;;esac;fi
- '\'' sh
- '
-fi
-as_executable_p=$as_test_x
-
-# Sed expression to map a string onto a valid CPP name.
-as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
-
-# Sed expression to map a string onto a valid variable name.
-as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
-
-
-
-# Check that we are running under the correct shell.
-SHELL=${CONFIG_SHELL-/bin/sh}
-
-case X$ECHO in
-X*--fallback-echo)
- # Remove one level of quotation (which was required for Make).
- ECHO=`echo "$ECHO" | sed 's,\\\\\$\\$0,'$0','`
- ;;
-esac
-
-echo=${ECHO-echo}
-if test "X$1" = X--no-reexec; then
- # Discard the --no-reexec flag, and continue.
- shift
-elif test "X$1" = X--fallback-echo; then
- # Avoid inline document here, it may be left over
- :
-elif test "X`($echo '\t') 2>/dev/null`" = 'X\t' ; then
- # Yippee, $echo works!
- :
-else
- # Restart under the correct shell.
- exec $SHELL "$0" --no-reexec ${1+"$@"}
-fi
-
-if test "X$1" = X--fallback-echo; then
- # used as fallback echo
- shift
- cat </dev/null 2>&1 && unset CDPATH
-
-if test -z "$ECHO"; then
-if test "X${echo_test_string+set}" != Xset; then
-# find a string as large as possible, as long as the shell can cope with it
- for cmd in 'sed 50q "$0"' 'sed 20q "$0"' 'sed 10q "$0"' 'sed 2q "$0"' 'echo test'; do
- # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ...
- if (echo_test_string=`eval $cmd`) 2>/dev/null &&
- echo_test_string=`eval $cmd` &&
- (test "X$echo_test_string" = "X$echo_test_string") 2>/dev/null
- then
- break
- fi
- done
-fi
-
-if test "X`($echo '\t') 2>/dev/null`" = 'X\t' &&
- echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` &&
- test "X$echo_testing_string" = "X$echo_test_string"; then
- :
-else
- # The Solaris, AIX, and Digital Unix default echo programs unquote
- # backslashes. This makes it impossible to quote backslashes using
- # echo "$something" | sed 's/\\/\\\\/g'
- #
- # So, first we look for a working echo in the user's PATH.
-
- lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
- for dir in $PATH /usr/ucb; do
- IFS="$lt_save_ifs"
- if (test -f $dir/echo || test -f $dir/echo$ac_exeext) &&
- test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' &&
- echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` &&
- test "X$echo_testing_string" = "X$echo_test_string"; then
- echo="$dir/echo"
- break
- fi
- done
- IFS="$lt_save_ifs"
-
- if test "X$echo" = Xecho; then
- # We didn't find a better echo, so look for alternatives.
- if test "X`(print -r '\t') 2>/dev/null`" = 'X\t' &&
- echo_testing_string=`(print -r "$echo_test_string") 2>/dev/null` &&
- test "X$echo_testing_string" = "X$echo_test_string"; then
- # This shell has a builtin print -r that does the trick.
- echo='print -r'
- elif (test -f /bin/ksh || test -f /bin/ksh$ac_exeext) &&
- test "X$CONFIG_SHELL" != X/bin/ksh; then
- # If we have ksh, try running configure again with it.
- ORIGINAL_CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}
- export ORIGINAL_CONFIG_SHELL
- CONFIG_SHELL=/bin/ksh
- export CONFIG_SHELL
- exec $CONFIG_SHELL "$0" --no-reexec ${1+"$@"}
- else
- # Try using printf.
- echo='printf %s\n'
- if test "X`($echo '\t') 2>/dev/null`" = 'X\t' &&
- echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` &&
- test "X$echo_testing_string" = "X$echo_test_string"; then
- # Cool, printf works
- :
- elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "$0" --fallback-echo '\t') 2>/dev/null` &&
- test "X$echo_testing_string" = 'X\t' &&
- echo_testing_string=`($ORIGINAL_CONFIG_SHELL "$0" --fallback-echo "$echo_test_string") 2>/dev/null` &&
- test "X$echo_testing_string" = "X$echo_test_string"; then
- CONFIG_SHELL=$ORIGINAL_CONFIG_SHELL
- export CONFIG_SHELL
- SHELL="$CONFIG_SHELL"
- export SHELL
- echo="$CONFIG_SHELL $0 --fallback-echo"
- elif echo_testing_string=`($CONFIG_SHELL "$0" --fallback-echo '\t') 2>/dev/null` &&
- test "X$echo_testing_string" = 'X\t' &&
- echo_testing_string=`($CONFIG_SHELL "$0" --fallback-echo "$echo_test_string") 2>/dev/null` &&
- test "X$echo_testing_string" = "X$echo_test_string"; then
- echo="$CONFIG_SHELL $0 --fallback-echo"
- else
- # maybe with a smaller string...
- prev=:
-
- for cmd in 'echo test' 'sed 2q "$0"' 'sed 10q "$0"' 'sed 20q "$0"' 'sed 50q "$0"'; do
- if (test "X$echo_test_string" = "X`eval $cmd`") 2>/dev/null
- then
- break
- fi
- prev="$cmd"
- done
-
- if test "$prev" != 'sed 50q "$0"'; then
- echo_test_string=`eval $prev`
- export echo_test_string
- exec ${ORIGINAL_CONFIG_SHELL-${CONFIG_SHELL-/bin/sh}} "$0" ${1+"$@"}
- else
- # Oops. We lost completely, so just stick with echo.
- echo=echo
- fi
- fi
- fi
- fi
-fi
-fi
-
-# Copy echo and quote the copy suitably for passing to libtool from
-# the Makefile, instead of quoting the original, which is used later.
-ECHO=$echo
-if test "X$ECHO" = "X$CONFIG_SHELL $0 --fallback-echo"; then
- ECHO="$CONFIG_SHELL \\\$\$0 --fallback-echo"
-fi
-
-
-
-
-tagnames=${tagnames+${tagnames},}CXX
-
-tagnames=${tagnames+${tagnames},}F77
-
-test -n "$DJDIR" || exec 7<&0 &1
-
-# Name of the host.
-# hostname on some systems (SVR3.2, Linux) returns a bogus exit status,
-# so uname gets run too.
-ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`
-
-#
-# Initializations.
-#
-ac_default_prefix=/usr/local
-ac_clean_files=
-ac_config_libobj_dir=.
-LIB@&t@OBJS=
-cross_compiling=no
-subdirs=
-MFLAGS=
-MAKEFLAGS=
-
-# Identity of this package.
-PACKAGE_NAME='ecasound'
-PACKAGE_TARNAME='ecasound'
-PACKAGE_VERSION='2.7.2'
-PACKAGE_STRING='ecasound 2.7.2'
-PACKAGE_BUGREPORT=''
-PACKAGE_URL=''
-
-ac_unique_file="libecasound/audiofx.h"
-# Factoring default headers for most tests.
-ac_includes_default="\
-#include
-#ifdef HAVE_SYS_TYPES_H
-# include
-#endif
-#ifdef HAVE_SYS_STAT_H
-# include
-#endif
-#ifdef STDC_HEADERS
-# include
-# include
-#else
-# ifdef HAVE_STDLIB_H
-# include
-# endif
-#endif
-#ifdef HAVE_STRING_H
-# if !defined STDC_HEADERS && defined HAVE_MEMORY_H
-# include
-# endif
-# include
-#endif
-#ifdef HAVE_STRINGS_H
-# include
-#endif
-#ifdef HAVE_INTTYPES_H
-# include
-#endif
-#ifdef HAVE_STDINT_H
-# include
-#endif
-#ifdef HAVE_UNISTD_H
-# include
-#endif"
-
-ac_header_list=
-ac_subst_vars='LTLIBOBJS
-LIB@&t@OBJS
-ECA_AM_ALL_STATIC_FALSE
-ECA_AM_ALL_STATIC_TRUE
-ECA_S_EXTRA_LIBS
-ECA_S_EXTRA_CPPFLAGS
-LIBLO_LIBS
-LIBLO_CFLAGS
-LIBOIL_LIBS
-LIBOIL_CFLAGS
-PKG_CONFIG
-ECA_S_READLINE_LIBS
-ECA_S_READLINE_INCLUDES
-ECA_AM_SYSTEM_READLINE_FALSE
-ECA_AM_SYSTEM_READLINE_TRUE
-ECA_AM_KVUTILS_INSTALLED_FALSE
-ECA_AM_KVUTILS_INSTALLED_TRUE
-ECA_S_JACK_INCLUDES
-ECA_S_JACK_LIBS
-ECA_AM_COMPILE_JACK_FALSE
-ECA_AM_COMPILE_JACK_TRUE
-ECA_AM_COMPILE_ALSA_FALSE
-ECA_AM_COMPILE_ALSA_TRUE
-ECA_AM_COMPILE_SNDFILE_FALSE
-ECA_AM_COMPILE_SNDFILE_TRUE
-ECA_AM_COMPILE_AUDIOFILE_FALSE
-ECA_AM_COMPILE_AUDIOFILE_TRUE
-ECA_AM_USE_TERMCAP_FALSE
-ECA_AM_USE_TERMCAP_TRUE
-ECA_AM_USE_NCURSES_FALSE
-ECA_AM_USE_NCURSES_TRUE
-LIBTOOL
-ac_ct_F77
-FFLAGS
-F77
-NMEDIT
-DSYMUTIL
-RANLIB
-AR
-ECHO
-LN_S
-SED
-ECA_AM_RUBYECASOUND_INSTALL_FALSE
-ECA_AM_RUBYECASOUND_INSTALL_TRUE
-ECA_S_RUBY_SITEDIR
-RUBYPATH
-ECA_AM_PYECASOUND_INSTALL_FALSE
-ECA_AM_PYECASOUND_INSTALL_TRUE
-ECA_AM_PYECASOUND_CEXT_FALSE
-ECA_AM_PYECASOUND_CEXT_TRUE
-ECA_S_PYTHON_DLMODULES
-ECA_S_PYTHON_MODULES
-ECA_S_PYTHON_INCLUDES
-PYTHONPATH
-ECA_AM_COMPILE_SAMPLERATE_FALSE
-ECA_AM_COMPILE_SAMPLERATE_TRUE
-ECA_AM_COMPILE_ARTS_FALSE
-ECA_AM_COMPILE_ARTS_TRUE
-ARTSC_CONFIG
-ECA_AM_COMPILE_OSS_FALSE
-ECA_AM_COMPILE_OSS_TRUE
-EGREP
-GREP
-CXXCPP
-ECA_AM_DISABLE_EFFECTS_FALSE
-ECA_AM_DISABLE_EFFECTS_TRUE
-ECA_S_PREFIX
-ECA_AM_FEELING_EXPERIMENTAL_FALSE
-ECA_AM_FEELING_EXPERIMENTAL_TRUE
-ECA_AM_DEBUG_MODE_FALSE
-ECA_AM_DEBUG_MODE_TRUE
-AM_LDFLAGS
-AM_CPPFLAGS
-AM_CXXFLAGS
-AM_CFLAGS
-host_os
-host_vendor
-host_cpu
-host
-build_os
-build_vendor
-build_cpu
-build
-CPP
-am__fastdepCXX_FALSE
-am__fastdepCXX_TRUE
-CXXDEPMODE
-ac_ct_CXX
-CXXFLAGS
-CXX
-am__fastdepCC_FALSE
-am__fastdepCC_TRUE
-CCDEPMODE
-AMDEPBACKSLASH
-AMDEP_FALSE
-AMDEP_TRUE
-am__quote
-am__include
-DEPDIR
-OBJEXT
-EXEEXT
-ac_ct_CC
-CPPFLAGS
-LDFLAGS
-CFLAGS
-CC
-LIBKVUTILS_VERSION_AGE
-LIBKVUTILS_VERSION
-LIBECASOUNDC_VERSION_AGE
-LIBECASOUNDC_VERSION
-LIBECASOUND_VERSION_AGE
-LIBECASOUND_VERSION
-am__untar
-am__tar
-AMTAR
-am__leading_dot
-SET_MAKE
-AWK
-mkdir_p
-INSTALL_STRIP_PROGRAM
-STRIP
-install_sh
-MAKEINFO
-AUTOHEADER
-AUTOMAKE
-AUTOCONF
-ACLOCAL
-VERSION
-PACKAGE
-CYGPATH_W
-INSTALL_DATA
-INSTALL_SCRIPT
-INSTALL_PROGRAM
-target_alias
-host_alias
-build_alias
-LIBS
-ECHO_T
-ECHO_N
-ECHO_C
-DEFS
-mandir
-localedir
-libdir
-psdir
-pdfdir
-dvidir
-htmldir
-infodir
-docdir
-oldincludedir
-includedir
-localstatedir
-sharedstatedir
-sysconfdir
-datadir
-datarootdir
-libexecdir
-sbindir
-bindir
-program_transform_name
-prefix
-exec_prefix
-PACKAGE_URL
-PACKAGE_BUGREPORT
-PACKAGE_STRING
-PACKAGE_VERSION
-PACKAGE_TARNAME
-PACKAGE_NAME
-PATH_SEPARATOR
-SHELL'
-ac_subst_files=''
-ac_user_opts='
-enable_option_checking
-enable_dependency_tracking
-enable_debug
-enable_experimental
-enable_dbc
-enable_effects
-with_extra_cppflags
-with_extra_libs
-with_largefile
-enable_largefile
-enable_oss
-enable_osstrigger
-enable_arts
-with_libsamplerate
-enable_libsamplerate
-enable_pyecasound
-with_python_includes
-with_python_modules
-enable_python_force_site_packages
-enable_rubyecasound
-enable_shared
-enable_static
-enable_fast_install
-with_gnu_ld
-enable_libtool_lock
-with_pic
-with_tags
-enable_ncurses
-enable_audiofile
-enable_sndfile
-enable_alsa
-with_jack
-enable_jack
-enable_sys_readline
-enable_liboil
-enable_liblo
-enable_all_static
-'
- ac_precious_vars='build_alias
-host_alias
-target_alias
-CC
-CFLAGS
-LDFLAGS
-LIBS
-CPPFLAGS
-CXX
-CXXFLAGS
-CCC
-CPP
-CXXCPP
-F77
-FFLAGS
-PKG_CONFIG
-LIBOIL_CFLAGS
-LIBOIL_LIBS
-LIBLO_CFLAGS
-LIBLO_LIBS'
-
-
-# Initialize some variables set by options.
-ac_init_help=
-ac_init_version=false
-ac_unrecognized_opts=
-ac_unrecognized_sep=
-# The variables have the same names as the options, with
-# dashes changed to underlines.
-cache_file=/dev/null
-exec_prefix=NONE
-no_create=
-no_recursion=
-prefix=NONE
-program_prefix=NONE
-program_suffix=NONE
-program_transform_name=s,x,x,
-silent=
-site=
-srcdir=
-verbose=
-x_includes=NONE
-x_libraries=NONE
-
-# Installation directory options.
-# These are left unexpanded so users can "make install exec_prefix=/foo"
-# and all the variables that are supposed to be based on exec_prefix
-# by default will actually change.
-# Use braces instead of parens because sh, perl, etc. also accept them.
-# (The list follows the same order as the GNU Coding Standards.)
-bindir='${exec_prefix}/bin'
-sbindir='${exec_prefix}/sbin'
-libexecdir='${exec_prefix}/libexec'
-datarootdir='${prefix}/share'
-datadir='${datarootdir}'
-sysconfdir='${prefix}/etc'
-sharedstatedir='${prefix}/com'
-localstatedir='${prefix}/var'
-includedir='${prefix}/include'
-oldincludedir='/usr/include'
-docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
-infodir='${datarootdir}/info'
-htmldir='${docdir}'
-dvidir='${docdir}'
-pdfdir='${docdir}'
-psdir='${docdir}'
-libdir='${exec_prefix}/lib'
-localedir='${datarootdir}/locale'
-mandir='${datarootdir}/man'
-
-ac_prev=
-ac_dashdash=
-for ac_option
-do
- # If the previous option needs an argument, assign it.
- if test -n "$ac_prev"; then
- eval $ac_prev=\$ac_option
- ac_prev=
- continue
- fi
-
- case $ac_option in
- *=*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
- *) ac_optarg=yes ;;
- esac
-
- # Accept the important Cygnus configure options, so we can diagnose typos.
-
- case $ac_dashdash$ac_option in
- --)
- ac_dashdash=yes ;;
-
- -bindir | --bindir | --bindi | --bind | --bin | --bi)
- ac_prev=bindir ;;
- -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
- bindir=$ac_optarg ;;
-
- -build | --build | --buil | --bui | --bu)
- ac_prev=build_alias ;;
- -build=* | --build=* | --buil=* | --bui=* | --bu=*)
- build_alias=$ac_optarg ;;
-
- -cache-file | --cache-file | --cache-fil | --cache-fi \
- | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
- ac_prev=cache_file ;;
- -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
- | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
- cache_file=$ac_optarg ;;
-
- --config-cache | -C)
- cache_file=config.cache ;;
-
- -datadir | --datadir | --datadi | --datad)
- ac_prev=datadir ;;
- -datadir=* | --datadir=* | --datadi=* | --datad=*)
- datadir=$ac_optarg ;;
-
- -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \
- | --dataroo | --dataro | --datar)
- ac_prev=datarootdir ;;
- -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \
- | --dataroot=* | --dataroo=* | --dataro=* | --datar=*)
- datarootdir=$ac_optarg ;;
-
- -disable-* | --disable-*)
- ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
- # Reject names that are not valid shell variable names.
- expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
- as_fn_error "invalid feature name: $ac_useropt"
- ac_useropt_orig=$ac_useropt
- ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
- case $ac_user_opts in
- *"
-"enable_$ac_useropt"
-"*) ;;
- *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig"
- ac_unrecognized_sep=', ';;
- esac
- eval enable_$ac_useropt=no ;;
-
- -docdir | --docdir | --docdi | --doc | --do)
- ac_prev=docdir ;;
- -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*)
- docdir=$ac_optarg ;;
-
- -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv)
- ac_prev=dvidir ;;
- -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*)
- dvidir=$ac_optarg ;;
-
- -enable-* | --enable-*)
- ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
- # Reject names that are not valid shell variable names.
- expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
- as_fn_error "invalid feature name: $ac_useropt"
- ac_useropt_orig=$ac_useropt
- ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
- case $ac_user_opts in
- *"
-"enable_$ac_useropt"
-"*) ;;
- *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig"
- ac_unrecognized_sep=', ';;
- esac
- eval enable_$ac_useropt=\$ac_optarg ;;
-
- -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
- | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
- | --exec | --exe | --ex)
- ac_prev=exec_prefix ;;
- -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
- | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
- | --exec=* | --exe=* | --ex=*)
- exec_prefix=$ac_optarg ;;
-
- -gas | --gas | --ga | --g)
- # Obsolete; use --with-gas.
- with_gas=yes ;;
-
- -help | --help | --hel | --he | -h)
- ac_init_help=long ;;
- -help=r* | --help=r* | --hel=r* | --he=r* | -hr*)
- ac_init_help=recursive ;;
- -help=s* | --help=s* | --hel=s* | --he=s* | -hs*)
- ac_init_help=short ;;
-
- -host | --host | --hos | --ho)
- ac_prev=host_alias ;;
- -host=* | --host=* | --hos=* | --ho=*)
- host_alias=$ac_optarg ;;
-
- -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht)
- ac_prev=htmldir ;;
- -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \
- | --ht=*)
- htmldir=$ac_optarg ;;
-
- -includedir | --includedir | --includedi | --included | --include \
- | --includ | --inclu | --incl | --inc)
- ac_prev=includedir ;;
- -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \
- | --includ=* | --inclu=* | --incl=* | --inc=*)
- includedir=$ac_optarg ;;
-
- -infodir | --infodir | --infodi | --infod | --info | --inf)
- ac_prev=infodir ;;
- -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
- infodir=$ac_optarg ;;
-
- -libdir | --libdir | --libdi | --libd)
- ac_prev=libdir ;;
- -libdir=* | --libdir=* | --libdi=* | --libd=*)
- libdir=$ac_optarg ;;
-
- -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \
- | --libexe | --libex | --libe)
- ac_prev=libexecdir ;;
- -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \
- | --libexe=* | --libex=* | --libe=*)
- libexecdir=$ac_optarg ;;
-
- -localedir | --localedir | --localedi | --localed | --locale)
- ac_prev=localedir ;;
- -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*)
- localedir=$ac_optarg ;;
-
- -localstatedir | --localstatedir | --localstatedi | --localstated \
- | --localstate | --localstat | --localsta | --localst | --locals)
- ac_prev=localstatedir ;;
- -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \
- | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*)
- localstatedir=$ac_optarg ;;
-
- -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
- ac_prev=mandir ;;
- -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)
- mandir=$ac_optarg ;;
-
- -nfp | --nfp | --nf)
- # Obsolete; use --without-fp.
- with_fp=no ;;
-
- -no-create | --no-create | --no-creat | --no-crea | --no-cre \
- | --no-cr | --no-c | -n)
- no_create=yes ;;
-
- -no-recursion | --no-recursion | --no-recursio | --no-recursi \
- | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
- no_recursion=yes ;;
-
- -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \
- | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \
- | --oldin | --oldi | --old | --ol | --o)
- ac_prev=oldincludedir ;;
- -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \
- | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \
- | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)
- oldincludedir=$ac_optarg ;;
-
- -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
- ac_prev=prefix ;;
- -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
- prefix=$ac_optarg ;;
-
- -program-prefix | --program-prefix | --program-prefi | --program-pref \
- | --program-pre | --program-pr | --program-p)
- ac_prev=program_prefix ;;
- -program-prefix=* | --program-prefix=* | --program-prefi=* \
- | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
- program_prefix=$ac_optarg ;;
-
- -program-suffix | --program-suffix | --program-suffi | --program-suff \
- | --program-suf | --program-su | --program-s)
- ac_prev=program_suffix ;;
- -program-suffix=* | --program-suffix=* | --program-suffi=* \
- | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
- program_suffix=$ac_optarg ;;
-
- -program-transform-name | --program-transform-name \
- | --program-transform-nam | --program-transform-na \
- | --program-transform-n | --program-transform- \
- | --program-transform | --program-transfor \
- | --program-transfo | --program-transf \
- | --program-trans | --program-tran \
- | --progr-tra | --program-tr | --program-t)
- ac_prev=program_transform_name ;;
- -program-transform-name=* | --program-transform-name=* \
- | --program-transform-nam=* | --program-transform-na=* \
- | --program-transform-n=* | --program-transform-=* \
- | --program-transform=* | --program-transfor=* \
- | --program-transfo=* | --program-transf=* \
- | --program-trans=* | --program-tran=* \
- | --progr-tra=* | --program-tr=* | --program-t=*)
- program_transform_name=$ac_optarg ;;
-
- -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd)
- ac_prev=pdfdir ;;
- -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*)
- pdfdir=$ac_optarg ;;
-
- -psdir | --psdir | --psdi | --psd | --ps)
- ac_prev=psdir ;;
- -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*)
- psdir=$ac_optarg ;;
-
- -q | -quiet | --quiet | --quie | --qui | --qu | --q \
- | -silent | --silent | --silen | --sile | --sil)
- silent=yes ;;
-
- -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
- ac_prev=sbindir ;;
- -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
- | --sbi=* | --sb=*)
- sbindir=$ac_optarg ;;
-
- -sharedstatedir | --sharedstatedir | --sharedstatedi \
- | --sharedstated | --sharedstate | --sharedstat | --sharedsta \
- | --sharedst | --shareds | --shared | --share | --shar \
- | --sha | --sh)
- ac_prev=sharedstatedir ;;
- -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \
- | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \
- | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \
- | --sha=* | --sh=*)
- sharedstatedir=$ac_optarg ;;
-
- -site | --site | --sit)
- ac_prev=site ;;
- -site=* | --site=* | --sit=*)
- site=$ac_optarg ;;
-
- -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
- ac_prev=srcdir ;;
- -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
- srcdir=$ac_optarg ;;
-
- -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \
- | --syscon | --sysco | --sysc | --sys | --sy)
- ac_prev=sysconfdir ;;
- -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \
- | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*)
- sysconfdir=$ac_optarg ;;
-
- -target | --target | --targe | --targ | --tar | --ta | --t)
- ac_prev=target_alias ;;
- -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
- target_alias=$ac_optarg ;;
-
- -v | -verbose | --verbose | --verbos | --verbo | --verb)
- verbose=yes ;;
-
- -version | --version | --versio | --versi | --vers | -V)
- ac_init_version=: ;;
-
- -with-* | --with-*)
- ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
- # Reject names that are not valid shell variable names.
- expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
- as_fn_error "invalid package name: $ac_useropt"
- ac_useropt_orig=$ac_useropt
- ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
- case $ac_user_opts in
- *"
-"with_$ac_useropt"
-"*) ;;
- *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig"
- ac_unrecognized_sep=', ';;
- esac
- eval with_$ac_useropt=\$ac_optarg ;;
-
- -without-* | --without-*)
- ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'`
- # Reject names that are not valid shell variable names.
- expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
- as_fn_error "invalid package name: $ac_useropt"
- ac_useropt_orig=$ac_useropt
- ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
- case $ac_user_opts in
- *"
-"with_$ac_useropt"
-"*) ;;
- *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig"
- ac_unrecognized_sep=', ';;
- esac
- eval with_$ac_useropt=no ;;
-
- --x)
- # Obsolete; use --with-x.
- with_x=yes ;;
-
- -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \
- | --x-incl | --x-inc | --x-in | --x-i)
- ac_prev=x_includes ;;
- -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \
- | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)
- x_includes=$ac_optarg ;;
-
- -x-libraries | --x-libraries | --x-librarie | --x-librari \
- | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
- ac_prev=x_libraries ;;
- -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \
- | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
- x_libraries=$ac_optarg ;;
-
- -*) as_fn_error "unrecognized option: \`$ac_option'
-Try \`$0 --help' for more information."
- ;;
-
- *=*)
- ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
- # Reject names that are not valid shell variable names.
- case $ac_envvar in #(
- '' | [0-9]* | *[!_$as_cr_alnum]* )
- as_fn_error "invalid variable name: \`$ac_envvar'" ;;
- esac
- eval $ac_envvar=\$ac_optarg
- export $ac_envvar ;;
-
- *)
- # FIXME: should be removed in autoconf 3.0.
- $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2
- expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
- $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2
- : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}
- ;;
-
- esac
-done
-
-if test -n "$ac_prev"; then
- ac_option=--`echo $ac_prev | sed 's/_/-/g'`
- as_fn_error "missing argument to $ac_option"
-fi
-
-if test -n "$ac_unrecognized_opts"; then
- case $enable_option_checking in
- no) ;;
- fatal) as_fn_error "unrecognized options: $ac_unrecognized_opts" ;;
- *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;;
- esac
-fi
-
-# Check all directory arguments for consistency.
-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
-do
- eval ac_val=\$$ac_var
- # Remove trailing slashes.
- case $ac_val in
- */ )
- ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'`
- eval $ac_var=\$ac_val;;
- esac
- # Be sure to have absolute directory names.
- case $ac_val in
- [\\/$]* | ?:[\\/]* ) continue;;
- NONE | '' ) case $ac_var in *prefix ) continue;; esac;;
- esac
- as_fn_error "expected an absolute directory name for --$ac_var: $ac_val"
-done
-
-# There might be people who depend on the old broken behavior: `$host'
-# used to hold the argument of --host etc.
-# FIXME: To remove some day.
-build=$build_alias
-host=$host_alias
-target=$target_alias
-
-# FIXME: To remove some day.
-if test "x$host_alias" != x; then
- if test "x$build_alias" = x; then
- cross_compiling=maybe
- $as_echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host.
- If a cross compiler is detected then cross compile mode will be used." >&2
- elif test "x$build_alias" != "x$host_alias"; then
- cross_compiling=yes
- fi
-fi
-
-ac_tool_prefix=
-test -n "$host_alias" && ac_tool_prefix=$host_alias-
-
-test "$silent" = yes && exec 6>/dev/null
-
-
-ac_pwd=`pwd` && test -n "$ac_pwd" &&
-ac_ls_di=`ls -di .` &&
-ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
- as_fn_error "working directory cannot be determined"
-test "X$ac_ls_di" = "X$ac_pwd_ls_di" ||
- as_fn_error "pwd does not report name of working directory"
-
-
-# Find the source files, if location was not specified.
-if test -z "$srcdir"; then
- ac_srcdir_defaulted=yes
- # Try the directory containing this script, then the parent directory.
- ac_confdir=`$as_dirname -- "$as_myself" ||
-$as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
- X"$as_myself" : 'X\(//\)[^/]' \| \
- X"$as_myself" : 'X\(//\)$' \| \
- X"$as_myself" : 'X\(/\)' \| . 2>/dev/null ||
-$as_echo X"$as_myself" |
- sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
- s//\1/
- q
- }
- /^X\(\/\/\)[^/].*/{
- s//\1/
- q
- }
- /^X\(\/\/\)$/{
- s//\1/
- q
- }
- /^X\(\/\).*/{
- s//\1/
- q
- }
- s/.*/./; q'`
- srcdir=$ac_confdir
- if test ! -r "$srcdir/$ac_unique_file"; then
- srcdir=..
- fi
-else
- ac_srcdir_defaulted=no
-fi
-if test ! -r "$srcdir/$ac_unique_file"; then
- test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .."
- as_fn_error "cannot find sources ($ac_unique_file) in $srcdir"
-fi
-ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work"
-ac_abs_confdir=`(
- cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error "$ac_msg"
- pwd)`
-# When building in place, set srcdir=.
-if test "$ac_abs_confdir" = "$ac_pwd"; then
- srcdir=.
-fi
-# Remove unnecessary trailing slashes from srcdir.
-# Double slashes in file names in object file debugging info
-# mess up M-x gdb in Emacs.
-case $srcdir in
-*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;;
-esac
-for ac_var in $ac_precious_vars; do
- eval ac_env_${ac_var}_set=\${${ac_var}+set}
- eval ac_env_${ac_var}_value=\$${ac_var}
- eval ac_cv_env_${ac_var}_set=\${${ac_var}+set}
- eval ac_cv_env_${ac_var}_value=\$${ac_var}
-done
-
-#
-# Report the --help message.
-#
-if test "$ac_init_help" = "long"; then
- # Omit some internal or obsolete options to make the list less imposing.
- # This message is too long to be a string in the A/UX 3.1 sh.
- cat <<_ACEOF
-\`configure' configures ecasound 2.7.2 to adapt to many kinds of systems.
-
-Usage: $0 [OPTION]... [VAR=VALUE]...
-
-To assign environment variables (e.g., CC, CFLAGS...), specify them as
-VAR=VALUE. See below for descriptions of some of the useful variables.
-
-Defaults for the options are specified in brackets.
-
-Configuration:
- -h, --help display this help and exit
- --help=short display options specific to this package
- --help=recursive display the short help of all the included packages
- -V, --version display version information and exit
- -q, --quiet, --silent do not print \`checking...' messages
- --cache-file=FILE cache test results in FILE [disabled]
- -C, --config-cache alias for \`--cache-file=config.cache'
- -n, --no-create do not create output files
- --srcdir=DIR find the sources in DIR [configure dir or \`..']
-
-Installation directories:
- --prefix=PREFIX install architecture-independent files in PREFIX
- @<:@@S|@ac_default_prefix@:>@
- --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX
- @<:@PREFIX@:>@
-
-By default, \`make install' will install all the files in
-\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify
-an installation prefix other than \`$ac_default_prefix' using \`--prefix',
-for instance \`--prefix=\$HOME'.
-
-For better control, use the options below.
-
-Fine tuning of the installation directories:
- --bindir=DIR user executables [EPREFIX/bin]
- --sbindir=DIR system admin executables [EPREFIX/sbin]
- --libexecdir=DIR program executables [EPREFIX/libexec]
- --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]
- --libdir=DIR object code libraries [EPREFIX/lib]
- --includedir=DIR C header files [PREFIX/include]
- --oldincludedir=DIR C header files for non-gcc [/usr/include]
- --datarootdir=DIR read-only arch.-independent data root [PREFIX/share]
- --datadir=DIR read-only architecture-independent data [DATAROOTDIR]
- --infodir=DIR info documentation [DATAROOTDIR/info]
- --localedir=DIR locale-dependent data [DATAROOTDIR/locale]
- --mandir=DIR man documentation [DATAROOTDIR/man]
- --docdir=DIR documentation root @<:@DATAROOTDIR/doc/ecasound@:>@
- --htmldir=DIR html documentation [DOCDIR]
- --dvidir=DIR dvi documentation [DOCDIR]
- --pdfdir=DIR pdf documentation [DOCDIR]
- --psdir=DIR ps documentation [DOCDIR]
-_ACEOF
-
- cat <<\_ACEOF
-
-Program names:
- --program-prefix=PREFIX prepend PREFIX to installed program names
- --program-suffix=SUFFIX append SUFFIX to installed program names
- --program-transform-name=PROGRAM run sed PROGRAM on installed program names
-
-System types:
- --build=BUILD configure for building on BUILD [guessed]
- --host=HOST cross-compile to build programs to run on HOST [BUILD]
-_ACEOF
-fi
-
-if test -n "$ac_init_help"; then
- case $ac_init_help in
- short | recursive ) echo "Configuration of ecasound 2.7.2:";;
- esac
- cat <<\_ACEOF
-
-Optional Features:
- --disable-option-checking ignore unrecognized --enable/--with options
- --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no)
- --enable-FEATURE[=ARG] include FEATURE [ARG=yes]
- --disable-dependency-tracking speeds up one-time build
- --enable-dependency-tracking do not reject slow dependency extractors
- --enable-debug Enable debugging (default = no)
- --enable-experimental Enable experimental code (default = no)
- --disable-dbc Don't check design-by-contract assertions (default = check)
- --disable-effects Disable effects (default = no)
- --disable-largefile omit support for large files
- --disable-oss Disable OSS (default = no)
- --disable-osstrigger Disable the use of OSS trigger functions (default = no)
- --disable-arts Disable aRts support (default = no)
- --disable-libsamplerate Disable libsamplerate support (default = no)
- --enable-pyecasound Enable compilation of pyecasound (default = python)
- --enable-python-force-site-packages force install Python modules into site-packages even when it doesn't exist default=no
- --enable-rubyecasound Enable rubyecasound (default = yes)
- --enable-shared@<:@=PKGS@:>@ build shared libraries @<:@default=yes@:>@
- --enable-static@<:@=PKGS@:>@ build static libraries @<:@default=yes@:>@
- --enable-fast-install@<:@=PKGS@:>@
- optimize for fast installation @<:@default=yes@:>@
- --disable-libtool-lock avoid locking (might break parallel builds)
- --disable-ncurses Disable ncurses (default = no)
- --disable-audiofile Disable libaudiofile (default = no)
- --disable-sndfile Disable libsndfile (default = no)
- --disable-alsa Disable ALSA (default = no)
- --enable-jack Enable JACK support (default=yes, if found)
- --enable-sys-readline Compile with system readline (default=yes)
- --enable-liboil Use liboil if available (default=no)
- --enable-liblo Use liblo if available (default=yes)
- --enable-all-static Build only static binaries (default = no)
-
-Optional Packages:
- --with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
- --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no)
- --with-extra-cppflags=FLAGS pass extra flags to cpp
- --with-extra-libs=FLAGS pass extra flags to linker
- --with-largefile deprecated option, now used by default
- --with-libsamplerate=DIR Compile against libsamplerate installed in DIR
- --with-python-includes=DIR Python include files are in DIR
- --with-python-modules=DIR install Python modules in DIR
- --with-gnu-ld assume the C compiler uses GNU ld @<:@default=no@:>@
- --with-pic try to use only PIC/non-PIC objects @<:@default=use
- both@:>@
- --with-tags@<:@=TAGS@:>@ include additional configurations @<:@automatic@:>@
- --with-jack=DIR Compile against JACK installed in DIR
-
-Some influential environment variables:
- CC C compiler command
- CFLAGS C compiler flags
- LDFLAGS linker flags, e.g. -L if you have libraries in a
- nonstandard directory
- LIBS libraries to pass to the linker, e.g. -l
- CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I if
- you have headers in a nonstandard directory
- CXX C++ compiler command
- CXXFLAGS C++ compiler flags
- CPP C preprocessor
- CXXCPP C++ preprocessor
- F77 Fortran 77 compiler command
- FFLAGS Fortran 77 compiler flags
- PKG_CONFIG path to pkg-config utility
- LIBOIL_CFLAGS
- C compiler flags for LIBOIL, overriding pkg-config
- LIBOIL_LIBS linker flags for LIBOIL, overriding pkg-config
- LIBLO_CFLAGS
- C compiler flags for LIBLO, overriding pkg-config
- LIBLO_LIBS linker flags for LIBLO, overriding pkg-config
-
-Use these variables to override the choices made by `configure' or to help
-it to find libraries and programs with nonstandard names/locations.
-
-Report bugs to the package provider.
-_ACEOF
-ac_status=$?
-fi
-
-if test "$ac_init_help" = "recursive"; then
- # If there are subdirs, report their specific --help.
- for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue
- test -d "$ac_dir" ||
- { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } ||
- continue
- ac_builddir=.
-
-case "$ac_dir" in
-.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
-*)
- ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
- # A ".." for each directory in $ac_dir_suffix.
- ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
- case $ac_top_builddir_sub in
- "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
- *) ac_top_build_prefix=$ac_top_builddir_sub/ ;;
- esac ;;
-esac
-ac_abs_top_builddir=$ac_pwd
-ac_abs_builddir=$ac_pwd$ac_dir_suffix
-# for backward compatibility:
-ac_top_builddir=$ac_top_build_prefix
-
-case $srcdir in
- .) # We are building in place.
- ac_srcdir=.
- ac_top_srcdir=$ac_top_builddir_sub
- ac_abs_top_srcdir=$ac_pwd ;;
- [\\/]* | ?:[\\/]* ) # Absolute name.
- ac_srcdir=$srcdir$ac_dir_suffix;
- ac_top_srcdir=$srcdir
- ac_abs_top_srcdir=$srcdir ;;
- *) # Relative name.
- ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
- ac_top_srcdir=$ac_top_build_prefix$srcdir
- ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
-esac
-ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
-
- cd "$ac_dir" || { ac_status=$?; continue; }
- # Check for guested configure.
- if test -f "$ac_srcdir/configure.gnu"; then
- echo &&
- $SHELL "$ac_srcdir/configure.gnu" --help=recursive
- elif test -f "$ac_srcdir/configure"; then
- echo &&
- $SHELL "$ac_srcdir/configure" --help=recursive
- else
- $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2
- fi || ac_status=$?
- cd "$ac_pwd" || { ac_status=$?; break; }
- done
-fi
-
-test -n "$ac_init_help" && exit $ac_status
-if $ac_init_version; then
- cat <<\_ACEOF
-ecasound configure 2.7.2
-generated by GNU Autoconf 2.65
-
-Copyright (C) 2009 Free Software Foundation, Inc.
-This configure script is free software; the Free Software Foundation
-gives unlimited permission to copy, distribute and modify it.
-_ACEOF
- exit
-fi
-
-## ------------------------ ##
-## Autoconf initialization. ##
-## ------------------------ ##
-
-@%:@ ac_fn_c_try_compile LINENO
-@%:@ --------------------------
-@%:@ Try to compile conftest.@S|@ac_ext, and return whether this succeeded.
-ac_fn_c_try_compile ()
-{
- as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
- rm -f conftest.$ac_objext
- if { { ac_try="$ac_compile"
-case "(($ac_try" in
- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
- *) ac_try_echo=$ac_try;;
-esac
-eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
-$as_echo "$ac_try_echo"; } >&5
- (eval "$ac_compile") 2>conftest.err
- ac_status=$?
- if test -s conftest.err; then
- grep -v '^ *+' conftest.err >conftest.er1
- cat conftest.er1 >&5
- mv -f conftest.er1 conftest.err
- fi
- $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
- test $ac_status = 0; } && {
- test -z "$ac_c_werror_flag" ||
- test ! -s conftest.err
- } && test -s conftest.$ac_objext; then :
- ac_retval=0
-else
- $as_echo "$as_me: failed program was:" >&5
-sed 's/^/| /' conftest.$ac_ext >&5
-
- ac_retval=1
-fi
- eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
- as_fn_set_status $ac_retval
-
-} @%:@ ac_fn_c_try_compile
-
-@%:@ ac_fn_cxx_try_compile LINENO
-@%:@ ----------------------------
-@%:@ Try to compile conftest.@S|@ac_ext, and return whether this succeeded.
-ac_fn_cxx_try_compile ()
-{
- as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
- rm -f conftest.$ac_objext
- if { { ac_try="$ac_compile"
-case "(($ac_try" in
- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
- *) ac_try_echo=$ac_try;;
-esac
-eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
-$as_echo "$ac_try_echo"; } >&5
- (eval "$ac_compile") 2>conftest.err
- ac_status=$?
- if test -s conftest.err; then
- grep -v '^ *+' conftest.err >conftest.er1
- cat conftest.er1 >&5
- mv -f conftest.er1 conftest.err
- fi
- $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
- test $ac_status = 0; } && {
- test -z "$ac_cxx_werror_flag" ||
- test ! -s conftest.err
- } && test -s conftest.$ac_objext; then :
- ac_retval=0
-else
- $as_echo "$as_me: failed program was:" >&5
-sed 's/^/| /' conftest.$ac_ext >&5
-
- ac_retval=1
-fi
- eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
- as_fn_set_status $ac_retval
-
-} @%:@ ac_fn_cxx_try_compile
-
-@%:@ ac_fn_c_try_cpp LINENO
-@%:@ ----------------------
-@%:@ Try to preprocess conftest.@S|@ac_ext, and return whether this succeeded.
-ac_fn_c_try_cpp ()
-{
- as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
- if { { ac_try="$ac_cpp conftest.$ac_ext"
-case "(($ac_try" in
- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
- *) ac_try_echo=$ac_try;;
-esac
-eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
-$as_echo "$ac_try_echo"; } >&5
- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err
- ac_status=$?
- if test -s conftest.err; then
- grep -v '^ *+' conftest.err >conftest.er1
- cat conftest.er1 >&5
- mv -f conftest.er1 conftest.err
- fi
- $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
- test $ac_status = 0; } >/dev/null && {
- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
- test ! -s conftest.err
- }; then :
- ac_retval=0
-else
- $as_echo "$as_me: failed program was:" >&5
-sed 's/^/| /' conftest.$ac_ext >&5
-
- ac_retval=1
-fi
- eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
- as_fn_set_status $ac_retval
-
-} @%:@ ac_fn_c_try_cpp
-
-@%:@ ac_fn_c_try_link LINENO
-@%:@ -----------------------
-@%:@ Try to link conftest.@S|@ac_ext, and return whether this succeeded.
-ac_fn_c_try_link ()
-{
- as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
- rm -f conftest.$ac_objext conftest$ac_exeext
- if { { ac_try="$ac_link"
-case "(($ac_try" in
- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
- *) ac_try_echo=$ac_try;;
-esac
-eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
-$as_echo "$ac_try_echo"; } >&5
- (eval "$ac_link") 2>conftest.err
- ac_status=$?
- if test -s conftest.err; then
- grep -v '^ *+' conftest.err >conftest.er1
- cat conftest.er1 >&5
- mv -f conftest.er1 conftest.err
- fi
- $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
- test $ac_status = 0; } && {
- test -z "$ac_c_werror_flag" ||
- test ! -s conftest.err
- } && test -s conftest$ac_exeext && {
- test "$cross_compiling" = yes ||
- $as_test_x conftest$ac_exeext
- }; then :
- ac_retval=0
-else
- $as_echo "$as_me: failed program was:" >&5
-sed 's/^/| /' conftest.$ac_ext >&5
-
- ac_retval=1
-fi
- # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information
- # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would
- # interfere with the next link command; also delete a directory that is
- # left behind by Apple's compiler. We do this before executing the actions.
- rm -rf conftest.dSYM conftest_ipa8_conftest.oo
- eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
- as_fn_set_status $ac_retval
-
-} @%:@ ac_fn_c_try_link
-
-@%:@ ac_fn_cxx_try_cpp LINENO
-@%:@ ------------------------
-@%:@ Try to preprocess conftest.@S|@ac_ext, and return whether this succeeded.
-ac_fn_cxx_try_cpp ()
-{
- as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
- if { { ac_try="$ac_cpp conftest.$ac_ext"
-case "(($ac_try" in
- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
- *) ac_try_echo=$ac_try;;
-esac
-eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
-$as_echo "$ac_try_echo"; } >&5
- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err
- ac_status=$?
- if test -s conftest.err; then
- grep -v '^ *+' conftest.err >conftest.er1
- cat conftest.er1 >&5
- mv -f conftest.er1 conftest.err
- fi
- $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
- test $ac_status = 0; } >/dev/null && {
- test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" ||
- test ! -s conftest.err
- }; then :
- ac_retval=0
-else
- $as_echo "$as_me: failed program was:" >&5
-sed 's/^/| /' conftest.$ac_ext >&5
-
- ac_retval=1
-fi
- eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
- as_fn_set_status $ac_retval
-
-} @%:@ ac_fn_cxx_try_cpp
-
-@%:@ ac_fn_cxx_check_header_mongrel LINENO HEADER VAR INCLUDES
-@%:@ ---------------------------------------------------------
-@%:@ Tests whether HEADER exists, giving a warning if it cannot be compiled using
-@%:@ the include files in INCLUDES and setting the cache variable VAR
-@%:@ accordingly.
-ac_fn_cxx_check_header_mongrel ()
-{
- as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
- if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
-$as_echo_n "checking for $2... " >&6; }
-if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
- $as_echo_n "(cached) " >&6
-fi
-eval ac_res=\$$3
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
-$as_echo "$ac_res" >&6; }
-else
- # Is the header compilable?
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5
-$as_echo_n "checking $2 usability... " >&6; }
-cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-/* end confdefs.h. */
-$4
-@%:@include <$2>
-_ACEOF
-if ac_fn_cxx_try_compile "$LINENO"; then :
- ac_header_compiler=yes
-else
- ac_header_compiler=no
-fi
-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5
-$as_echo "$ac_header_compiler" >&6; }
-
-# Is the header present?
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5
-$as_echo_n "checking $2 presence... " >&6; }
-cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-/* end confdefs.h. */
-@%:@include <$2>
-_ACEOF
-if ac_fn_cxx_try_cpp "$LINENO"; then :
- ac_header_preproc=yes
-else
- ac_header_preproc=no
-fi
-rm -f conftest.err conftest.$ac_ext
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5
-$as_echo "$ac_header_preproc" >&6; }
-
-# So? What about this header?
-case $ac_header_compiler:$ac_header_preproc:$ac_cxx_preproc_warn_flag in #((
- yes:no: )
- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5
-$as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;}
- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5
-$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;}
- ;;
- no:yes:* )
- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5
-$as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;}
- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5
-$as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;}
- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5
-$as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;}
- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5
-$as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;}
- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5
-$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;}
- ;;
-esac
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
-$as_echo_n "checking for $2... " >&6; }
-if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
- $as_echo_n "(cached) " >&6
-else
- eval "$3=\$ac_header_compiler"
-fi
-eval ac_res=\$$3
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
-$as_echo "$ac_res" >&6; }
-fi
- eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
-
-} @%:@ ac_fn_cxx_check_header_mongrel
-
-@%:@ ac_fn_cxx_try_run LINENO
-@%:@ ------------------------
-@%:@ Try to link conftest.@S|@ac_ext, and return whether this succeeded. Assumes
-@%:@ that executables *can* be run.
-ac_fn_cxx_try_run ()
-{
- as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
- if { { ac_try="$ac_link"
-case "(($ac_try" in
- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
- *) ac_try_echo=$ac_try;;
-esac
-eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
-$as_echo "$ac_try_echo"; } >&5
- (eval "$ac_link") 2>&5
- ac_status=$?
- $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
- test $ac_status = 0; } && { ac_try='./conftest$ac_exeext'
- { { case "(($ac_try" in
- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
- *) ac_try_echo=$ac_try;;
-esac
-eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
-$as_echo "$ac_try_echo"; } >&5
- (eval "$ac_try") 2>&5
- ac_status=$?
- $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
- test $ac_status = 0; }; }; then :
- ac_retval=0
-else
- $as_echo "$as_me: program exited with status $ac_status" >&5
- $as_echo "$as_me: failed program was:" >&5
-sed 's/^/| /' conftest.$ac_ext >&5
-
- ac_retval=$ac_status
-fi
- rm -rf conftest.dSYM conftest_ipa8_conftest.oo
- eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
- as_fn_set_status $ac_retval
-
-} @%:@ ac_fn_cxx_try_run
-
-@%:@ ac_fn_cxx_check_header_compile LINENO HEADER VAR INCLUDES
-@%:@ ---------------------------------------------------------
-@%:@ Tests whether HEADER exists and can be compiled using the include files in
-@%:@ INCLUDES, setting the cache variable VAR accordingly.
-ac_fn_cxx_check_header_compile ()
-{
- as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
-$as_echo_n "checking for $2... " >&6; }
-if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
- $as_echo_n "(cached) " >&6
-else
- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-/* end confdefs.h. */
-$4
-@%:@include <$2>
-_ACEOF
-if ac_fn_cxx_try_compile "$LINENO"; then :
- eval "$3=yes"
-else
- eval "$3=no"
-fi
-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-fi
-eval ac_res=\$$3
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
-$as_echo "$ac_res" >&6; }
- eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
-
-} @%:@ ac_fn_cxx_check_header_compile
-
-@%:@ ac_fn_c_check_header_mongrel LINENO HEADER VAR INCLUDES
-@%:@ -------------------------------------------------------
-@%:@ Tests whether HEADER exists, giving a warning if it cannot be compiled using
-@%:@ the include files in INCLUDES and setting the cache variable VAR
-@%:@ accordingly.
-ac_fn_c_check_header_mongrel ()
-{
- as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
- if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
-$as_echo_n "checking for $2... " >&6; }
-if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
- $as_echo_n "(cached) " >&6
-fi
-eval ac_res=\$$3
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
-$as_echo "$ac_res" >&6; }
-else
- # Is the header compilable?
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5
-$as_echo_n "checking $2 usability... " >&6; }
-cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-/* end confdefs.h. */
-$4
-@%:@include <$2>
-_ACEOF
-if ac_fn_c_try_compile "$LINENO"; then :
- ac_header_compiler=yes
-else
- ac_header_compiler=no
-fi
-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5
-$as_echo "$ac_header_compiler" >&6; }
-
-# Is the header present?
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5
-$as_echo_n "checking $2 presence... " >&6; }
-cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-/* end confdefs.h. */
-@%:@include <$2>
-_ACEOF
-if ac_fn_c_try_cpp "$LINENO"; then :
- ac_header_preproc=yes
-else
- ac_header_preproc=no
-fi
-rm -f conftest.err conftest.$ac_ext
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5
-$as_echo "$ac_header_preproc" >&6; }
-
-# So? What about this header?
-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in #((
- yes:no: )
- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5
-$as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;}
- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5
-$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;}
- ;;
- no:yes:* )
- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5
-$as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;}
- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5
-$as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;}
- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5
-$as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;}
- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5
-$as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;}
- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5
-$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;}
- ;;
-esac
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
-$as_echo_n "checking for $2... " >&6; }
-if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
- $as_echo_n "(cached) " >&6
-else
- eval "$3=\$ac_header_compiler"
-fi
-eval ac_res=\$$3
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
-$as_echo "$ac_res" >&6; }
-fi
- eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
-
-} @%:@ ac_fn_c_check_header_mongrel
-
-@%:@ ac_fn_c_check_func LINENO FUNC VAR
-@%:@ ----------------------------------
-@%:@ Tests whether FUNC exists, setting the cache variable VAR accordingly
-ac_fn_c_check_func ()
-{
- as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
-$as_echo_n "checking for $2... " >&6; }
-if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
- $as_echo_n "(cached) " >&6
-else
- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-/* end confdefs.h. */
-/* Define $2 to an innocuous variant, in case declares $2.
- For example, HP-UX 11i declares gettimeofday. */
-#define $2 innocuous_$2
-
-/* System header to define __stub macros and hopefully few prototypes,
- which can conflict with char $2 (); below.
- Prefer to if __STDC__ is defined, since
- exists even on freestanding compilers. */
-
-#ifdef __STDC__
-# include
-#else
-# include
-#endif
-
-#undef $2
-
-/* Override any GCC internal prototype to avoid an error.
- Use char because int might match the return type of a GCC
- builtin and then its argument prototype would still apply. */
-#ifdef __cplusplus
-extern "C"
-#endif
-char $2 ();
-/* The GNU C library defines this for functions which it implements
- to always fail with ENOSYS. Some functions are actually named
- something starting with __ and the normal name is an alias. */
-#if defined __stub_$2 || defined __stub___$2
-choke me
-#endif
-
-int
-main ()
-{
-return $2 ();
- ;
- return 0;
-}
-_ACEOF
-if ac_fn_c_try_link "$LINENO"; then :
- eval "$3=yes"
-else
- eval "$3=no"
-fi
-rm -f core conftest.err conftest.$ac_objext \
- conftest$ac_exeext conftest.$ac_ext
-fi
-eval ac_res=\$$3
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
-$as_echo "$ac_res" >&6; }
- eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
-
-} @%:@ ac_fn_c_check_func
-
-@%:@ ac_fn_cxx_try_link LINENO
-@%:@ -------------------------
-@%:@ Try to link conftest.@S|@ac_ext, and return whether this succeeded.
-ac_fn_cxx_try_link ()
-{
- as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
- rm -f conftest.$ac_objext conftest$ac_exeext
- if { { ac_try="$ac_link"
-case "(($ac_try" in
- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
- *) ac_try_echo=$ac_try;;
-esac
-eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
-$as_echo "$ac_try_echo"; } >&5
- (eval "$ac_link") 2>conftest.err
- ac_status=$?
- if test -s conftest.err; then
- grep -v '^ *+' conftest.err >conftest.er1
- cat conftest.er1 >&5
- mv -f conftest.er1 conftest.err
- fi
- $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
- test $ac_status = 0; } && {
- test -z "$ac_cxx_werror_flag" ||
- test ! -s conftest.err
- } && test -s conftest$ac_exeext && {
- test "$cross_compiling" = yes ||
- $as_test_x conftest$ac_exeext
- }; then :
- ac_retval=0
-else
- $as_echo "$as_me: failed program was:" >&5
-sed 's/^/| /' conftest.$ac_ext >&5
-
- ac_retval=1
-fi
- # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information
- # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would
- # interfere with the next link command; also delete a directory that is
- # left behind by Apple's compiler. We do this before executing the actions.
- rm -rf conftest.dSYM conftest_ipa8_conftest.oo
- eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
- as_fn_set_status $ac_retval
-
-} @%:@ ac_fn_cxx_try_link
-
-@%:@ ac_fn_f77_try_compile LINENO
-@%:@ ----------------------------
-@%:@ Try to compile conftest.@S|@ac_ext, and return whether this succeeded.
-ac_fn_f77_try_compile ()
-{
- as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
- rm -f conftest.$ac_objext
- if { { ac_try="$ac_compile"
-case "(($ac_try" in
- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
- *) ac_try_echo=$ac_try;;
-esac
-eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
-$as_echo "$ac_try_echo"; } >&5
- (eval "$ac_compile") 2>conftest.err
- ac_status=$?
- if test -s conftest.err; then
- grep -v '^ *+' conftest.err >conftest.er1
- cat conftest.er1 >&5
- mv -f conftest.er1 conftest.err
- fi
- $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
- test $ac_status = 0; } && {
- test -z "$ac_f77_werror_flag" ||
- test ! -s conftest.err
- } && test -s conftest.$ac_objext; then :
- ac_retval=0
-else
- $as_echo "$as_me: failed program was:" >&5
-sed 's/^/| /' conftest.$ac_ext >&5
-
- ac_retval=1
-fi
- eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
- as_fn_set_status $ac_retval
-
-} @%:@ ac_fn_f77_try_compile
-
-@%:@ ac_fn_f77_try_link LINENO
-@%:@ -------------------------
-@%:@ Try to link conftest.@S|@ac_ext, and return whether this succeeded.
-ac_fn_f77_try_link ()
-{
- as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
- rm -f conftest.$ac_objext conftest$ac_exeext
- if { { ac_try="$ac_link"
-case "(($ac_try" in
- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
- *) ac_try_echo=$ac_try;;
-esac
-eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
-$as_echo "$ac_try_echo"; } >&5
- (eval "$ac_link") 2>conftest.err
- ac_status=$?
- if test -s conftest.err; then
- grep -v '^ *+' conftest.err >conftest.er1
- cat conftest.er1 >&5
- mv -f conftest.er1 conftest.err
- fi
- $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
- test $ac_status = 0; } && {
- test -z "$ac_f77_werror_flag" ||
- test ! -s conftest.err
- } && test -s conftest$ac_exeext && {
- test "$cross_compiling" = yes ||
- $as_test_x conftest$ac_exeext
- }; then :
- ac_retval=0
-else
- $as_echo "$as_me: failed program was:" >&5
-sed 's/^/| /' conftest.$ac_ext >&5
-
- ac_retval=1
-fi
- # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information
- # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would
- # interfere with the next link command; also delete a directory that is
- # left behind by Apple's compiler. We do this before executing the actions.
- rm -rf conftest.dSYM conftest_ipa8_conftest.oo
- eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
- as_fn_set_status $ac_retval
-
-} @%:@ ac_fn_f77_try_link
-
-@%:@ ac_fn_c_try_run LINENO
-@%:@ ----------------------
-@%:@ Try to link conftest.@S|@ac_ext, and return whether this succeeded. Assumes
-@%:@ that executables *can* be run.
-ac_fn_c_try_run ()
-{
- as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
- if { { ac_try="$ac_link"
-case "(($ac_try" in
- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
- *) ac_try_echo=$ac_try;;
-esac
-eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
-$as_echo "$ac_try_echo"; } >&5
- (eval "$ac_link") 2>&5
- ac_status=$?
- $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
- test $ac_status = 0; } && { ac_try='./conftest$ac_exeext'
- { { case "(($ac_try" in
- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
- *) ac_try_echo=$ac_try;;
-esac
-eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
-$as_echo "$ac_try_echo"; } >&5
- (eval "$ac_try") 2>&5
- ac_status=$?
- $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
- test $ac_status = 0; }; }; then :
- ac_retval=0
-else
- $as_echo "$as_me: program exited with status $ac_status" >&5
- $as_echo "$as_me: failed program was:" >&5
-sed 's/^/| /' conftest.$ac_ext >&5
-
- ac_retval=$ac_status
-fi
- rm -rf conftest.dSYM conftest_ipa8_conftest.oo
- eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
- as_fn_set_status $ac_retval
-
-} @%:@ ac_fn_c_try_run
-
-@%:@ ac_fn_c_check_type LINENO TYPE VAR INCLUDES
-@%:@ -------------------------------------------
-@%:@ Tests whether TYPE exists after having included INCLUDES, setting cache
-@%:@ variable VAR accordingly.
-ac_fn_c_check_type ()
-{
- as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
-$as_echo_n "checking for $2... " >&6; }
-if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
- $as_echo_n "(cached) " >&6
-else
- eval "$3=no"
- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-/* end confdefs.h. */
-$4
-int
-main ()
-{
-if (sizeof ($2))
- return 0;
- ;
- return 0;
-}
-_ACEOF
-if ac_fn_c_try_compile "$LINENO"; then :
- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-/* end confdefs.h. */
-$4
-int
-main ()
-{
-if (sizeof (($2)))
- return 0;
- ;
- return 0;
-}
-_ACEOF
-if ac_fn_c_try_compile "$LINENO"; then :
-
-else
- eval "$3=yes"
-fi
-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-fi
-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-fi
-eval ac_res=\$$3
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
-$as_echo "$ac_res" >&6; }
- eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
-
-} @%:@ ac_fn_c_check_type
-
-@%:@ ac_fn_cxx_check_func LINENO FUNC VAR
-@%:@ ------------------------------------
-@%:@ Tests whether FUNC exists, setting the cache variable VAR accordingly
-ac_fn_cxx_check_func ()
-{
- as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
-$as_echo_n "checking for $2... " >&6; }
-if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
- $as_echo_n "(cached) " >&6
-else
- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-/* end confdefs.h. */
-/* Define $2 to an innocuous variant, in case declares $2.
- For example, HP-UX 11i declares gettimeofday. */
-#define $2 innocuous_$2
-
-/* System header to define __stub macros and hopefully few prototypes,
- which can conflict with char $2 (); below.
- Prefer to if __STDC__ is defined, since
- exists even on freestanding compilers. */
-
-#ifdef __STDC__
-# include
-#else
-# include
-#endif
-
-#undef $2
-
-/* Override any GCC internal prototype to avoid an error.
- Use char because int might match the return type of a GCC
- builtin and then its argument prototype would still apply. */
-#ifdef __cplusplus
-extern "C"
-#endif
-char $2 ();
-/* The GNU C library defines this for functions which it implements
- to always fail with ENOSYS. Some functions are actually named
- something starting with __ and the normal name is an alias. */
-#if defined __stub_$2 || defined __stub___$2
-choke me
-#endif
-
-int
-main ()
-{
-return $2 ();
- ;
- return 0;
-}
-_ACEOF
-if ac_fn_cxx_try_link "$LINENO"; then :
- eval "$3=yes"
-else
- eval "$3=no"
-fi
-rm -f core conftest.err conftest.$ac_objext \
- conftest$ac_exeext conftest.$ac_ext
-fi
-eval ac_res=\$$3
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
-$as_echo "$ac_res" >&6; }
- eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
-
-} @%:@ ac_fn_cxx_check_func
-cat >config.log <<_ACEOF
-This file contains any messages produced by compilers while
-running configure, to aid debugging if configure makes a mistake.
-
-It was created by ecasound $as_me 2.7.2, which was
-generated by GNU Autoconf 2.65. Invocation command line was
-
- $ $0 $@
-
-_ACEOF
-exec 5>>config.log
-{
-cat <<_ASUNAME
-## --------- ##
-## Platform. ##
-## --------- ##
-
-hostname = `(hostname || uname -n) 2>/dev/null | sed 1q`
-uname -m = `(uname -m) 2>/dev/null || echo unknown`
-uname -r = `(uname -r) 2>/dev/null || echo unknown`
-uname -s = `(uname -s) 2>/dev/null || echo unknown`
-uname -v = `(uname -v) 2>/dev/null || echo unknown`
-
-/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown`
-/bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown`
-
-/bin/arch = `(/bin/arch) 2>/dev/null || echo unknown`
-/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown`
-/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown`
-/usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown`
-/bin/machine = `(/bin/machine) 2>/dev/null || echo unknown`
-/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown`
-/bin/universe = `(/bin/universe) 2>/dev/null || echo unknown`
-
-_ASUNAME
-
-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-for as_dir in $PATH
-do
- IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- $as_echo "PATH: $as_dir"
- done
-IFS=$as_save_IFS
-
-} >&5
-
-cat >&5 <<_ACEOF
-
-
-## ----------- ##
-## Core tests. ##
-## ----------- ##
-
-_ACEOF
-
-
-# Keep a trace of the command line.
-# Strip out --no-create and --no-recursion so they do not pile up.
-# Strip out --silent because we don't want to record it for future runs.
-# Also quote any args containing shell meta-characters.
-# Make two passes to allow for proper duplicate-argument suppression.
-ac_configure_args=
-ac_configure_args0=
-ac_configure_args1=
-ac_must_keep_next=false
-for ac_pass in 1 2
-do
- for ac_arg
- do
- case $ac_arg in
- -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;;
- -q | -quiet | --quiet | --quie | --qui | --qu | --q \
- | -silent | --silent | --silen | --sile | --sil)
- continue ;;
- *\'*)
- ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
- esac
- case $ac_pass in
- 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;;
- 2)
- as_fn_append ac_configure_args1 " '$ac_arg'"
- if test $ac_must_keep_next = true; then
- ac_must_keep_next=false # Got value, back to normal.
- else
- case $ac_arg in
- *=* | --config-cache | -C | -disable-* | --disable-* \
- | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \
- | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \
- | -with-* | --with-* | -without-* | --without-* | --x)
- case "$ac_configure_args0 " in
- "$ac_configure_args1"*" '$ac_arg' "* ) continue ;;
- esac
- ;;
- -* ) ac_must_keep_next=true ;;
- esac
- fi
- as_fn_append ac_configure_args " '$ac_arg'"
- ;;
- esac
- done
-done
-{ ac_configure_args0=; unset ac_configure_args0;}
-{ ac_configure_args1=; unset ac_configure_args1;}
-
-# When interrupted or exit'd, cleanup temporary files, and complete
-# config.log. We remove comments because anyway the quotes in there
-# would cause problems or look ugly.
-# WARNING: Use '\'' to represent an apostrophe within the trap.
-# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug.
-trap 'exit_status=$?
- # Save into config.log some information that might help in debugging.
- {
- echo
-
- cat <<\_ASBOX
-## ---------------- ##
-## Cache variables. ##
-## ---------------- ##
-_ASBOX
- echo
- # The following way of writing the cache mishandles newlines in values,
-(
- for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do
- eval ac_val=\$$ac_var
- case $ac_val in #(
- *${as_nl}*)
- case $ac_var in #(
- *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
-$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
- esac
- case $ac_var in #(
- _ | IFS | as_nl) ;; #(
- BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(
- *) { eval $ac_var=; unset $ac_var;} ;;
- esac ;;
- esac
- done
- (set) 2>&1 |
- case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #(
- *${as_nl}ac_space=\ *)
- sed -n \
- "s/'\''/'\''\\\\'\'''\''/g;
- s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p"
- ;; #(
- *)
- sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
- ;;
- esac |
- sort
-)
- echo
-
- cat <<\_ASBOX
-## ----------------- ##
-## Output variables. ##
-## ----------------- ##
-_ASBOX
- echo
- for ac_var in $ac_subst_vars
- do
- eval ac_val=\$$ac_var
- case $ac_val in
- *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
- esac
- $as_echo "$ac_var='\''$ac_val'\''"
- done | sort
- echo
-
- if test -n "$ac_subst_files"; then
- cat <<\_ASBOX
-## ------------------- ##
-## File substitutions. ##
-## ------------------- ##
-_ASBOX
- echo
- for ac_var in $ac_subst_files
- do
- eval ac_val=\$$ac_var
- case $ac_val in
- *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
- esac
- $as_echo "$ac_var='\''$ac_val'\''"
- done | sort
- echo
- fi
-
- if test -s confdefs.h; then
- cat <<\_ASBOX
-## ----------- ##
-## confdefs.h. ##
-## ----------- ##
-_ASBOX
- echo
- cat confdefs.h
- echo
- fi
- test "$ac_signal" != 0 &&
- $as_echo "$as_me: caught signal $ac_signal"
- $as_echo "$as_me: exit $exit_status"
- } >&5
- rm -f core *.core core.conftest.* &&
- rm -f -r conftest* confdefs* conf$$* $ac_clean_files &&
- exit $exit_status
-' 0
-for ac_signal in 1 2 13 15; do
- trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal
-done
-ac_signal=0
-
-# confdefs.h avoids OS command line length limits that DEFS can exceed.
-rm -f -r conftest* confdefs.h
-
-$as_echo "/* confdefs.h */" > confdefs.h
-
-# Predefined preprocessor variables.
-
-cat >>confdefs.h <<_ACEOF
-@%:@define PACKAGE_NAME "$PACKAGE_NAME"
-_ACEOF
-
-cat >>confdefs.h <<_ACEOF
-@%:@define PACKAGE_TARNAME "$PACKAGE_TARNAME"
-_ACEOF
-
-cat >>confdefs.h <<_ACEOF
-@%:@define PACKAGE_VERSION "$PACKAGE_VERSION"
-_ACEOF
-
-cat >>confdefs.h <<_ACEOF
-@%:@define PACKAGE_STRING "$PACKAGE_STRING"
-_ACEOF
-
-cat >>confdefs.h <<_ACEOF
-@%:@define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT"
-_ACEOF
-
-cat >>confdefs.h <<_ACEOF
-@%:@define PACKAGE_URL "$PACKAGE_URL"
-_ACEOF
-
-
-# Let the site file select an alternate cache file if it wants to.
-# Prefer an explicitly selected file to automatically selected ones.
-ac_site_file1=NONE
-ac_site_file2=NONE
-if test -n "$CONFIG_SITE"; then
- ac_site_file1=$CONFIG_SITE
-elif test "x$prefix" != xNONE; then
- ac_site_file1=$prefix/share/config.site
- ac_site_file2=$prefix/etc/config.site
-else
- ac_site_file1=$ac_default_prefix/share/config.site
- ac_site_file2=$ac_default_prefix/etc/config.site
-fi
-for ac_site_file in "$ac_site_file1" "$ac_site_file2"
-do
- test "x$ac_site_file" = xNONE && continue
- if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5
-$as_echo "$as_me: loading site script $ac_site_file" >&6;}
- sed 's/^/| /' "$ac_site_file" >&5
- . "$ac_site_file"
- fi
-done
-
-if test -r "$cache_file"; then
- # Some versions of bash will fail to source /dev/null (special files
- # actually), so we avoid doing that. DJGPP emulates it as a regular file.
- if test /dev/null != "$cache_file" && test -f "$cache_file"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5
-$as_echo "$as_me: loading cache $cache_file" >&6;}
- case $cache_file in
- [\\/]* | ?:[\\/]* ) . "$cache_file";;
- *) . "./$cache_file";;
- esac
- fi
-else
- { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5
-$as_echo "$as_me: creating cache $cache_file" >&6;}
- >$cache_file
-fi
-
-as_fn_append ac_header_list " stdlib.h"
-as_fn_append ac_header_list " unistd.h"
-as_fn_append ac_header_list " sys/param.h"
-# Check that the precious variables saved in the cache have kept the same
-# value.
-ac_cache_corrupted=false
-for ac_var in $ac_precious_vars; do
- eval ac_old_set=\$ac_cv_env_${ac_var}_set
- eval ac_new_set=\$ac_env_${ac_var}_set
- eval ac_old_val=\$ac_cv_env_${ac_var}_value
- eval ac_new_val=\$ac_env_${ac_var}_value
- case $ac_old_set,$ac_new_set in
- set,)
- { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
-$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
- ac_cache_corrupted=: ;;
- ,set)
- { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5
-$as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
- ac_cache_corrupted=: ;;
- ,);;
- *)
- if test "x$ac_old_val" != "x$ac_new_val"; then
- # differences in whitespace do not lead to failure.
- ac_old_val_w=`echo x $ac_old_val`
- ac_new_val_w=`echo x $ac_new_val`
- if test "$ac_old_val_w" != "$ac_new_val_w"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5
-$as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
- ac_cache_corrupted=:
- else
- { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5
-$as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;}
- eval $ac_var=\$ac_old_val
- fi
- { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5
-$as_echo "$as_me: former value: \`$ac_old_val'" >&2;}
- { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5
-$as_echo "$as_me: current value: \`$ac_new_val'" >&2;}
- fi;;
- esac
- # Pass precious variables to config.status.
- if test "$ac_new_set" = set; then
- case $ac_new_val in
- *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
- *) ac_arg=$ac_var=$ac_new_val ;;
- esac
- case " $ac_configure_args " in
- *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy.
- *) as_fn_append ac_configure_args " '$ac_arg'" ;;
- esac
- fi
-done
-if $ac_cache_corrupted; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
- { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5
-$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;}
- as_fn_error "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5
-fi
-## -------------------- ##
-## Main body of script. ##
-## -------------------- ##
-
-ac_ext=c
-ac_cpp='$CPP $CPPFLAGS'
-ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
-ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
-ac_compiler_gnu=$ac_cv_c_compiler_gnu
-
-
-
-
-am__api_version="1.9"
-ac_aux_dir=
-for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do
- for ac_t in install-sh install.sh shtool; do
- if test -f "$ac_dir/$ac_t"; then
- ac_aux_dir=$ac_dir
- ac_install_sh="$ac_aux_dir/$ac_t -c"
- break 2
- fi
- done
-done
-if test -z "$ac_aux_dir"; then
- as_fn_error "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5
-fi
-
-# These three variables are undocumented and unsupported,
-# and are intended to be withdrawn in a future Autoconf release.
-# They can cause serious problems if a builder's source tree is in a directory
-# whose full name contains unusual characters.
-ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var.
-ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var.
-ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var.
-
-
-# Find a good install program. We prefer a C program (faster),
-# so one script is as good as another. But avoid the broken or
-# incompatible versions:
-# SysV /etc/install, /usr/sbin/install
-# SunOS /usr/etc/install
-# IRIX /sbin/install
-# AIX /bin/install
-# AmigaOS /C/install, which installs bootblocks on floppy discs
-# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag
-# AFS /usr/afsws/bin/install, which mishandles nonexistent args
-# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
-# OS/2's system install, which has a completely different semantic
-# ./install, which can be erroneously created by make from ./install.sh.
-# Reject install programs that cannot install multiple files.
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5
-$as_echo_n "checking for a BSD-compatible install... " >&6; }
-if test -z "$INSTALL"; then
-if test "${ac_cv_path_install+set}" = set; then :
- $as_echo_n "(cached) " >&6
-else
- as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-for as_dir in $PATH
-do
- IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- # Account for people who put trailing slashes in PATH elements.
-case $as_dir/ in @%:@((
- ./ | .// | /[cC]/* | \
- /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \
- ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \
- /usr/ucb/* ) ;;
- *)
- # OSF1 and SCO ODT 3.0 have their own names for install.
- # Don't use installbsd from OSF since it installs stuff as root
- # by default.
- for ac_prog in ginstall scoinst install; do
- for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; }; then
- if test $ac_prog = install &&
- grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
- # AIX install. It has an incompatible calling convention.
- :
- elif test $ac_prog = install &&
- grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
- # program-specific install script used by HP pwplus--don't use.
- :
- else
- rm -rf conftest.one conftest.two conftest.dir
- echo one > conftest.one
- echo two > conftest.two
- mkdir conftest.dir
- if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" &&
- test -s conftest.one && test -s conftest.two &&
- test -s conftest.dir/conftest.one &&
- test -s conftest.dir/conftest.two
- then
- ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c"
- break 3
- fi
- fi
- fi
- done
- done
- ;;
-esac
-
- done
-IFS=$as_save_IFS
-
-rm -rf conftest.one conftest.two conftest.dir
-
-fi
- if test "${ac_cv_path_install+set}" = set; then
- INSTALL=$ac_cv_path_install
- else
- # As a last resort, use the slow shell script. Don't cache a
- # value for INSTALL within a source directory, because that will
- # break other packages using the cache if that directory is
- # removed, or if the value is a relative name.
- INSTALL=$ac_install_sh
- fi
-fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5
-$as_echo "$INSTALL" >&6; }
-
-# Use test -z because SunOS4 sh mishandles braces in ${var-val}.
-# It thinks the first close brace ends the variable substitution.
-test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
-
-test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
-
-test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
-
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5
-$as_echo_n "checking whether build environment is sane... " >&6; }
-# Just in case
-sleep 1
-echo timestamp > conftest.file
-# Do `set' in a subshell so we don't clobber the current shell's
-# arguments. Must try -L first in case configure is actually a
-# symlink; some systems play weird games with the mod time of symlinks
-# (eg FreeBSD returns the mod time of the symlink's containing
-# directory).
-if (
- set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null`
- if test "$*" = "X"; then
- # -L didn't work.
- set X `ls -t $srcdir/configure conftest.file`
- fi
- rm -f conftest.file
- if test "$*" != "X $srcdir/configure conftest.file" \
- && test "$*" != "X conftest.file $srcdir/configure"; then
-
- # If neither matched, then we have a broken ls. This can happen
- # if, for instance, CONFIG_SHELL is bash and it inherits a
- # broken ls alias from the environment. This has actually
- # happened. Such a system could not be considered "sane".
- as_fn_error "ls -t appears to fail. Make sure there is not a broken
-alias in your environment" "$LINENO" 5
- fi
-
- test "$2" = conftest.file
- )
-then
- # Ok.
- :
-else
- as_fn_error "newly created file is older than distributed files!
-Check your system clock" "$LINENO" 5
-fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-$as_echo "yes" >&6; }
-test "$program_prefix" != NONE &&
- program_transform_name="s&^&$program_prefix&;$program_transform_name"
-# Use a double $ so make ignores it.
-test "$program_suffix" != NONE &&
- program_transform_name="s&\$&$program_suffix&;$program_transform_name"
-# Double any \ or $.
-# By default was `s,x,x', remove it if useless.
-ac_script='s/[\\$]/&&/g;s/;s,x,x,$//'
-program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"`
-
-# expand $ac_aux_dir to an absolute path
-am_aux_dir=`cd $ac_aux_dir && pwd`
-
-test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing"
-# Use eval to expand $SHELL
-if eval "$MISSING --run true"; then
- am_missing_run="$MISSING --run "
-else
- am_missing_run=
- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`missing' script is too old or missing" >&5
-$as_echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;}
-fi
-
-if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then
- # We used to keeping the `.' as first argument, in order to
- # allow $(mkdir_p) to be used without argument. As in
- # $(mkdir_p) $(somedir)
- # where $(somedir) is conditionally defined. However this is wrong
- # for two reasons:
- # 1. if the package is installed by a user who cannot write `.'
- # make install will fail,
- # 2. the above comment should most certainly read
- # $(mkdir_p) $(DESTDIR)$(somedir)
- # so it does not work when $(somedir) is undefined and
- # $(DESTDIR) is not.
- # To support the latter case, we have to write
- # test -z "$(somedir)" || $(mkdir_p) $(DESTDIR)$(somedir),
- # so the `.' trick is pointless.
- mkdir_p='mkdir -p --'
-else
- # On NextStep and OpenStep, the `mkdir' command does not
- # recognize any option. It will interpret all options as
- # directories to create, and then abort because `.' already
- # exists.
- for d in ./-p ./--version;
- do
- test -d $d && rmdir $d
- done
- # $(mkinstalldirs) is defined by Automake if mkinstalldirs exists.
- if test -f "$ac_aux_dir/mkinstalldirs"; then
- mkdir_p='$(mkinstalldirs)'
- else
- mkdir_p='$(install_sh) -d'
- fi
-fi
-
-for ac_prog in gawk mawk nawk awk
-do
- # Extract the first word of "$ac_prog", so it can be a program name with args.
-set dummy $ac_prog; ac_word=$2
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
-$as_echo_n "checking for $ac_word... " >&6; }
-if test "${ac_cv_prog_AWK+set}" = set; then :
- $as_echo_n "(cached) " >&6
-else
- if test -n "$AWK"; then
- ac_cv_prog_AWK="$AWK" # Let the user override the test.
-else
-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-for as_dir in $PATH
-do
- IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
- ac_cv_prog_AWK="$ac_prog"
- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
- break 2
- fi
-done
- done
-IFS=$as_save_IFS
-
-fi
-fi
-AWK=$ac_cv_prog_AWK
-if test -n "$AWK"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5
-$as_echo "$AWK" >&6; }
-else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
-fi
-
-
- test -n "$AWK" && break
-done
-
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5
-$as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; }
-set x ${MAKE-make}
-ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
-if { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then :
- $as_echo_n "(cached) " >&6
-else
- cat >conftest.make <<\_ACEOF
-SHELL = /bin/sh
-all:
- @echo '@@@%%%=$(MAKE)=@@@%%%'
-_ACEOF
-# GNU make sometimes prints "make[1]: Entering...", which would confuse us.
-case `${MAKE-make} -f conftest.make 2>/dev/null` in
- *@@@%%%=?*=@@@%%%*)
- eval ac_cv_prog_make_${ac_make}_set=yes;;
- *)
- eval ac_cv_prog_make_${ac_make}_set=no;;
-esac
-rm -f conftest.make
-fi
-if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-$as_echo "yes" >&6; }
- SET_MAKE=
-else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
- SET_MAKE="MAKE=${MAKE-make}"
-fi
-
-rm -rf .tst 2>/dev/null
-mkdir .tst 2>/dev/null
-if test -d .tst; then
- am__leading_dot=.
-else
- am__leading_dot=_
-fi
-rmdir .tst 2>/dev/null
-
-# test to see if srcdir already configured
-if test "`cd $srcdir && pwd`" != "`pwd`" &&
- test -f $srcdir/config.status; then
- as_fn_error "source directory already configured; run \"make distclean\" there first" "$LINENO" 5
-fi
-
-# test whether we have cygpath
-if test -z "$CYGPATH_W"; then
- if (cygpath --version) >/dev/null 2>/dev/null; then
- CYGPATH_W='cygpath -w'
- else
- CYGPATH_W=echo
- fi
-fi
-
-
-# Define the identity of the package.
- PACKAGE='ecasound'
- VERSION='2.7.2'
-
-
-cat >>confdefs.h <<_ACEOF
-@%:@define PACKAGE "$PACKAGE"
-_ACEOF
-
-
-cat >>confdefs.h <<_ACEOF
-@%:@define VERSION "$VERSION"
-_ACEOF
-
-# Some tools Automake needs.
-
-ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"}
-
-
-AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"}
-
-
-AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"}
-
-
-AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"}
-
-
-MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"}
-
-install_sh=${install_sh-"$am_aux_dir/install-sh"}
-
-# Installed binaries are usually stripped using `strip' when the user
-# run `make install-strip'. However `strip' might not be the right
-# tool to use in cross-compilation environments, therefore Automake
-# will honor the `STRIP' environment variable to overrule this program.
-if test "$cross_compiling" != no; then
- if test -n "$ac_tool_prefix"; then
- # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args.
-set dummy ${ac_tool_prefix}strip; ac_word=$2
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
-$as_echo_n "checking for $ac_word... " >&6; }
-if test "${ac_cv_prog_STRIP+set}" = set; then :
- $as_echo_n "(cached) " >&6
-else
- if test -n "$STRIP"; then
- ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
-else
-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-for as_dir in $PATH
-do
- IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
- ac_cv_prog_STRIP="${ac_tool_prefix}strip"
- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
- break 2
- fi
-done
- done
-IFS=$as_save_IFS
-
-fi
-fi
-STRIP=$ac_cv_prog_STRIP
-if test -n "$STRIP"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5
-$as_echo "$STRIP" >&6; }
-else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
-fi
-
-
-fi
-if test -z "$ac_cv_prog_STRIP"; then
- ac_ct_STRIP=$STRIP
- # Extract the first word of "strip", so it can be a program name with args.
-set dummy strip; ac_word=$2
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
-$as_echo_n "checking for $ac_word... " >&6; }
-if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then :
- $as_echo_n "(cached) " >&6
-else
- if test -n "$ac_ct_STRIP"; then
- ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test.
-else
-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-for as_dir in $PATH
-do
- IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
- ac_cv_prog_ac_ct_STRIP="strip"
- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
- break 2
- fi
-done
- done
-IFS=$as_save_IFS
-
-fi
-fi
-ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP
-if test -n "$ac_ct_STRIP"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5
-$as_echo "$ac_ct_STRIP" >&6; }
-else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
-fi
-
- if test "x$ac_ct_STRIP" = x; then
- STRIP=":"
- else
- case $cross_compiling:$ac_tool_warned in
-yes:)
-{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
-$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
-ac_tool_warned=yes ;;
-esac
- STRIP=$ac_ct_STRIP
- fi
-else
- STRIP="$ac_cv_prog_STRIP"
-fi
-
-fi
-INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s"
-
-# We need awk for the "check" target. The system "awk" is bad on
-# some platforms.
-# Always define AMTAR for backward compatibility.
-
-AMTAR=${AMTAR-"${am_missing_run}tar"}
-
-am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'
-
-
-
-
-
-
-ac_config_headers="$ac_config_headers config.h"
-
-
-
-echo "------------------------------------------------------------------"
-echo "1. Section: Basic setup"
-echo "------------------------------------------------------------------"
-
-
-LIBECASOUND_VERSION=22
-LIBECASOUND_VERSION_AGE=0
-LIBECASOUNDC_VERSION=2
-LIBECASOUNDC_VERSION_AGE=1
-LIBKVUTILS_VERSION=9
-LIBKVUTILS_VERSION_AGE=5
-
-
-
-
-
-
-
-
-
-cat >>confdefs.h <<_ACEOF
-@%:@define LIBECASOUND_VERSION ${LIBECASOUND_VERSION}
-_ACEOF
-
-
-cat >>confdefs.h <<_ACEOF
-@%:@define LIBECASOUND_VERSION_AGE ${LIBECASOUND_VERSION_AGE}
-_ACEOF
-
-
-cat >>confdefs.h <<_ACEOF
-@%:@define LIBECASOUNDC_VERSION ${LIBECASOUNDC_VERSION}
-_ACEOF
-
-
-cat >>confdefs.h <<_ACEOF
-@%:@define LIBKVUTILS_VERSION ${LIBKVUTILS_VERSION}
-_ACEOF
-
-
-cat >>confdefs.h <<_ACEOF
-@%:@define LIBKVUTILS_VERSION_AGE ${LIBKVUTILS_VERSION_AGE}
-_ACEOF
-
-
-
-ac_ext=c
-ac_cpp='$CPP $CPPFLAGS'
-ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
-ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
-ac_compiler_gnu=$ac_cv_c_compiler_gnu
-if test -n "$ac_tool_prefix"; then
- # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args.
-set dummy ${ac_tool_prefix}gcc; ac_word=$2
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
-$as_echo_n "checking for $ac_word... " >&6; }
-if test "${ac_cv_prog_CC+set}" = set; then :
- $as_echo_n "(cached) " >&6
-else
- if test -n "$CC"; then
- ac_cv_prog_CC="$CC" # Let the user override the test.
-else
-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-for as_dir in $PATH
-do
- IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
- ac_cv_prog_CC="${ac_tool_prefix}gcc"
- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
- break 2
- fi
-done
- done
-IFS=$as_save_IFS
-
-fi
-fi
-CC=$ac_cv_prog_CC
-if test -n "$CC"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
-$as_echo "$CC" >&6; }
-else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
-fi
-
-
-fi
-if test -z "$ac_cv_prog_CC"; then
- ac_ct_CC=$CC
- # Extract the first word of "gcc", so it can be a program name with args.
-set dummy gcc; ac_word=$2
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
-$as_echo_n "checking for $ac_word... " >&6; }
-if test "${ac_cv_prog_ac_ct_CC+set}" = set; then :
- $as_echo_n "(cached) " >&6
-else
- if test -n "$ac_ct_CC"; then
- ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
-else
-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-for as_dir in $PATH
-do
- IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
- ac_cv_prog_ac_ct_CC="gcc"
- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
- break 2
- fi
-done
- done
-IFS=$as_save_IFS
-
-fi
-fi
-ac_ct_CC=$ac_cv_prog_ac_ct_CC
-if test -n "$ac_ct_CC"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5
-$as_echo "$ac_ct_CC" >&6; }
-else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
-fi
-
- if test "x$ac_ct_CC" = x; then
- CC=""
- else
- case $cross_compiling:$ac_tool_warned in
-yes:)
-{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
-$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
-ac_tool_warned=yes ;;
-esac
- CC=$ac_ct_CC
- fi
-else
- CC="$ac_cv_prog_CC"
-fi
-
-if test -z "$CC"; then
- if test -n "$ac_tool_prefix"; then
- # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
-set dummy ${ac_tool_prefix}cc; ac_word=$2
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
-$as_echo_n "checking for $ac_word... " >&6; }
-if test "${ac_cv_prog_CC+set}" = set; then :
- $as_echo_n "(cached) " >&6
-else
- if test -n "$CC"; then
- ac_cv_prog_CC="$CC" # Let the user override the test.
-else
-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-for as_dir in $PATH
-do
- IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
- ac_cv_prog_CC="${ac_tool_prefix}cc"
- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
- break 2
- fi
-done
- done
-IFS=$as_save_IFS
-
-fi
-fi
-CC=$ac_cv_prog_CC
-if test -n "$CC"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
-$as_echo "$CC" >&6; }
-else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
-fi
-
-
- fi
-fi
-if test -z "$CC"; then
- # Extract the first word of "cc", so it can be a program name with args.
-set dummy cc; ac_word=$2
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
-$as_echo_n "checking for $ac_word... " >&6; }
-if test "${ac_cv_prog_CC+set}" = set; then :
- $as_echo_n "(cached) " >&6
-else
- if test -n "$CC"; then
- ac_cv_prog_CC="$CC" # Let the user override the test.
-else
- ac_prog_rejected=no
-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-for as_dir in $PATH
-do
- IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
- if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then
- ac_prog_rejected=yes
- continue
- fi
- ac_cv_prog_CC="cc"
- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
- break 2
- fi
-done
- done
-IFS=$as_save_IFS
-
-if test $ac_prog_rejected = yes; then
- # We found a bogon in the path, so make sure we never use it.
- set dummy $ac_cv_prog_CC
- shift
- if test $@%:@ != 0; then
- # We chose a different compiler from the bogus one.
- # However, it has the same basename, so the bogon will be chosen
- # first if we set CC to just the basename; use the full file name.
- shift
- ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@"
- fi
-fi
-fi
-fi
-CC=$ac_cv_prog_CC
-if test -n "$CC"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
-$as_echo "$CC" >&6; }
-else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
-fi
-
-
-fi
-if test -z "$CC"; then
- if test -n "$ac_tool_prefix"; then
- for ac_prog in cl.exe
- do
- # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
-set dummy $ac_tool_prefix$ac_prog; ac_word=$2
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
-$as_echo_n "checking for $ac_word... " >&6; }
-if test "${ac_cv_prog_CC+set}" = set; then :
- $as_echo_n "(cached) " >&6
-else
- if test -n "$CC"; then
- ac_cv_prog_CC="$CC" # Let the user override the test.
-else
-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-for as_dir in $PATH
-do
- IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
- ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
- break 2
- fi
-done
- done
-IFS=$as_save_IFS
-
-fi
-fi
-CC=$ac_cv_prog_CC
-if test -n "$CC"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
-$as_echo "$CC" >&6; }
-else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
-fi
-
-
- test -n "$CC" && break
- done
-fi
-if test -z "$CC"; then
- ac_ct_CC=$CC
- for ac_prog in cl.exe
-do
- # Extract the first word of "$ac_prog", so it can be a program name with args.
-set dummy $ac_prog; ac_word=$2
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
-$as_echo_n "checking for $ac_word... " >&6; }
-if test "${ac_cv_prog_ac_ct_CC+set}" = set; then :
- $as_echo_n "(cached) " >&6
-else
- if test -n "$ac_ct_CC"; then
- ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
-else
-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-for as_dir in $PATH
-do
- IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
- ac_cv_prog_ac_ct_CC="$ac_prog"
- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
- break 2
- fi
-done
- done
-IFS=$as_save_IFS
-
-fi
-fi
-ac_ct_CC=$ac_cv_prog_ac_ct_CC
-if test -n "$ac_ct_CC"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5
-$as_echo "$ac_ct_CC" >&6; }
-else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
-fi
-
-
- test -n "$ac_ct_CC" && break
-done
-
- if test "x$ac_ct_CC" = x; then
- CC=""
- else
- case $cross_compiling:$ac_tool_warned in
-yes:)
-{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
-$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
-ac_tool_warned=yes ;;
-esac
- CC=$ac_ct_CC
- fi
-fi
-
-fi
-
-
-test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
-as_fn_error "no acceptable C compiler found in \$PATH
-See \`config.log' for more details." "$LINENO" 5; }
-
-# Provide some information about the compiler.
-$as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5
-set X $ac_compile
-ac_compiler=$2
-for ac_option in --version -v -V -qversion; do
- { { ac_try="$ac_compiler $ac_option >&5"
-case "(($ac_try" in
- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
- *) ac_try_echo=$ac_try;;
-esac
-eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
-$as_echo "$ac_try_echo"; } >&5
- (eval "$ac_compiler $ac_option >&5") 2>conftest.err
- ac_status=$?
- if test -s conftest.err; then
- sed '10a\
-... rest of stderr output deleted ...
- 10q' conftest.err >conftest.er1
- cat conftest.er1 >&5
- fi
- rm -f conftest.er1 conftest.err
- $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
- test $ac_status = 0; }
-done
-
-cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-/* end confdefs.h. */
-
-int
-main ()
-{
-
- ;
- return 0;
-}
-_ACEOF
-ac_clean_files_save=$ac_clean_files
-ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out"
-# Try to create an executable without -o first, disregard a.out.
-# It will help us diagnose broken compilers, and finding out an intuition
-# of exeext.
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5
-$as_echo_n "checking whether the C compiler works... " >&6; }
-ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
-
-# The possible output files:
-ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*"
-
-ac_rmfiles=
-for ac_file in $ac_files
-do
- case $ac_file in
- *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;;
- * ) ac_rmfiles="$ac_rmfiles $ac_file";;
- esac
-done
-rm -f $ac_rmfiles
-
-if { { ac_try="$ac_link_default"
-case "(($ac_try" in
- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
- *) ac_try_echo=$ac_try;;
-esac
-eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
-$as_echo "$ac_try_echo"; } >&5
- (eval "$ac_link_default") 2>&5
- ac_status=$?
- $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
- test $ac_status = 0; }; then :
- # Autoconf-2.13 could set the ac_cv_exeext variable to `no'.
-# So ignore a value of `no', otherwise this would lead to `EXEEXT = no'
-# in a Makefile. We should not override ac_cv_exeext if it was cached,
-# so that the user can short-circuit this test for compilers unknown to
-# Autoconf.
-for ac_file in $ac_files ''
-do
- test -f "$ac_file" || continue
- case $ac_file in
- *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj )
- ;;
- [ab].out )
- # We found the default executable, but exeext='' is most
- # certainly right.
- break;;
- *.* )
- if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no;
- then :; else
- ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
- fi
- # We set ac_cv_exeext here because the later test for it is not
- # safe: cross compilers may not add the suffix if given an `-o'
- # argument, so we may need to know it at that point already.
- # Even if this section looks crufty: it has the advantage of
- # actually working.
- break;;
- * )
- break;;
- esac
-done
-test "$ac_cv_exeext" = no && ac_cv_exeext=
-
-else
- ac_file=''
-fi
-if test -z "$ac_file"; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
-$as_echo "$as_me: failed program was:" >&5
-sed 's/^/| /' conftest.$ac_ext >&5
-
-{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
-{ as_fn_set_status 77
-as_fn_error "C compiler cannot create executables
-See \`config.log' for more details." "$LINENO" 5; }; }
-else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-$as_echo "yes" >&6; }
-fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5
-$as_echo_n "checking for C compiler default output file name... " >&6; }
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5
-$as_echo "$ac_file" >&6; }
-ac_exeext=$ac_cv_exeext
-
-rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out
-ac_clean_files=$ac_clean_files_save
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5
-$as_echo_n "checking for suffix of executables... " >&6; }
-if { { ac_try="$ac_link"
-case "(($ac_try" in
- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
- *) ac_try_echo=$ac_try;;
-esac
-eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
-$as_echo "$ac_try_echo"; } >&5
- (eval "$ac_link") 2>&5
- ac_status=$?
- $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
- test $ac_status = 0; }; then :
- # If both `conftest.exe' and `conftest' are `present' (well, observable)
-# catch `conftest.exe'. For instance with Cygwin, `ls conftest' will
-# work properly (i.e., refer to `conftest.exe'), while it won't with
-# `rm'.
-for ac_file in conftest.exe conftest conftest.*; do
- test -f "$ac_file" || continue
- case $ac_file in
- *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;;
- *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
- break;;
- * ) break;;
- esac
-done
-else
- { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
-as_fn_error "cannot compute suffix of executables: cannot compile and link
-See \`config.log' for more details." "$LINENO" 5; }
-fi
-rm -f conftest conftest$ac_cv_exeext
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5
-$as_echo "$ac_cv_exeext" >&6; }
-
-rm -f conftest.$ac_ext
-EXEEXT=$ac_cv_exeext
-ac_exeext=$EXEEXT
-cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-/* end confdefs.h. */
-@%:@include
-int
-main ()
-{
-FILE *f = fopen ("conftest.out", "w");
- return ferror (f) || fclose (f) != 0;
-
- ;
- return 0;
-}
-_ACEOF
-ac_clean_files="$ac_clean_files conftest.out"
-# Check that the compiler produces executables we can run. If not, either
-# the compiler is broken, or we cross compile.
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5
-$as_echo_n "checking whether we are cross compiling... " >&6; }
-if test "$cross_compiling" != yes; then
- { { ac_try="$ac_link"
-case "(($ac_try" in
- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
- *) ac_try_echo=$ac_try;;
-esac
-eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
-$as_echo "$ac_try_echo"; } >&5
- (eval "$ac_link") 2>&5
- ac_status=$?
- $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
- test $ac_status = 0; }
- if { ac_try='./conftest$ac_cv_exeext'
- { { case "(($ac_try" in
- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
- *) ac_try_echo=$ac_try;;
-esac
-eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
-$as_echo "$ac_try_echo"; } >&5
- (eval "$ac_try") 2>&5
- ac_status=$?
- $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
- test $ac_status = 0; }; }; then
- cross_compiling=no
- else
- if test "$cross_compiling" = maybe; then
- cross_compiling=yes
- else
- { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
-as_fn_error "cannot run C compiled programs.
-If you meant to cross compile, use \`--host'.
-See \`config.log' for more details." "$LINENO" 5; }
- fi
- fi
-fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5
-$as_echo "$cross_compiling" >&6; }
-
-rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out
-ac_clean_files=$ac_clean_files_save
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5
-$as_echo_n "checking for suffix of object files... " >&6; }
-if test "${ac_cv_objext+set}" = set; then :
- $as_echo_n "(cached) " >&6
-else
- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-/* end confdefs.h. */
-
-int
-main ()
-{
-
- ;
- return 0;
-}
-_ACEOF
-rm -f conftest.o conftest.obj
-if { { ac_try="$ac_compile"
-case "(($ac_try" in
- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
- *) ac_try_echo=$ac_try;;
-esac
-eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
-$as_echo "$ac_try_echo"; } >&5
- (eval "$ac_compile") 2>&5
- ac_status=$?
- $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
- test $ac_status = 0; }; then :
- for ac_file in conftest.o conftest.obj conftest.*; do
- test -f "$ac_file" || continue;
- case $ac_file in
- *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;;
- *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`
- break;;
- esac
-done
-else
- $as_echo "$as_me: failed program was:" >&5
-sed 's/^/| /' conftest.$ac_ext >&5
-
-{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
-as_fn_error "cannot compute suffix of object files: cannot compile
-See \`config.log' for more details." "$LINENO" 5; }
-fi
-rm -f conftest.$ac_cv_objext conftest.$ac_ext
-fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5
-$as_echo "$ac_cv_objext" >&6; }
-OBJEXT=$ac_cv_objext
-ac_objext=$OBJEXT
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5
-$as_echo_n "checking whether we are using the GNU C compiler... " >&6; }
-if test "${ac_cv_c_compiler_gnu+set}" = set; then :
- $as_echo_n "(cached) " >&6
-else
- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-/* end confdefs.h. */
-
-int
-main ()
-{
-#ifndef __GNUC__
- choke me
-#endif
-
- ;
- return 0;
-}
-_ACEOF
-if ac_fn_c_try_compile "$LINENO"; then :
- ac_compiler_gnu=yes
-else
- ac_compiler_gnu=no
-fi
-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-ac_cv_c_compiler_gnu=$ac_compiler_gnu
-
-fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5
-$as_echo "$ac_cv_c_compiler_gnu" >&6; }
-if test $ac_compiler_gnu = yes; then
- GCC=yes
-else
- GCC=
-fi
-ac_test_CFLAGS=${CFLAGS+set}
-ac_save_CFLAGS=$CFLAGS
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5
-$as_echo_n "checking whether $CC accepts -g... " >&6; }
-if test "${ac_cv_prog_cc_g+set}" = set; then :
- $as_echo_n "(cached) " >&6
-else
- ac_save_c_werror_flag=$ac_c_werror_flag
- ac_c_werror_flag=yes
- ac_cv_prog_cc_g=no
- CFLAGS="-g"
- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-/* end confdefs.h. */
-
-int
-main ()
-{
-
- ;
- return 0;
-}
-_ACEOF
-if ac_fn_c_try_compile "$LINENO"; then :
- ac_cv_prog_cc_g=yes
-else
- CFLAGS=""
- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-/* end confdefs.h. */
-
-int
-main ()
-{
-
- ;
- return 0;
-}
-_ACEOF
-if ac_fn_c_try_compile "$LINENO"; then :
-
-else
- ac_c_werror_flag=$ac_save_c_werror_flag
- CFLAGS="-g"
- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-/* end confdefs.h. */
-
-int
-main ()
-{
-
- ;
- return 0;
-}
-_ACEOF
-if ac_fn_c_try_compile "$LINENO"; then :
- ac_cv_prog_cc_g=yes
-fi
-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-fi
-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-fi
-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
- ac_c_werror_flag=$ac_save_c_werror_flag
-fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5
-$as_echo "$ac_cv_prog_cc_g" >&6; }
-if test "$ac_test_CFLAGS" = set; then
- CFLAGS=$ac_save_CFLAGS
-elif test $ac_cv_prog_cc_g = yes; then
- if test "$GCC" = yes; then
- CFLAGS="-g -O2"
- else
- CFLAGS="-g"
- fi
-else
- if test "$GCC" = yes; then
- CFLAGS="-O2"
- else
- CFLAGS=
- fi
-fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5
-$as_echo_n "checking for $CC option to accept ISO C89... " >&6; }
-if test "${ac_cv_prog_cc_c89+set}" = set; then :
- $as_echo_n "(cached) " >&6
-else
- ac_cv_prog_cc_c89=no
-ac_save_CC=$CC
-cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-/* end confdefs.h. */
-#include
-#include
-#include
-#include
-/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */
-struct buf { int x; };
-FILE * (*rcsopen) (struct buf *, struct stat *, int);
-static char *e (p, i)
- char **p;
- int i;
-{
- return p[i];
-}
-static char *f (char * (*g) (char **, int), char **p, ...)
-{
- char *s;
- va_list v;
- va_start (v,p);
- s = g (p, va_arg (v,int));
- va_end (v);
- return s;
-}
-
-/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has
- function prototypes and stuff, but not '\xHH' hex character constants.
- These don't provoke an error unfortunately, instead are silently treated
- as 'x'. The following induces an error, until -std is added to get
- proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an
- array size at least. It's necessary to write '\x00'==0 to get something
- that's true only with -std. */
-int osf4_cc_array ['\x00' == 0 ? 1 : -1];
-
-/* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters
- inside strings and character constants. */
-#define FOO(x) 'x'
-int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1];
-
-int test (int i, double x);
-struct s1 {int (*f) (int a);};
-struct s2 {int (*f) (double a);};
-int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int);
-int argc;
-char **argv;
-int
-main ()
-{
-return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1];
- ;
- return 0;
-}
-_ACEOF
-for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \
- -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
-do
- CC="$ac_save_CC $ac_arg"
- if ac_fn_c_try_compile "$LINENO"; then :
- ac_cv_prog_cc_c89=$ac_arg
-fi
-rm -f core conftest.err conftest.$ac_objext
- test "x$ac_cv_prog_cc_c89" != "xno" && break
-done
-rm -f conftest.$ac_ext
-CC=$ac_save_CC
-
-fi
-# AC_CACHE_VAL
-case "x$ac_cv_prog_cc_c89" in
- x)
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5
-$as_echo "none needed" >&6; } ;;
- xno)
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5
-$as_echo "unsupported" >&6; } ;;
- *)
- CC="$CC $ac_cv_prog_cc_c89"
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5
-$as_echo "$ac_cv_prog_cc_c89" >&6; } ;;
-esac
-if test "x$ac_cv_prog_cc_c89" != xno; then :
-
-fi
-
-ac_ext=c
-ac_cpp='$CPP $CPPFLAGS'
-ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
-ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
-ac_compiler_gnu=$ac_cv_c_compiler_gnu
-DEPDIR="${am__leading_dot}deps"
-
-ac_config_commands="$ac_config_commands depfiles"
-
-
-am_make=${MAKE-make}
-cat > confinc << 'END'
-am__doit:
- @echo done
-.PHONY: am__doit
-END
-# If we don't find an include directive, just comment out the code.
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5
-$as_echo_n "checking for style of include used by $am_make... " >&6; }
-am__include="#"
-am__quote=
-_am_result=none
-# First try GNU make style include.
-echo "include confinc" > confmf
-# We grep out `Entering directory' and `Leaving directory'
-# messages which can occur if `w' ends up in MAKEFLAGS.
-# In particular we don't look at `^make:' because GNU make might
-# be invoked under some other name (usually "gmake"), in which
-# case it prints its new name instead of `make'.
-if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then
- am__include=include
- am__quote=
- _am_result=GNU
-fi
-# Now try BSD make style include.
-if test "$am__include" = "#"; then
- echo '.include "confinc"' > confmf
- if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then
- am__include=.include
- am__quote="\""
- _am_result=BSD
- fi
-fi
-
-
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5
-$as_echo "$_am_result" >&6; }
-rm -f confinc confmf
-
-@%:@ Check whether --enable-dependency-tracking was given.
-if test "${enable_dependency_tracking+set}" = set; then :
- enableval=$enable_dependency_tracking;
-fi
-
-if test "x$enable_dependency_tracking" != xno; then
- am_depcomp="$ac_aux_dir/depcomp"
- AMDEPBACKSLASH='\'
-fi
-
-
-if test "x$enable_dependency_tracking" != xno; then
- AMDEP_TRUE=
- AMDEP_FALSE='#'
-else
- AMDEP_TRUE='#'
- AMDEP_FALSE=
-fi
-
-
-
-
-depcc="$CC" am_compiler_list=
-
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5
-$as_echo_n "checking dependency style of $depcc... " >&6; }
-if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then :
- $as_echo_n "(cached) " >&6
-else
- if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
- # We make a subdir and do the tests there. Otherwise we can end up
- # making bogus files that we don't know about and never remove. For
- # instance it was reported that on HP-UX the gcc test will end up
- # making a dummy file named `D' -- because `-MD' means `put the output
- # in D'.
- mkdir conftest.dir
- # Copy depcomp to subdir because otherwise we won't find it if we're
- # using a relative directory.
- cp "$am_depcomp" conftest.dir
- cd conftest.dir
- # We will build objects and dependencies in a subdirectory because
- # it helps to detect inapplicable dependency modes. For instance
- # both Tru64's cc and ICC support -MD to output dependencies as a
- # side effect of compilation, but ICC will put the dependencies in
- # the current directory while Tru64 will put them in the object
- # directory.
- mkdir sub
-
- am_cv_CC_dependencies_compiler_type=none
- if test "$am_compiler_list" = ""; then
- am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp`
- fi
- for depmode in $am_compiler_list; do
- # Setup a source with many dependencies, because some compilers
- # like to wrap large dependency lists on column 80 (with \), and
- # we should not choose a depcomp mode which is confused by this.
- #
- # We need to recreate these files for each test, as the compiler may
- # overwrite some of them when testing with obscure command lines.
- # This happens at least with the AIX C compiler.
- : > sub/conftest.c
- for i in 1 2 3 4 5 6; do
- echo '#include "conftst'$i'.h"' >> sub/conftest.c
- # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with
- # Solaris 8's {/usr,}/bin/sh.
- touch sub/conftst$i.h
- done
- echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
-
- case $depmode in
- nosideeffect)
- # after this tag, mechanisms are not by side-effect, so they'll
- # only be used when explicitly requested
- if test "x$enable_dependency_tracking" = xyes; then
- continue
- else
- break
- fi
- ;;
- none) break ;;
- esac
- # We check with `-c' and `-o' for the sake of the "dashmstdout"
- # mode. It turns out that the SunPro C++ compiler does not properly
- # handle `-M -o', and we need to detect this.
- if depmode=$depmode \
- source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \
- depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
- $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \
- >/dev/null 2>conftest.err &&
- grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
- grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 &&
- ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
- # icc doesn't choke on unknown options, it will just issue warnings
- # or remarks (even with -Werror). So we grep stderr for any message
- # that says an option was ignored or not supported.
- # When given -MP, icc 7.0 and 7.1 complain thusly:
- # icc: Command line warning: ignoring option '-M'; no argument required
- # The diagnosis changed in icc 8.0:
- # icc: Command line remark: option '-MP' not supported
- if (grep 'ignoring option' conftest.err ||
- grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
- am_cv_CC_dependencies_compiler_type=$depmode
- break
- fi
- fi
- done
-
- cd ..
- rm -rf conftest.dir
-else
- am_cv_CC_dependencies_compiler_type=none
-fi
-
-fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5
-$as_echo "$am_cv_CC_dependencies_compiler_type" >&6; }
-CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type
-
-
-
-if
- test "x$enable_dependency_tracking" != xno \
- && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then
- am__fastdepCC_TRUE=
- am__fastdepCC_FALSE='#'
-else
- am__fastdepCC_TRUE='#'
- am__fastdepCC_FALSE=
-fi
-
-
-ac_ext=cpp
-ac_cpp='$CXXCPP $CPPFLAGS'
-ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
-ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
-ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
-if test -z "$CXX"; then
- if test -n "$CCC"; then
- CXX=$CCC
- else
- if test -n "$ac_tool_prefix"; then
- for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC
- do
- # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
-set dummy $ac_tool_prefix$ac_prog; ac_word=$2
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
-$as_echo_n "checking for $ac_word... " >&6; }
-if test "${ac_cv_prog_CXX+set}" = set; then :
- $as_echo_n "(cached) " >&6
-else
- if test -n "$CXX"; then
- ac_cv_prog_CXX="$CXX" # Let the user override the test.
-else
-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-for as_dir in $PATH
-do
- IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
- ac_cv_prog_CXX="$ac_tool_prefix$ac_prog"
- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
- break 2
- fi
-done
- done
-IFS=$as_save_IFS
-
-fi
-fi
-CXX=$ac_cv_prog_CXX
-if test -n "$CXX"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXX" >&5
-$as_echo "$CXX" >&6; }
-else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
-fi
-
-
- test -n "$CXX" && break
- done
-fi
-if test -z "$CXX"; then
- ac_ct_CXX=$CXX
- for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC
-do
- # Extract the first word of "$ac_prog", so it can be a program name with args.
-set dummy $ac_prog; ac_word=$2
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
-$as_echo_n "checking for $ac_word... " >&6; }
-if test "${ac_cv_prog_ac_ct_CXX+set}" = set; then :
- $as_echo_n "(cached) " >&6
-else
- if test -n "$ac_ct_CXX"; then
- ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # Let the user override the test.
-else
-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-for as_dir in $PATH
-do
- IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
- ac_cv_prog_ac_ct_CXX="$ac_prog"
- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
- break 2
- fi
-done
- done
-IFS=$as_save_IFS
-
-fi
-fi
-ac_ct_CXX=$ac_cv_prog_ac_ct_CXX
-if test -n "$ac_ct_CXX"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CXX" >&5
-$as_echo "$ac_ct_CXX" >&6; }
-else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
-fi
-
-
- test -n "$ac_ct_CXX" && break
-done
-
- if test "x$ac_ct_CXX" = x; then
- CXX="g++"
- else
- case $cross_compiling:$ac_tool_warned in
-yes:)
-{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
-$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
-ac_tool_warned=yes ;;
-esac
- CXX=$ac_ct_CXX
- fi
-fi
-
- fi
-fi
-# Provide some information about the compiler.
-$as_echo "$as_me:${as_lineno-$LINENO}: checking for C++ compiler version" >&5
-set X $ac_compile
-ac_compiler=$2
-for ac_option in --version -v -V -qversion; do
- { { ac_try="$ac_compiler $ac_option >&5"
-case "(($ac_try" in
- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
- *) ac_try_echo=$ac_try;;
-esac
-eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
-$as_echo "$ac_try_echo"; } >&5
- (eval "$ac_compiler $ac_option >&5") 2>conftest.err
- ac_status=$?
- if test -s conftest.err; then
- sed '10a\
-... rest of stderr output deleted ...
- 10q' conftest.err >conftest.er1
- cat conftest.er1 >&5
- fi
- rm -f conftest.er1 conftest.err
- $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
- test $ac_status = 0; }
-done
-
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C++ compiler" >&5
-$as_echo_n "checking whether we are using the GNU C++ compiler... " >&6; }
-if test "${ac_cv_cxx_compiler_gnu+set}" = set; then :
- $as_echo_n "(cached) " >&6
-else
- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-/* end confdefs.h. */
-
-int
-main ()
-{
-#ifndef __GNUC__
- choke me
-#endif
-
- ;
- return 0;
-}
-_ACEOF
-if ac_fn_cxx_try_compile "$LINENO"; then :
- ac_compiler_gnu=yes
-else
- ac_compiler_gnu=no
-fi
-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-ac_cv_cxx_compiler_gnu=$ac_compiler_gnu
-
-fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cxx_compiler_gnu" >&5
-$as_echo "$ac_cv_cxx_compiler_gnu" >&6; }
-if test $ac_compiler_gnu = yes; then
- GXX=yes
-else
- GXX=
-fi
-ac_test_CXXFLAGS=${CXXFLAGS+set}
-ac_save_CXXFLAGS=$CXXFLAGS
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX accepts -g" >&5
-$as_echo_n "checking whether $CXX accepts -g... " >&6; }
-if test "${ac_cv_prog_cxx_g+set}" = set; then :
- $as_echo_n "(cached) " >&6
-else
- ac_save_cxx_werror_flag=$ac_cxx_werror_flag
- ac_cxx_werror_flag=yes
- ac_cv_prog_cxx_g=no
- CXXFLAGS="-g"
- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-/* end confdefs.h. */
-
-int
-main ()
-{
-
- ;
- return 0;
-}
-_ACEOF
-if ac_fn_cxx_try_compile "$LINENO"; then :
- ac_cv_prog_cxx_g=yes
-else
- CXXFLAGS=""
- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-/* end confdefs.h. */
-
-int
-main ()
-{
-
- ;
- return 0;
-}
-_ACEOF
-if ac_fn_cxx_try_compile "$LINENO"; then :
-
-else
- ac_cxx_werror_flag=$ac_save_cxx_werror_flag
- CXXFLAGS="-g"
- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-/* end confdefs.h. */
-
-int
-main ()
-{
-
- ;
- return 0;
-}
-_ACEOF
-if ac_fn_cxx_try_compile "$LINENO"; then :
- ac_cv_prog_cxx_g=yes
-fi
-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-fi
-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-fi
-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
- ac_cxx_werror_flag=$ac_save_cxx_werror_flag
-fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cxx_g" >&5
-$as_echo "$ac_cv_prog_cxx_g" >&6; }
-if test "$ac_test_CXXFLAGS" = set; then
- CXXFLAGS=$ac_save_CXXFLAGS
-elif test $ac_cv_prog_cxx_g = yes; then
- if test "$GXX" = yes; then
- CXXFLAGS="-g -O2"
- else
- CXXFLAGS="-g"
- fi
-else
- if test "$GXX" = yes; then
- CXXFLAGS="-O2"
- else
- CXXFLAGS=
- fi
-fi
-ac_ext=c
-ac_cpp='$CPP $CPPFLAGS'
-ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
-ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
-ac_compiler_gnu=$ac_cv_c_compiler_gnu
-
-depcc="$CXX" am_compiler_list=
-
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5
-$as_echo_n "checking dependency style of $depcc... " >&6; }
-if test "${am_cv_CXX_dependencies_compiler_type+set}" = set; then :
- $as_echo_n "(cached) " >&6
-else
- if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
- # We make a subdir and do the tests there. Otherwise we can end up
- # making bogus files that we don't know about and never remove. For
- # instance it was reported that on HP-UX the gcc test will end up
- # making a dummy file named `D' -- because `-MD' means `put the output
- # in D'.
- mkdir conftest.dir
- # Copy depcomp to subdir because otherwise we won't find it if we're
- # using a relative directory.
- cp "$am_depcomp" conftest.dir
- cd conftest.dir
- # We will build objects and dependencies in a subdirectory because
- # it helps to detect inapplicable dependency modes. For instance
- # both Tru64's cc and ICC support -MD to output dependencies as a
- # side effect of compilation, but ICC will put the dependencies in
- # the current directory while Tru64 will put them in the object
- # directory.
- mkdir sub
-
- am_cv_CXX_dependencies_compiler_type=none
- if test "$am_compiler_list" = ""; then
- am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp`
- fi
- for depmode in $am_compiler_list; do
- # Setup a source with many dependencies, because some compilers
- # like to wrap large dependency lists on column 80 (with \), and
- # we should not choose a depcomp mode which is confused by this.
- #
- # We need to recreate these files for each test, as the compiler may
- # overwrite some of them when testing with obscure command lines.
- # This happens at least with the AIX C compiler.
- : > sub/conftest.c
- for i in 1 2 3 4 5 6; do
- echo '#include "conftst'$i'.h"' >> sub/conftest.c
- # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with
- # Solaris 8's {/usr,}/bin/sh.
- touch sub/conftst$i.h
- done
- echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
-
- case $depmode in
- nosideeffect)
- # after this tag, mechanisms are not by side-effect, so they'll
- # only be used when explicitly requested
- if test "x$enable_dependency_tracking" = xyes; then
- continue
- else
- break
- fi
- ;;
- none) break ;;
- esac
- # We check with `-c' and `-o' for the sake of the "dashmstdout"
- # mode. It turns out that the SunPro C++ compiler does not properly
- # handle `-M -o', and we need to detect this.
- if depmode=$depmode \
- source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \
- depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
- $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \
- >/dev/null 2>conftest.err &&
- grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
- grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 &&
- ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
- # icc doesn't choke on unknown options, it will just issue warnings
- # or remarks (even with -Werror). So we grep stderr for any message
- # that says an option was ignored or not supported.
- # When given -MP, icc 7.0 and 7.1 complain thusly:
- # icc: Command line warning: ignoring option '-M'; no argument required
- # The diagnosis changed in icc 8.0:
- # icc: Command line remark: option '-MP' not supported
- if (grep 'ignoring option' conftest.err ||
- grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
- am_cv_CXX_dependencies_compiler_type=$depmode
- break
- fi
- fi
- done
-
- cd ..
- rm -rf conftest.dir
-else
- am_cv_CXX_dependencies_compiler_type=none
-fi
-
-fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CXX_dependencies_compiler_type" >&5
-$as_echo "$am_cv_CXX_dependencies_compiler_type" >&6; }
-CXXDEPMODE=depmode=$am_cv_CXX_dependencies_compiler_type
-
-
-
-if
- test "x$enable_dependency_tracking" != xno \
- && test "$am_cv_CXX_dependencies_compiler_type" = gcc3; then
- am__fastdepCXX_TRUE=
- am__fastdepCXX_FALSE='#'
-else
- am__fastdepCXX_TRUE='#'
- am__fastdepCXX_FALSE=
-fi
-
-
-ac_ext=c
-ac_cpp='$CPP $CPPFLAGS'
-ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
-ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
-ac_compiler_gnu=$ac_cv_c_compiler_gnu
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5
-$as_echo_n "checking how to run the C preprocessor... " >&6; }
-# On Suns, sometimes $CPP names a directory.
-if test -n "$CPP" && test -d "$CPP"; then
- CPP=
-fi
-if test -z "$CPP"; then
- if test "${ac_cv_prog_CPP+set}" = set; then :
- $as_echo_n "(cached) " >&6
-else
- # Double quotes because CPP needs to be expanded
- for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp"
- do
- ac_preproc_ok=false
-for ac_c_preproc_warn_flag in '' yes
-do
- # Use a header file that comes with gcc, so configuring glibc
- # with a fresh cross-compiler works.
- # Prefer to if __STDC__ is defined, since
- # exists even on freestanding compilers.
- # On the NeXT, cc -E runs the code through the compiler's parser,
- # not just through cpp. "Syntax error" is here to catch this case.
- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-/* end confdefs.h. */
-@%:@ifdef __STDC__
-@%:@ include
-@%:@else
-@%:@ include
-@%:@endif
- Syntax error
-_ACEOF
-if ac_fn_c_try_cpp "$LINENO"; then :
-
-else
- # Broken: fails on valid input.
-continue
-fi
-rm -f conftest.err conftest.$ac_ext
-
- # OK, works on sane cases. Now check whether nonexistent headers
- # can be detected and how.
- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-/* end confdefs.h. */
-@%:@include
-_ACEOF
-if ac_fn_c_try_cpp "$LINENO"; then :
- # Broken: success on invalid input.
-continue
-else
- # Passes both tests.
-ac_preproc_ok=:
-break
-fi
-rm -f conftest.err conftest.$ac_ext
-
-done
-# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
-rm -f conftest.err conftest.$ac_ext
-if $ac_preproc_ok; then :
- break
-fi
-
- done
- ac_cv_prog_CPP=$CPP
-
-fi
- CPP=$ac_cv_prog_CPP
-else
- ac_cv_prog_CPP=$CPP
-fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5
-$as_echo "$CPP" >&6; }
-ac_preproc_ok=false
-for ac_c_preproc_warn_flag in '' yes
-do
- # Use a header file that comes with gcc, so configuring glibc
- # with a fresh cross-compiler works.
- # Prefer to if __STDC__ is defined, since
- # exists even on freestanding compilers.
- # On the NeXT, cc -E runs the code through the compiler's parser,
- # not just through cpp. "Syntax error" is here to catch this case.
- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-/* end confdefs.h. */
-@%:@ifdef __STDC__
-@%:@ include
-@%:@else
-@%:@ include
-@%:@endif
- Syntax error
-_ACEOF
-if ac_fn_c_try_cpp "$LINENO"; then :
-
-else
- # Broken: fails on valid input.
-continue
-fi
-rm -f conftest.err conftest.$ac_ext
-
- # OK, works on sane cases. Now check whether nonexistent headers
- # can be detected and how.
- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-/* end confdefs.h. */
-@%:@include
-_ACEOF
-if ac_fn_c_try_cpp "$LINENO"; then :
- # Broken: success on invalid input.
-continue
-else
- # Passes both tests.
-ac_preproc_ok=:
-break
-fi
-rm -f conftest.err conftest.$ac_ext
-
-done
-# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
-rm -f conftest.err conftest.$ac_ext
-if $ac_preproc_ok; then :
-
-else
- { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
-as_fn_error "C preprocessor \"$CPP\" fails sanity check
-See \`config.log' for more details." "$LINENO" 5; }
-fi
-
-ac_ext=c
-ac_cpp='$CPP $CPPFLAGS'
-ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
-ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
-ac_compiler_gnu=$ac_cv_c_compiler_gnu
-
-ac_ext=cpp
-ac_cpp='$CXXCPP $CPPFLAGS'
-ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
-ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
-ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
-
-# Make sure we can run config.sub.
-$SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 ||
- as_fn_error "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5
-
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5
-$as_echo_n "checking build system type... " >&6; }
-if test "${ac_cv_build+set}" = set; then :
- $as_echo_n "(cached) " >&6
-else
- ac_build_alias=$build_alias
-test "x$ac_build_alias" = x &&
- ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"`
-test "x$ac_build_alias" = x &&
- as_fn_error "cannot guess build type; you must specify one" "$LINENO" 5
-ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` ||
- as_fn_error "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5
-
-fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5
-$as_echo "$ac_cv_build" >&6; }
-case $ac_cv_build in
-*-*-*) ;;
-*) as_fn_error "invalid value of canonical build" "$LINENO" 5;;
-esac
-build=$ac_cv_build
-ac_save_IFS=$IFS; IFS='-'
-set x $ac_cv_build
-shift
-build_cpu=$1
-build_vendor=$2
-shift; shift
-# Remember, the first character of IFS is used to create $*,
-# except with old shells:
-build_os=$*
-IFS=$ac_save_IFS
-case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac
-
-
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5
-$as_echo_n "checking host system type... " >&6; }
-if test "${ac_cv_host+set}" = set; then :
- $as_echo_n "(cached) " >&6
-else
- if test "x$host_alias" = x; then
- ac_cv_host=$ac_cv_build
-else
- ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` ||
- as_fn_error "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5
-fi
-
-fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5
-$as_echo "$ac_cv_host" >&6; }
-case $ac_cv_host in
-*-*-*) ;;
-*) as_fn_error "invalid value of canonical host" "$LINENO" 5;;
-esac
-host=$ac_cv_host
-ac_save_IFS=$IFS; IFS='-'
-set x $ac_cv_host
-shift
-host_cpu=$1
-host_vendor=$2
-shift; shift
-# Remember, the first character of IFS is used to create $*,
-# except with old shells:
-host_os=$*
-IFS=$ac_save_IFS
-case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac
-
-
-
-EXTRACPPFLAGS="-D_REENTRANT -D_XOPEN_SOURCE=500"
-EXTRAGCCFLAGS="-ffast-math -fstrict-aliasing"
-if test x${GXX} = xyes; then
- AM_CXXFLAGS="$AM_CXXFLAGS $EXTRAGCCFLAGS"
-fi
-if test x${GCC} = xyes; then
- AM_CFLAGS="$AM_CFLAGS $EXTRAGCCFLAGS"
-fi
-AM_CPPFLAGS="$AM_CPPFLAGS $EXTRACPPFLAGS"
-
-
-
-
-
-
-
-
-eca_platform_python_impl="python"
-
-eca_platform_curses_support="yes"
-
-
-case "$host" in
- *-*-openbsd*)
- AM_CFLAGS="$AM_CFLAGS -pthread"
- AM_CXXFLAGS="$AM_CXXFLAGS -pthread"
- echo "Setting OpenBSD compilation options for POSIX threads"
- ;;
- *-*-freebsd*)
- AM_CFLAGS="$AM_CFLAGS -pthread"
- AM_CPPFLAGS="$AM_CPPFLAGS -D_THREAD_SAFE -D_P1003_1B_VISIBLE"
- AM_CXXFLAGS="$AM_CXXFLAGS -pthread"
- echo "Setting FreeBSD compilation options for POSIX threads"
- ;;
- *-*-solaris*)
- AM_CPPFLAGS="$AM_CPPFLAGS -D_POSIX_PTHREAD_SEMANTICS -DUSE_SOLARIS"
- LIBS="$LIBS -lposix4 -lpthread"
- echo "Setting Solaris compilation options for POSIX threads"
- if test x$CXX = xCC; then
- LIBS="$LIBS -mt"
- AM_CXXFLAGS="$AM_CXXFLAGS -instances=static"
- echo "Sun Workshop C++ compiler detected. Enabling static template instantation."
- fi
- ;;
- *-*-linux-gnu)
- eca_platform_python_impl="c"
- ;;
- alpha*-*-linux-*)
- AM_CFLAGS="$AM_CFLAGS -mieee"
- AM_CXXFLAGS="$AM_CXXFLAGS -mieee"
- echo "Enabling fully IEEE compliant floating-point code generation on Alpha."
- ;;
- *darwin*)
- if test "$GCC" = yes; then
- AM_CPPFLAGS="$AM_CPPFLAGS -D_P1003_1B_VISIBLE"
- fi
- ;;
- *)
- echo "Using generic settings for POSIX thread support."
- ;;
-esac
-
-
-
-ac_ext=c
-ac_cpp='$CPP $CPPFLAGS'
-ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
-ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
-ac_compiler_gnu=$ac_cv_c_compiler_gnu
-
-
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing pthread_create" >&5
-$as_echo_n "checking for library containing pthread_create... " >&6; }
-if test "${ac_cv_search_pthread_create+set}" = set; then :
- $as_echo_n "(cached) " >&6
-else
- ac_func_search_save_LIBS=$LIBS
-cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-/* end confdefs.h. */
-
-/* Override any GCC internal prototype to avoid an error.
- Use char because int might match the return type of a GCC
- builtin and then its argument prototype would still apply. */
-#ifdef __cplusplus
-extern "C"
-#endif
-char pthread_create ();
-int
-main ()
-{
-return pthread_create ();
- ;
- return 0;
-}
-_ACEOF
-for ac_lib in '' pthread c_r; do
- if test -z "$ac_lib"; then
- ac_res="none required"
- else
- ac_res=-l$ac_lib
- LIBS="-l$ac_lib $ac_func_search_save_LIBS"
- fi
- if ac_fn_c_try_link "$LINENO"; then :
- ac_cv_search_pthread_create=$ac_res
-fi
-rm -f core conftest.err conftest.$ac_objext \
- conftest$ac_exeext
- if test "${ac_cv_search_pthread_create+set}" = set; then :
- break
-fi
-done
-if test "${ac_cv_search_pthread_create+set}" = set; then :
-
-else
- ac_cv_search_pthread_create=no
-fi
-rm conftest.$ac_ext
-LIBS=$ac_func_search_save_LIBS
-fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_pthread_create" >&5
-$as_echo "$ac_cv_search_pthread_create" >&6; }
-ac_res=$ac_cv_search_pthread_create
-if test "$ac_res" != no; then :
- test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
-
-else
- as_fn_error "** POSIX.4 threads not installed or broken **" "$LINENO" 5
-fi
-
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing clock_gettime" >&5
-$as_echo_n "checking for library containing clock_gettime... " >&6; }
-if test "${ac_cv_search_clock_gettime+set}" = set; then :
- $as_echo_n "(cached) " >&6
-else
- ac_func_search_save_LIBS=$LIBS
-cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-/* end confdefs.h. */
-
-/* Override any GCC internal prototype to avoid an error.
- Use char because int might match the return type of a GCC
- builtin and then its argument prototype would still apply. */
-#ifdef __cplusplus
-extern "C"
-#endif
-char clock_gettime ();
-int
-main ()
-{
-return clock_gettime ();
- ;
- return 0;
-}
-_ACEOF
-for ac_lib in '' rt; do
- if test -z "$ac_lib"; then
- ac_res="none required"
- else
- ac_res=-l$ac_lib
- LIBS="-l$ac_lib $ac_func_search_save_LIBS"
- fi
- if ac_fn_c_try_link "$LINENO"; then :
- ac_cv_search_clock_gettime=$ac_res
-fi
-rm -f core conftest.err conftest.$ac_objext \
- conftest$ac_exeext
- if test "${ac_cv_search_clock_gettime+set}" = set; then :
- break
-fi
-done
-if test "${ac_cv_search_clock_gettime+set}" = set; then :
-
-else
- ac_cv_search_clock_gettime=no
-fi
-rm conftest.$ac_ext
-LIBS=$ac_func_search_save_LIBS
-fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_clock_gettime" >&5
-$as_echo "$ac_cv_search_clock_gettime" >&6; }
-ac_res=$ac_cv_search_clock_gettime
-if test "$ac_res" != no; then :
- test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
-
-fi
-
-ac_ext=cpp
-ac_cpp='$CXXCPP $CPPFLAGS'
-ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
-ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
-ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
-
-
-echo "------------------------------------------------------------------"
-echo "2. Section: Options for the configure script"
-echo "------------------------------------------------------------------"
-
-
-
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable debugging" >&5
-$as_echo_n "checking whether to enable debugging... " >&6; }
-@%:@ Check whether --enable-debug was given.
-if test "${enable_debug+set}" = set; then :
- enableval=$enable_debug;
- case "$enableval" in
- y | yes)
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-$as_echo "yes" >&6; }
- include_debug=yes
- ;;
-
- n | no)
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
- include_debug=no
- ;;
-
- *)
- as_fn_error "Invalid parameter value for --enable-debug: $enableval" "$LINENO" 5
- ;;
- esac
-
-
-
-fi
-
-
-
-if test x$include_debug = xyes; then
- ECA_AM_DEBUG_MODE_TRUE=
- ECA_AM_DEBUG_MODE_FALSE='#'
-else
- ECA_AM_DEBUG_MODE_TRUE='#'
- ECA_AM_DEBUG_MODE_FALSE=
-fi
-
-if test x$include_debug = xyes; then
- EXTRADEBUGFLAGS="-Wall -O"
-
-$as_echo "@%:@define ECA_DEBUG_MODE 1" >>confdefs.h
-
-else
- EXTRADEBUGFLAGS="-DNDEBUG"
-fi
-AM_CXXFLAGS="$AM_CXXFLAGS $EXTRADEBUGFLAGS"
-AM_CFLAGS="$AM_CFLAGS $EXTRADEBUGFLAGS"
-
-
-@%:@ Check whether --enable-experimental was given.
-if test "${enable_experimental+set}" = set; then :
- enableval=$enable_experimental;
- case "$enableval" in
- y | yes)
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-$as_echo "yes" >&6; }
- experimental=yes
- ;;
-
- n | no)
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
- experimental=no
- ;;
-
- *)
- as_fn_error "Invalid parameter value for --enable-experimental: $enableval" "$LINENO" 5
- ;;
- esac
-
-fi
-
-if test x$experimental = xyes; then
-
-$as_echo "@%:@define ECA_FEELING_EXPERIMENTAL 1" >>confdefs.h
-
-fi
-
-
-if test x$experimental = xyes; then
- ECA_AM_FEELING_EXPERIMENTAL_TRUE=
- ECA_AM_FEELING_EXPERIMENTAL_FALSE='#'
-else
- ECA_AM_FEELING_EXPERIMENTAL_TRUE='#'
- ECA_AM_FEELING_EXPERIMENTAL_FALSE=
-fi
-
-
-
-
-if test "x${prefix}" = "xNONE"; then
- ecaprefix=${ac_default_prefix}
-else
- ecaprefix=${prefix}
-fi
-ECA_S_PREFIX=${ecaprefix}
-
-
-
-cat >>confdefs.h <<_ACEOF
-@%:@define ECA_PREFIX "${ecaprefix}"
-_ACEOF
-
-
-
-
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to check design-by-contract assertions" >&5
-$as_echo_n "checking whether to check design-by-contract assertions... " >&6; }
-enable_dbc_d=yes
-@%:@ Check whether --enable-dbc was given.
-if test "${enable_dbc+set}" = set; then :
- enableval=$enable_dbc;
- case "$enableval" in
- y | yes)
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-$as_echo "yes" >&6; }
- enable_dbc_d=yes
- ;;
-
- n | no)
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
- enable_dbc_d=no
- ;;
-
- *)
- as_fn_error "Invalid parameter value for --enable-dbc: $enableval" "$LINENO" 5
- ;;
- esac
-
-else
-
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-$as_echo "yes" >&6; }
-
-
-fi
-
-if test x$enable_dbc_d = xyes; then
-AM_CXXFLAGS="$AM_CXXFLAGS -DENABLE_DBC"
-AM_CFLAGS="$AM_CFLAGS -DENABLE_DBC"
-fi
-
-
-
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable effects" >&5
-$as_echo_n "checking whether to enable effects... " >&6; }
-@%:@ Check whether --enable-effects was given.
-if test "${enable_effects+set}" = set; then :
- enableval=$enable_effects;
- echo "Enableval: ${enableval}."
- case "$enableval" in
- y | yes)
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-$as_echo "yes" >&6; }
- enable_effects_d=yes
- ;;
-
- n | no)
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
- enable_effects_d=no
- ;;
-
- *)
- as_fn_error "Invalid parameter value for --enable-effects: $enableval" "$LINENO" 5
- ;;
- esac
-
-else
-
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-$as_echo "yes" >&6; }
- enable_effects_d=yes
-
-
-fi
-
-
-
-if test x$enable_effects_d = xno; then
- ECA_AM_DISABLE_EFFECTS_TRUE=
- ECA_AM_DISABLE_EFFECTS_FALSE='#'
-else
- ECA_AM_DISABLE_EFFECTS_TRUE='#'
- ECA_AM_DISABLE_EFFECTS_FALSE=
-fi
-
-if test x$enable_effects_d = xno; then
-
-$as_echo "@%:@define ECA_DISABLE_EFFECTS 1" >>confdefs.h
-
-fi
-
-
-
-
-@%:@ Check whether --with-extra-cppflags was given.
-if test "${with_extra_cppflags+set}" = set; then :
- withval=$with_extra_cppflags;
- ECA_S_EXTRA_CPPFLAGS="${ECA_S_EXTRA_CPPFLAGS} ${withval}"
-
-fi
-
-
-@%:@ Check whether --with-extra-libs was given.
-if test "${with_extra_libs+set}" = set; then :
- withval=$with_extra_libs;
- ECA_S_EXTRA_LIBS="${ECA_S_EXTRA_LIBS} ${withval}"
-
-fi
-
-
-
-
-
- echo "checking for largefile support (>2GB files)..."
-
-
-@%:@ Check whether --with-largefile was given.
-if test "${with_largefile+set}" = set; then :
- withval=$with_largefile;
-fi
-
-
- @%:@ Check whether --enable-largefile was given.
-if test "${enable_largefile+set}" = set; then :
- enableval=$enable_largefile;
-fi
-
-if test "$enable_largefile" != no; then
-
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for special C compiler options needed for large files" >&5
-$as_echo_n "checking for special C compiler options needed for large files... " >&6; }
-if test "${ac_cv_sys_largefile_CC+set}" = set; then :
- $as_echo_n "(cached) " >&6
-else
- ac_cv_sys_largefile_CC=no
- if test "$GCC" != yes; then
- ac_save_CC=$CC
- while :; do
- # IRIX 6.2 and later do not support large files by default,
- # so use the C compiler's -n32 option if that helps.
- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-/* end confdefs.h. */
-@%:@include
- /* Check that off_t can represent 2**63 - 1 correctly.
- We can't simply define LARGE_OFF_T to be 9223372036854775807,
- since some C++ compilers masquerading as C compilers
- incorrectly reject 9223372036854775807. */
-@%:@define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62))
- int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721
- && LARGE_OFF_T % 2147483647 == 1)
- ? 1 : -1];
-int
-main ()
-{
-
- ;
- return 0;
-}
-_ACEOF
- if ac_fn_cxx_try_compile "$LINENO"; then :
- break
-fi
-rm -f core conftest.err conftest.$ac_objext
- CC="$CC -n32"
- if ac_fn_cxx_try_compile "$LINENO"; then :
- ac_cv_sys_largefile_CC=' -n32'; break
-fi
-rm -f core conftest.err conftest.$ac_objext
- break
- done
- CC=$ac_save_CC
- rm -f conftest.$ac_ext
- fi
-fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_largefile_CC" >&5
-$as_echo "$ac_cv_sys_largefile_CC" >&6; }
- if test "$ac_cv_sys_largefile_CC" != no; then
- CC=$CC$ac_cv_sys_largefile_CC
- fi
-
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _FILE_OFFSET_BITS value needed for large files" >&5
-$as_echo_n "checking for _FILE_OFFSET_BITS value needed for large files... " >&6; }
-if test "${ac_cv_sys_file_offset_bits+set}" = set; then :
- $as_echo_n "(cached) " >&6
-else
- while :; do
- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-/* end confdefs.h. */
-@%:@include
- /* Check that off_t can represent 2**63 - 1 correctly.
- We can't simply define LARGE_OFF_T to be 9223372036854775807,
- since some C++ compilers masquerading as C compilers
- incorrectly reject 9223372036854775807. */
-@%:@define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62))
- int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721
- && LARGE_OFF_T % 2147483647 == 1)
- ? 1 : -1];
-int
-main ()
-{
-
- ;
- return 0;
-}
-_ACEOF
-if ac_fn_cxx_try_compile "$LINENO"; then :
- ac_cv_sys_file_offset_bits=no; break
-fi
-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-/* end confdefs.h. */
-@%:@define _FILE_OFFSET_BITS 64
-@%:@include
- /* Check that off_t can represent 2**63 - 1 correctly.
- We can't simply define LARGE_OFF_T to be 9223372036854775807,
- since some C++ compilers masquerading as C compilers
- incorrectly reject 9223372036854775807. */
-@%:@define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62))
- int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721
- && LARGE_OFF_T % 2147483647 == 1)
- ? 1 : -1];
-int
-main ()
-{
-
- ;
- return 0;
-}
-_ACEOF
-if ac_fn_cxx_try_compile "$LINENO"; then :
- ac_cv_sys_file_offset_bits=64; break
-fi
-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
- ac_cv_sys_file_offset_bits=unknown
- break
-done
-fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_file_offset_bits" >&5
-$as_echo "$ac_cv_sys_file_offset_bits" >&6; }
-case $ac_cv_sys_file_offset_bits in #(
- no | unknown) ;;
- *)
-cat >>confdefs.h <<_ACEOF
-@%:@define _FILE_OFFSET_BITS $ac_cv_sys_file_offset_bits
-_ACEOF
-;;
-esac
-rm -rf conftest*
- if test $ac_cv_sys_file_offset_bits = unknown; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _LARGE_FILES value needed for large files" >&5
-$as_echo_n "checking for _LARGE_FILES value needed for large files... " >&6; }
-if test "${ac_cv_sys_large_files+set}" = set; then :
- $as_echo_n "(cached) " >&6
-else
- while :; do
- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-/* end confdefs.h. */
-@%:@include
- /* Check that off_t can represent 2**63 - 1 correctly.
- We can't simply define LARGE_OFF_T to be 9223372036854775807,
- since some C++ compilers masquerading as C compilers
- incorrectly reject 9223372036854775807. */
-@%:@define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62))
- int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721
- && LARGE_OFF_T % 2147483647 == 1)
- ? 1 : -1];
-int
-main ()
-{
-
- ;
- return 0;
-}
-_ACEOF
-if ac_fn_cxx_try_compile "$LINENO"; then :
- ac_cv_sys_large_files=no; break
-fi
-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-/* end confdefs.h. */
-@%:@define _LARGE_FILES 1
-@%:@include
- /* Check that off_t can represent 2**63 - 1 correctly.
- We can't simply define LARGE_OFF_T to be 9223372036854775807,
- since some C++ compilers masquerading as C compilers
- incorrectly reject 9223372036854775807. */
-@%:@define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62))
- int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721
- && LARGE_OFF_T % 2147483647 == 1)
- ? 1 : -1];
-int
-main ()
-{
-
- ;
- return 0;
-}
-_ACEOF
-if ac_fn_cxx_try_compile "$LINENO"; then :
- ac_cv_sys_large_files=1; break
-fi
-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
- ac_cv_sys_large_files=unknown
- break
-done
-fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_large_files" >&5
-$as_echo "$ac_cv_sys_large_files" >&6; }
-case $ac_cv_sys_large_files in #(
- no | unknown) ;;
- *)
-cat >>confdefs.h <<_ACEOF
-@%:@define _LARGE_FILES $ac_cv_sys_large_files
-_ACEOF
-;;
-esac
-rm -rf conftest*
- fi
-fi
-
- if test x$ac_cv_sys_file_offset_bits = x64 ; then
- AM_CXXFLAGS="$AM_CXXFLAGS -D_FILE_OFFSET_BITS=64"
- AM_CFLAGS="$AM_CFLAGS -D_FILE_OFFSET_BITS=64"
-
- enable_largefile=yes
- fi
-
-
-
-
-
-
-
-
-ac_ext=cpp
-ac_cpp='$CXXCPP $CPPFLAGS'
-ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
-ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
-ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C++ preprocessor" >&5
-$as_echo_n "checking how to run the C++ preprocessor... " >&6; }
-if test -z "$CXXCPP"; then
- if test "${ac_cv_prog_CXXCPP+set}" = set; then :
- $as_echo_n "(cached) " >&6
-else
- # Double quotes because CXXCPP needs to be expanded
- for CXXCPP in "$CXX -E" "/lib/cpp"
- do
- ac_preproc_ok=false
-for ac_cxx_preproc_warn_flag in '' yes
-do
- # Use a header file that comes with gcc, so configuring glibc
- # with a fresh cross-compiler works.
- # Prefer to if __STDC__ is defined, since
- # exists even on freestanding compilers.
- # On the NeXT, cc -E runs the code through the compiler's parser,
- # not just through cpp. "Syntax error" is here to catch this case.
- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-/* end confdefs.h. */
-@%:@ifdef __STDC__
-@%:@ include