2006-01-12 17:43:21 +00:00
|
|
|
#! /bin/sh
|
|
|
|
|
2006-04-03 19:29:09 +00:00
|
|
|
#
|
|
|
|
# Default settings
|
|
|
|
#
|
|
|
|
SYSTEM=
|
|
|
|
BEOS_NETSERVER=no
|
|
|
|
MATH=no
|
|
|
|
PTHREAD=no
|
|
|
|
OPENSSL=
|
|
|
|
GTK=
|
|
|
|
PREFIX=/usr/local
|
|
|
|
CC="${CC-cc}"
|
|
|
|
CFLAGS="${CFLAGS}"
|
|
|
|
CXX="${CXX-c++}"
|
|
|
|
CXXFLAGS="${CXXFLAGS}"
|
|
|
|
LDFLAGS="${LDFLAGS}"
|
|
|
|
|
|
|
|
|
2006-01-12 18:20:48 +00:00
|
|
|
#
|
|
|
|
# Functions
|
|
|
|
#
|
|
|
|
usage()
|
|
|
|
{
|
|
|
|
cat << EOF
|
|
|
|
|
2006-04-03 19:29:09 +00:00
|
|
|
Options:
|
|
|
|
--disable-openssl Disable OpenSSL, use built-in SHA1 implementation
|
|
|
|
--disable-gtk Don't build the GTK+ GUI
|
|
|
|
--prefix=PATH Installation path
|
2006-01-12 18:20:48 +00:00
|
|
|
|
2006-04-03 19:29:09 +00:00
|
|
|
Some influential environment variables:
|
|
|
|
CC C compiler command
|
|
|
|
CFLAGS C compiler flags
|
|
|
|
CXX C++ compiler command
|
|
|
|
CXXFLAGS C++ compiler flags
|
|
|
|
LDFLAGS linker flags
|
2006-01-12 18:20:48 +00:00
|
|
|
|
|
|
|
EOF
|
|
|
|
}
|
|
|
|
|
2006-04-05 00:41:47 +00:00
|
|
|
cc_test()
|
|
|
|
{
|
|
|
|
cat > testconf.c <<EOF
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
EOF
|
|
|
|
if ! $CC -o testconf testconf.c > /dev/null 2>&1; then
|
|
|
|
rm -f testconf.c testconf
|
|
|
|
echo "Could not find a working compiler"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
rm -f testconf.c testconf
|
|
|
|
}
|
|
|
|
|
2006-01-12 18:20:48 +00:00
|
|
|
openssl_test()
|
|
|
|
{
|
|
|
|
cat > testconf.c << EOF
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <openssl/sha.h>
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
SHA1( 0, 0, 0 );
|
|
|
|
}
|
|
|
|
EOF
|
2006-04-03 19:29:09 +00:00
|
|
|
if $CC $CFLAGS $LDFLAGS -o testconf testconf.c -lcrypto > /dev/null 2>&1
|
2006-01-12 18:20:48 +00:00
|
|
|
then
|
2006-04-03 19:29:09 +00:00
|
|
|
echo "yes"
|
|
|
|
OPENSSL=yes
|
2006-01-12 18:20:48 +00:00
|
|
|
else
|
2006-04-03 19:29:09 +00:00
|
|
|
echo "missing, using built-in SHA1 implementation"
|
|
|
|
OPENSSL=no
|
2006-01-12 18:20:48 +00:00
|
|
|
fi
|
|
|
|
rm -f testconf.c testconf
|
|
|
|
}
|
|
|
|
|
2006-04-03 09:05:47 +00:00
|
|
|
lm_test()
|
|
|
|
{
|
|
|
|
cat > testconf.c << EOF
|
|
|
|
int main()
|
|
|
|
{
|
2006-04-03 19:29:09 +00:00
|
|
|
return cos( 42 );
|
2006-04-03 09:05:47 +00:00
|
|
|
}
|
|
|
|
EOF
|
|
|
|
if ! $CC -o testconf testconf.c > /dev/null 2>&1
|
|
|
|
then
|
|
|
|
if $CC -o testconf testconf.c -lm > /dev/null 2>&1
|
|
|
|
then
|
2006-04-03 19:29:09 +00:00
|
|
|
LDFLAGS="$LDFLAGS -lm"
|
2006-04-03 09:05:47 +00:00
|
|
|
fi
|
|
|
|
fi
|
2006-04-03 09:19:14 +00:00
|
|
|
rm -f testconf.c testconf
|
2006-04-03 09:05:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
lrintf_test()
|
|
|
|
{
|
|
|
|
cat > testconf.c << EOF
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
return ( lrintf( 3.14 ) != 3 );
|
|
|
|
}
|
|
|
|
EOF
|
2006-04-05 10:12:23 +00:00
|
|
|
if ( $CC -o testconf testconf.c $LDFLAGS && ./testconf ) > /dev/null 2>&1
|
2006-04-03 09:05:47 +00:00
|
|
|
then
|
2006-04-03 19:29:09 +00:00
|
|
|
CFLAGS="$CFLAGS -DHAVE_LRINTF"
|
2006-04-03 09:05:47 +00:00
|
|
|
fi
|
2006-04-03 09:19:14 +00:00
|
|
|
rm -f testconf.c testconf
|
2006-04-03 09:05:47 +00:00
|
|
|
}
|
|
|
|
|
2006-02-09 05:55:41 +00:00
|
|
|
gettext_test()
|
|
|
|
{
|
|
|
|
cat > testconf.c <<EOF
|
|
|
|
#include <libintl.h>
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
gettext("");
|
|
|
|
}
|
|
|
|
EOF
|
2006-02-10 20:52:44 +00:00
|
|
|
|
2006-04-03 19:29:09 +00:00
|
|
|
if $CC $CFLAGS_GTK $LDFLAGS_GTK -o testconf testconf.c > /dev/null 2>&1
|
2006-02-09 05:55:41 +00:00
|
|
|
then
|
|
|
|
rm -f testconf.c testconf
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
|
2006-04-03 19:29:09 +00:00
|
|
|
for intl_testdir in $PREFIX/include \
|
2006-02-10 20:52:44 +00:00
|
|
|
/usr/local/include /usr/X11R6/include /usr/pkg/include
|
2006-02-09 05:55:41 +00:00
|
|
|
do
|
2006-04-03 19:29:09 +00:00
|
|
|
if $CC $CFLAGS_GTK -I$intl_testdir $LDFLAGS_GTK -o testconf testconf.c > /dev/null 2>&1
|
2006-02-09 05:55:41 +00:00
|
|
|
then
|
2006-04-03 19:29:09 +00:00
|
|
|
CFLAGS_GTK="CFLAGS_GTK -I$intl_testdir"
|
2006-02-09 05:55:41 +00:00
|
|
|
rm -f testconf.c testconf
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
rm -f testconf.c testconf
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2006-01-12 18:32:29 +00:00
|
|
|
gtk_test()
|
|
|
|
{
|
2006-01-12 18:33:20 +00:00
|
|
|
if pkg-config gtk+-2.0 > /dev/null 2>&1
|
2006-01-12 18:32:29 +00:00
|
|
|
then
|
2006-01-12 18:45:41 +00:00
|
|
|
if expr `pkg-config --modversion gtk+-2.0` '>=' 2.6.0 > /dev/null 2>&1
|
2006-01-12 18:33:20 +00:00
|
|
|
then
|
2006-01-12 18:45:41 +00:00
|
|
|
cat > testconf.c << EOF
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
gtk_main();
|
|
|
|
}
|
|
|
|
EOF
|
|
|
|
if $CC `pkg-config gtk+-2.0 --cflags --libs` -o testconf testconf.c > /dev/null 2>&1
|
|
|
|
then
|
2006-04-03 19:29:09 +00:00
|
|
|
CFLAGS_GTK=`pkg-config gtk+-2.0 --cflags`
|
|
|
|
LDFLAGS_GTK=`pkg-config gtk+-2.0 --libs`
|
2006-02-09 05:55:41 +00:00
|
|
|
if gettext_test
|
|
|
|
then
|
2006-04-03 19:29:09 +00:00
|
|
|
echo "yes"
|
2006-02-09 05:55:41 +00:00
|
|
|
GTK=yes
|
2006-04-03 19:29:09 +00:00
|
|
|
GTKLOCALEDIR="$PREFIX/share/locale"
|
2006-02-09 05:55:41 +00:00
|
|
|
else
|
2006-04-03 19:29:09 +00:00
|
|
|
echo "no (could not find gettext libintl.h)"
|
2006-02-09 05:55:41 +00:00
|
|
|
GTK=no
|
|
|
|
fi
|
2006-01-12 18:45:41 +00:00
|
|
|
else
|
2006-04-03 19:29:09 +00:00
|
|
|
echo "no"
|
2006-01-12 18:45:41 +00:00
|
|
|
GTK=no
|
|
|
|
fi
|
|
|
|
rm -f testconf.c testconf
|
2006-01-12 18:33:20 +00:00
|
|
|
else
|
2006-04-03 19:29:09 +00:00
|
|
|
echo "no (2.6.0 or later is required)"
|
2006-01-12 18:33:20 +00:00
|
|
|
GTK=no
|
|
|
|
fi
|
2006-01-12 18:32:29 +00:00
|
|
|
else
|
2006-04-03 19:29:09 +00:00
|
|
|
echo "no"
|
2006-01-12 18:32:29 +00:00
|
|
|
GTK=no
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2006-01-12 18:20:48 +00:00
|
|
|
#
|
|
|
|
# Parse options
|
|
|
|
#
|
|
|
|
while [ $# -ne 0 ]; do
|
|
|
|
param=`expr "opt$1" : 'opt[^=]*=\(.*\)'`
|
|
|
|
|
|
|
|
case "x$1" in
|
|
|
|
x--disable-openssl)
|
2006-04-03 19:29:09 +00:00
|
|
|
OPENSSL=no
|
2006-02-10 20:52:44 +00:00
|
|
|
;;
|
2006-01-12 18:32:29 +00:00
|
|
|
x--disable-gtk)
|
2006-04-03 19:29:09 +00:00
|
|
|
GTK=no
|
2006-02-04 18:03:05 +00:00
|
|
|
;;
|
2006-01-12 18:20:48 +00:00
|
|
|
x--help)
|
|
|
|
usage
|
|
|
|
exit 0
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
shift
|
|
|
|
done
|
2006-01-12 17:43:21 +00:00
|
|
|
|
2006-01-12 18:20:48 +00:00
|
|
|
#
|
2006-01-12 17:43:21 +00:00
|
|
|
# System-specific flags
|
2006-01-12 18:20:48 +00:00
|
|
|
#
|
2006-01-12 17:43:21 +00:00
|
|
|
SYSTEM=`uname -s`
|
|
|
|
case $SYSTEM in
|
|
|
|
BeOS)
|
|
|
|
RELEASE=`uname -r`
|
|
|
|
case $RELEASE in
|
2006-01-12 19:00:04 +00:00
|
|
|
6.0*|5.0.4) # Zeta or R5 / BONE beta 7
|
2006-01-12 17:43:21 +00:00
|
|
|
;;
|
2006-04-03 19:29:09 +00:00
|
|
|
5.0*) # R5 / net_server
|
|
|
|
BEOS_NETSERVER=yes
|
2006-01-12 17:43:21 +00:00
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "Unsupported BeOS version"
|
2006-01-12 18:52:15 +00:00
|
|
|
exit 1
|
|
|
|
;;
|
2006-01-12 17:43:21 +00:00
|
|
|
esac
|
|
|
|
;;
|
|
|
|
|
|
|
|
Darwin)
|
2006-04-03 19:29:09 +00:00
|
|
|
# Make sure the Universal SDK is installed
|
|
|
|
if [ ! -d /Developer/SDKs/MacOSX10.4u.sdk ]; then
|
|
|
|
cat << EOF
|
|
|
|
You need to install the Universal SDK in order to build Transmission:
|
|
|
|
Get your Xcode CD or package
|
|
|
|
Restart the install
|
|
|
|
When it gets to "Installation Type", select "Customize"
|
|
|
|
Select "Mac OS X 10.4 (Universal) SDL" under "Cross Development"
|
|
|
|
Finish the install.
|
|
|
|
EOF
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
PTHREAD=yes
|
2006-02-09 05:55:41 +00:00
|
|
|
;;
|
|
|
|
|
2006-04-03 19:29:09 +00:00
|
|
|
FreeBSD|NetBSD|OpenBSD|Linux)
|
|
|
|
PTHREAD=yes
|
2006-01-12 17:43:21 +00:00
|
|
|
;;
|
|
|
|
|
|
|
|
*)
|
|
|
|
echo "Unsupported operating system"
|
|
|
|
exit 1 ;;
|
|
|
|
esac
|
|
|
|
echo "System: $SYSTEM"
|
|
|
|
|
2006-04-05 00:41:47 +00:00
|
|
|
#
|
|
|
|
# First things first, check to see if there's a compiler installed
|
|
|
|
#
|
|
|
|
cc_test
|
|
|
|
|
2006-01-12 18:20:48 +00:00
|
|
|
#
|
|
|
|
# OpenSSL settings
|
|
|
|
#
|
2006-04-03 19:29:09 +00:00
|
|
|
echo -n "OpenSSL: "
|
|
|
|
if [ "$OPENSSL" = no ]; then
|
|
|
|
echo "disabled, using built-in SHA1 implementation"
|
2006-01-12 18:20:48 +00:00
|
|
|
else
|
2006-04-03 19:29:09 +00:00
|
|
|
openssl_test
|
|
|
|
fi
|
2006-01-12 17:43:21 +00:00
|
|
|
|
2006-01-12 18:32:29 +00:00
|
|
|
#
|
2006-04-03 19:29:09 +00:00
|
|
|
# GTK+ settings
|
2006-01-12 18:32:29 +00:00
|
|
|
#
|
2006-04-03 19:29:09 +00:00
|
|
|
echo -n "GTK+: "
|
|
|
|
if [ "$GTK" = no ]; then
|
|
|
|
echo "disabled"
|
2006-01-12 18:32:29 +00:00
|
|
|
else
|
2006-04-03 19:29:09 +00:00
|
|
|
gtk_test
|
|
|
|
fi
|
|
|
|
if [ "$GTK" = yes ]; then
|
|
|
|
rm -f gtk/defines.h
|
|
|
|
cat > gtk/defines.h << EOF
|
|
|
|
#ifndef TG_DEFINES_H
|
|
|
|
#define TG_DEFINES_H
|
|
|
|
#define LOCALEDIR "$GTKLOCALEDIR"
|
|
|
|
#endif
|
|
|
|
EOF
|
2006-01-12 18:32:29 +00:00
|
|
|
fi
|
|
|
|
|
2006-04-03 09:05:47 +00:00
|
|
|
#
|
|
|
|
# Math functions
|
|
|
|
#
|
|
|
|
lm_test
|
|
|
|
lrintf_test
|
|
|
|
|
2006-01-12 18:20:48 +00:00
|
|
|
#
|
2006-04-03 19:29:09 +00:00
|
|
|
# Generate Makefile.config
|
2006-01-12 18:20:48 +00:00
|
|
|
#
|
2006-04-03 19:29:09 +00:00
|
|
|
rm -f Makefile.config
|
|
|
|
cat > Makefile.config << EOF
|
2006-04-05 09:58:35 +00:00
|
|
|
CONFIGURE_RUN = yes
|
2006-04-03 19:29:09 +00:00
|
|
|
SYSTEM = $SYSTEM
|
|
|
|
BEOS_NETSERVER = $BEOS_NETSERVER
|
|
|
|
PTHREAD = $PTHREAD
|
|
|
|
OPENSSL = $OPENSSL
|
|
|
|
GTK = $GTK
|
|
|
|
CC = $CC
|
|
|
|
CFLAGS = $CFLAGS
|
|
|
|
CXX = $CXX
|
|
|
|
CXXFLAGS = $CXXFLAGS
|
|
|
|
LDFLAGS = $LDFLAGS
|
|
|
|
CFLAGS_GTK = $CFLAGS_GTK
|
|
|
|
LDFLAGS_GTK = $LDFLAGS_GTK
|
2006-01-12 17:43:21 +00:00
|
|
|
EOF
|
2006-02-04 18:03:05 +00:00
|
|
|
|
2006-01-12 17:43:21 +00:00
|
|
|
echo
|
2006-04-04 10:53:33 +00:00
|
|
|
echo "Now use GNU make to build Transmission."
|
|
|
|
echo "It may be called 'make' or 'gmake' depending on your system."
|