mirror of
https://github.com/outbackdingo/parodus.git
synced 2026-01-28 02:20:02 +00:00
62 lines
2.0 KiB
Bash
Executable File
62 lines
2.0 KiB
Bash
Executable File
#!/bin/sh
|
|
# Copyright (C) 2013 Advanced Software Production Line, S.L.
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU Lesser General Public License
|
|
# as published by the Free Software Foundation; either version 2.1 of
|
|
# the License, or (at your option) any later version.
|
|
#
|
|
# This program 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 Lesser General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
# License along with this program; if not, write to the Free
|
|
# Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
|
# 02111-1307 USA
|
|
#
|
|
# You may find a copy of the license under this software is released
|
|
# at COPYING file. This is LGPL software: you are wellcome to
|
|
# develop propietary applications using this library withtout any
|
|
# royalty or fee but returning back any change, improvement or
|
|
# addition in the form of source code, project image, documentation
|
|
# patches, etc.
|
|
#
|
|
|
|
PACKAGE="Lib noPoll: a websocket toolkit"
|
|
OS=`uname -s`
|
|
|
|
(automake --version) < /dev/null > /dev/null 2>&1 || {
|
|
echo;
|
|
echo "You must have automake installed to compile $PACKAGE";
|
|
echo;
|
|
exit;
|
|
}
|
|
|
|
(autoconf --version) < /dev/null > /dev/null 2>&1 || {
|
|
echo;
|
|
echo "You must have autoconf installed to compile $PACKAGE";
|
|
echo;
|
|
exit;
|
|
}
|
|
|
|
echo "Generating configuration files for $PACKAGE, please wait...."
|
|
echo;
|
|
|
|
touch NEWS README AUTHORS ChangeLog
|
|
if [ "${OS}" = "Linux" ] ; then
|
|
libtoolize --force;
|
|
elif [ "${OS}" = "Darwin" ] ; then
|
|
glibtoolize --force;
|
|
else
|
|
# by default, try libtoolize even if it is not uname or OS is not recognized.
|
|
libtoolize --force;
|
|
fi
|
|
aclocal $ACLOCAL_FLAGS;
|
|
autoheader --warnings=error
|
|
automake --add-missing -Werror;
|
|
autoconf --force --warnings=error;
|
|
|
|
test -n "$NOCONFIGURE" || ./configure $@ --enable-maintainer-mode
|