Changeset 4459
- Timestamp:
- Jul 5, 2005, 6:06:08 PM (21 years ago)
- Location:
- trunk/Nebulous/nebclient
- Files:
-
- 1 added
- 2 edited
-
Makefile.am (modified) (1 diff)
-
autogen.sh (added)
-
configure.ac (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Nebulous/nebclient/Makefile.am
r3017 r4459 1 1 # Copyright (C) 2005 Joshua Hoblitt 2 2 # 3 # $Id: Makefile.am,v 1. 5 2005-01-16 10:37:59jhoblitt Exp $3 # $Id: Makefile.am,v 1.6 2005-07-06 04:06:08 jhoblitt Exp $ 4 4 5 5 SUBDIRS = src 6 7 EXTRA_DIST = nebulous.wsdl -
trunk/Nebulous/nebclient/configure.ac
r4440 r4459 1 1 dnl Copyright (C) 2005 Joshua Hoblitt 2 2 dnl 3 dnl $Id: configure.ac,v 1. 3 2005-06-30 02:35:05jhoblitt Exp $3 dnl $Id: configure.ac,v 1.4 2005-07-06 04:06:08 jhoblitt Exp $ 4 4 5 dnl Process this file with autoconf to produce a configure script. 5 AC_PREREQ(2.59) 6 6 7 AC_INIT([nebulousclient], [0.0.1], [jhoblitt@cpan.org]) 7 AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION) 8 AC_REVISION([$Revision: 1.3 $]) 8 AC_CONFIG_SRCDIR([nebulous.wsdl]) 9 9 10 dnl generate config.h 11 AM_CONFIG_HEADER(config.h) 10 AM_INIT_AUTOMAKE([1.6 foreign dist-bzip2]) 11 AM_CONFIG_HEADER([config.h]) 12 AM_MAINTAINER_MODE 12 13 13 dnl Checks for programs. 14 AC_LANG(C) 15 AC_PROG_CC 16 AC_PROG_INSTALL 17 AC_PROG_LIBTOOL 14 18 15 dnl Checks for libraries. 19 AM_CFLAGS="-Wall -pedantic -std=c99" 20 AC_SUBST([AM_CFLAGS]) 16 21 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) 22 AC_CONFIG_FILES([ 23 Makefile 24 src/Makefile 25 ]) 26 AC_OUTPUT
Note:
See TracChangeset
for help on using the changeset viewer.
