IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 4459


Ignore:
Timestamp:
Jul 5, 2005, 6:06:08 PM (21 years ago)
Author:
jhoblitt
Message:

build system update

Location:
trunk/Nebulous/nebclient
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Nebulous/nebclient/Makefile.am

    r3017 r4459  
    11# Copyright (C) 2005  Joshua Hoblitt
    22#
    3 # $Id: Makefile.am,v 1.5 2005-01-16 10:37:59 jhoblitt Exp $
     3# $Id: Makefile.am,v 1.6 2005-07-06 04:06:08 jhoblitt Exp $
    44
    55SUBDIRS = src
     6
     7EXTRA_DIST = nebulous.wsdl
  • trunk/Nebulous/nebclient/configure.ac

    r4440 r4459  
    11dnl Copyright (C) 2005  Joshua Hoblitt
    22dnl
    3 dnl $Id: configure.ac,v 1.3 2005-06-30 02:35:05 jhoblitt Exp $
     3dnl $Id: configure.ac,v 1.4 2005-07-06 04:06:08 jhoblitt Exp $
    44
    5 dnl Process this file with autoconf to produce a configure script.
     5AC_PREREQ(2.59)
     6
    67AC_INIT([nebulousclient], [0.0.1], [jhoblitt@cpan.org])
    7 AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION)
    8 AC_REVISION([$Revision: 1.3 $])
     8AC_CONFIG_SRCDIR([nebulous.wsdl])
    99
    10 dnl generate config.h
    11 AM_CONFIG_HEADER(config.h)
     10AM_INIT_AUTOMAKE([1.6 foreign dist-bzip2])
     11AM_CONFIG_HEADER([config.h])
     12AM_MAINTAINER_MODE
    1213
    13 dnl Checks for programs.
     14AC_LANG(C)
     15AC_PROG_CC
     16AC_PROG_INSTALL
     17AC_PROG_LIBTOOL
    1418
    15 dnl Checks for libraries.
     19AM_CFLAGS="-Wall -pedantic -std=c99"
     20AC_SUBST([AM_CFLAGS])
    1621
    17 dnl Checks for header files.
    18 AC_HEADER_STDC
    19 AC_CHECK_HEADERS(fcntl.h unistd.h)
    20 
    21 dnl Checks for typedefs, structures, and compiler characteristics.
    22 AC_C_CONST
    23 AC_TYPE_SIZE_T
    24 AC_HEADER_TIME
    25 AC_STRUCT_TM
    26 
    27 dnl Checks for library functions.
    28 AC_PROG_GCC_TRADITIONAL
    29 AC_FUNC_STRFTIME
    30 AC_CHECK_FUNCS(ftime gettimeofday mktime putenv regcomp select socket strerror strstr strtod)
    31 
    32 dnl libtool needs top_buildir set before it's called
    33 for top_builddir in . .. ../.. $ac_auxdir $ac_auxdir/..; do
    34   test -f $top_builddir/configure && break
    35 done
    36 
    37 AC_DISABLE_FAST_INSTALL
    38 AC_PROG_LIBTOOL
    39 AC_SUBST(LIBTOOL_DEPS)
    40 
    41 dnl AC_OUTPUT(Makefile)
    42 AC_OUTPUT(Makefile src/Makefile)
     22AC_CONFIG_FILES([
     23  Makefile
     24  src/Makefile
     25])
     26AC_OUTPUT
Note: See TracChangeset for help on using the changeset viewer.