summaryrefslogtreecommitdiffstats
path: root/util/scan/dvb-s/Amos-4w
blob: 3a80591f2d6e2e4825f8ee2c669f08dfee0a52dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# Amos 6 @ 4W
# freq pol sr fec

S 11419000 H 2604000 AUTO
S 11347000 H 2800000 AUTO
S 11423000 H 2894000 AUTO
S 11338000 H 2960000 AUTO
S 11133000 H 2963000 AUTO
S 11631000 H 3200000 AUTO
S 11132000 V 3254000 AUTO
S 11154000 V 3255000 AUTO
S 11319000 H 3333000 AUTO
S 11426000 H 3333000 AUTO
S 11575000 H 3333000 AUTO
S 11638000 H 3333000 AUTO
S 11323000 H 3350000 AUTO
S 11328000 H 3350000 AUTO
S 11350000 H 3350000 AUTO
S 11359000 H 3350000 AUTO
S 11332000 H 3500000 AUTO
S 11128000 V 3700000 AUTO
S 11343000 H 3700000 AUTO
S 11626000 H 4000000 AUTO
S 11443000 H 4164000 AUTO
S 11644000 V 4340000 AUTO
S 11432000 V 4500000 AUTO
S 10993000 H 4850000 AUTO
S 11191000 H 6111000 AUTO
S 11183000 H 6428000 AUTO
S 10986000 H 6666000 AUTO
S 11144000 H 6666000 AUTO
S 11151000 H 6666000 AUTO
S 11161000 H 6666000 AUTO
S 11172000 H 6666000 AUTO
S 11209000 H 6666000 AUTO
S 11219000 H 6666000 AUTO
S 11413000 H 6666000 AUTO
S 11673000 H 6900000 AUTO
S 11435000 H 7480000 AUTO
S 11546000 H 8050000 AUTO
S 11177000 V 8520000 AUTO
S 11585000 H 8888000 AUTO
S 11235000 H 10000000 AUTO
S 11144000 V 11110000 AUTO
S 11652000 V 11111000 AUTO
S 11560000 H 13400000 AUTO
S 11690000 H 15000000 AUTO
S 11652000 H 16100000 AUTO
S 11303000 H 19540000 AUTO
S 11390000 H 24000000 AUTO
S 10762000 H 26000000 AUTO
S 10720000 V 27500000 AUTO
S 10723000 H 27500000 AUTO
S 10758000 V 27500000 AUTO
S 10803000 V 27500000 AUTO
S 10805000 H 27500000 AUTO
S 10841000 V 27500000 AUTO
S 10842000 H 27500000 AUTO
S 10889000 H 27500000 AUTO
S 10889000 V 27500000 AUTO
S 10924000 H 27500000 AUTO
S 10924000 V 27500000 AUTO
S 10972000 V 27500000 AUTO
S 11008000 V 27500000 AUTO
S 11260000 H 27500000 AUTO
S 11474000 V 27500000 AUTO
S 11510000 V 27500000 AUTO
S 11558000 V 27500000 AUTO
S 11592000 V 27500000 AUTO
S 11677000 V 27500000 AUTO
3388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
#                                               -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.


# $Id$
# $URL$


# LCD4Linux autoconf script
#
# Copyright (C) 1999, 2000, 2001, 2002, 2003 Michael Reinelt <michael@reinelt.co.at>
# Copyright (C) 2004, 2005, 2006, 2007 The LCD4Linux Team <lcd4linux-devel@users.sourceforge.net>
#
# This file is part of LCD4Linux.
#
# LCD4Linux 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, or (at your option)
# any later version.
#
# LCD4Linux 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, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.

AC_PREREQ(2.59)
AC_INIT([LCD4Linux],[0.11.0-SVN],[lcd4linux-users@lists.sourceforge.net])
AC_CONFIG_SRCDIR([lcd4linux.c])
AM_INIT_AUTOMAKE([lcd4linux],0.11.0-SVN)
AM_CONFIG_HEADER(config.h)

# Checks for programs.
AC_PROG_CC
AC_PROG_CPP
AC_PROG_INSTALL
AC_PROG_LN_S
AC_PROG_MAKE_SET

# dmalloc
AM_WITH_DMALLOC

# Checks for libraries.
AC_CHECK_LIB(m, log)

