~ubuntu-branches/debian/sid/gworldclock/sid

« back to all changes in this revision

Viewing changes to configure.scan

  • Committer: Bazaar Package Importer
  • Author(s): Drew Parsons
  • Date: 2005-03-28 13:50:18 UTC
  • mfrom: (1.2.1 upstream) (2.1.2 hoary)
  • Revision ID: james.westby@ubuntu.com-20050328135018-jk2szisqaovghn3s
Tags: 1.4.4-1
* New upstream version.
  - modernised design of AddZone dialog. Closes: #193952.
  - removed use of deprecated GTK functions and objects.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
dnl Process this file with autoconf to produce a configure script.
2
 
AC_INIT(dialog.c)
3
 
 
4
 
dnl Checks for programs.
5
 
AC_PROG_AWK
6
 
AC_PROG_CC
7
 
AC_PROG_INSTALL
8
 
AC_PROG_LN_S
9
 
 
10
 
dnl Checks for libraries.
11
 
dnl Replace `main' with a function in -lX11:
12
 
AC_CHECK_LIB(X11, main)
13
 
dnl Replace `main' with a function in -lXext:
14
 
AC_CHECK_LIB(Xext, main)
15
 
dnl Replace `main' with a function in -lXi:
16
 
AC_CHECK_LIB(Xi, main)
17
 
dnl Replace `main' with a function in -ldl:
18
 
AC_CHECK_LIB(dl, main)
19
 
dnl Replace `main' with a function in -lgdk:
20
 
AC_CHECK_LIB(gdk, main)
21
 
dnl Replace `main' with a function in -lglib:
22
 
AC_CHECK_LIB(glib, main)
23
 
dnl Replace `main' with a function in -lgmodule:
24
 
AC_CHECK_LIB(gmodule, main)
25
 
dnl Replace `main' with a function in -lgtk:
26
 
AC_CHECK_LIB(gtk, main)
27
 
dnl Replace `main' with a function in -lm:
28
 
AC_CHECK_LIB(m, main)
29
 
 
30
 
dnl Checks for header files.
31
 
 
32
 
dnl Checks for typedefs, structures, and compiler characteristics.
33
 
 
34
 
dnl Checks for library functions.
35
 
 
36
 
AC_OUTPUT(Makefile)