~ubuntu-branches/ubuntu/quantal/config-manager/quantal

« back to all changes in this revision

Viewing changes to libgetopt/configure.in

  • Committer: Bazaar Package Importer
  • Author(s): Anand Kumria
  • Date: 2004-07-19 22:27:50 UTC
  • mto: (3.1.1 dapper)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20040719222750-sztqdj1aoj2r6frr
Tags: upstream-0.1p83
ImportĀ upstreamĀ versionĀ 0.1p83

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
dnl
2
 
dnl  Configuration input file for GetOpt++
3
 
dnl
4
 
dnl  Robert Collins, rbtcollins@hotmail.com
5
 
dnl
6
 
dnl  $Id: configure.in,v 1.4 2003/03/19 00:14:46 rbcollins Exp $
7
 
dnl
8
 
dnl
9
 
dnl
10
 
AC_INIT(src/GetOption.cc)
11
 
AC_PREREQ(2.52)
12
 
AC_CONFIG_AUX_DIR(cfgaux)
13
 
AM_INIT_AUTOMAKE(GetOpt++, 0.0.2-DEVEL)
14
 
AM_CONFIG_HEADER(include/autoconf.h)
15
 
AC_REVISION($Revision: 1.4 $)dnl
16
 
AC_PREFIX_DEFAULT(/usr/local)
17
 
AM_MAINTAINER_MODE
18
 
 
19
 
dnl Check for GNU cc
20
 
AC_LANG_CPLUSPLUS
21
 
dnl AC_API_WIN32
22
 
AC_PROG_CXX
23
 
AM_PROG_CC_C_O
24
 
AC_CANONICAL_BUILD
25
 
AC_CANONICAL_HOST
26
 
AC_PROG_LIBTOOL
27
 
 
28
 
AC_CHECK_HEADERS( \
29
 
        unistd.h \
30
 
        string   \
31
 
        string.h
32
 
)
33
 
 
34
 
AC_CHECK_HEADER(getopt.h,
35
 
[
36
 
AM_CONDITIONAL(INTERNAL_GETOPT, false)
37
 
],[
38
 
AM_CONDITIONAL(INTERNAL_GETOPT, true)
39
 
])
40
 
 
41
 
 
42
 
AC_C_CONST
43
 
AC_C_BIGENDIAN
44
 
 
45
 
AC_OUTPUT([\
46
 
        Makefile
47
 
])