# curses
sinclude(curses.m4)
AC_CHECK_CURSES

# Checks for X11
AC_PATH_X
AC_PATH_XTRA
# double-check for X11
if test "$no_x" != "yes"; then
   AC_CHECK_HEADERS(X11/Xlib.h X11/Xutil.h, [no_x="$no_x"], [no_x="yes"])
   if test "$no_x" = "yes"; then
      AC_MSG_WARN([configure thinks X11 is available while it is *not*])
      AC_MSG_WARN([maybe someone wants to fix autoconf's AC PATH XTRA])
   fi
fi

# check for gd.h
AC_CHECK_HEADERS(gd/gd.h gd.h, [has_gd="true"; break], [has_gd="false"])

# check for sys/io.h (RouterBoard driver)
AC_CHECK_HEADERS(sys/io.h, [has_io_h="true"], [has_io_h="false"])

# check for usb.h
AC_CHECK_HEADERS(usb.h, [has_usb="true"], [has_usb="false"])

# check for luise.h
AC_CHECK_HEADERS(luise.h, [has_luise="true"], [has_luise="false"])

# check for serdisplib
AC_CHECK_HEADERS(serdisplib/serdisp.h, [has_serdisplib="true"], [has_serdisplib="false"])

# check for st2205 libs
AC_CHECK_HEADERS(st2205.h, [has_st2205="true"], [has_st2205="false"])

# check for vncserver libs
AC_CHECK_HEADERS(rfb/rfb.h, [has_vncserverlib="true"], [has_vncserverlib="false"])

# check for LCD-Linux
AC_CHECK_HEADERS(linux/lcd-linux.h linux/hd44780.h, [has_lcd_linux="true"], [has_lcd_linux="false"; break])

# check for ftdi.h (ULA200)
AC_CHECK_HEADERS(ftdi.h, [has_ftdi="true"], [has_ftdi="false"; break])

# check for python
AC_MSG_CHECKING(if python support is wanted)
AC_ARG_WITH(python,
[  --with-python           enable python support [[default=no]]],
[AC_MSG_RESULT($withval)], [AC_MSG_RESULT(no)])

if test "$with_python" = "yes"; then
    sinclude(ax_python_devel.m4)
    AC_PYTHON_DEVEL
fi

# drivers
sinclude(drivers.m4)

# plugins
sinclude(plugins.m4)

# Checks for header files.
AC_HEADER_DIRENT
AC_HEADER_STDC
AC_CHECK_HEADERS([arpa/inet.h fcntl.h netdb.h netinet/in.h stdlib.h string.h sys/ioctl.h sys/socket.h sys/time.h sys/vfs.h syslog.h termios.h unistd.h])
AC_CHECK_HEADERS(asm/io.h)
AC_CHECK_HEADERS(linux/parport.h linux/ppdev.h)

# Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
AC_C_INLINE
AC_TYPE_OFF_T
AC_TYPE_PID_T
AC_TYPE_SIZE_T
AC_TYPE_SSIZE_T
AC_HEADER_TIME
AC_TYPE_UID_T


# Checks for library functions.
AC_FUNC_CLOSEDIR_VOID
AC_FUNC_ERROR_AT_LINE
AC_FUNC_FORK

# uClibc has no getloadavg()
# AC_FUNC_GETLOADAVG sounds promising, but does not really work
#AC_FUNC_GETLOADAVG

AC_PROG_GCC_TRADITIONAL

# removed for uClibc compatibility
#AC_FUNC_MALLOC
#AC_FUNC_REALLOC

AC_FUNC_SELECT_ARGTYPES
AC_TYPE_SIGNAL
AC_FUNC_STAT
AC_FUNC_STRFTIME
AC_FUNC_STRTOD
AC_CHECK_FUNCS([dup2 floor gethostbyname gettimeofday memmove memset pow putenv regcomp select socket sqrt strcasecmp strchr strcspn strdup strerror strncasecmp strndup strpbrk strrchr strstr strtol strtoul uname])

AC_CONFIG_FILES([Makefile])
AC_OUTPUT

AC_MSG_RESULT(
[-----------------------------------------]
[including drivers:]
[  $DRIVERS]
[-----------------------------------------]
[including plugins:]
[  $PLUGINS]
[-----------------------------------------]
)

AC_CONFIG_MACRO_DIR([m4])
LT_INIT