/rusxmms/librcc

To get this branch, use:
bzr branch http://suren.me/webbzr/rusxmms/librcc

« back to all changes in this revision

Viewing changes to configure.in

  • Committer: Suren A. Chilingaryan
  • Date: 2005-06-16 23:14:30 UTC
  • Revision ID: Arch-1:ds@dside.dyndns.org--darksoft-2004%librcc--main--0.1--base-0
Initial Import

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(src/librcc.c)
 
3
 
 
4
PACKAGE=librcc
 
5
LIBRCC_VERSION_MAJOR=0
 
6
LIBRCC_VERSION_MINOR=1
 
7
LIBRCC_VERSION_SUBMINOR=0
 
8
LIBRCC_VERSION=$LIBRCC_VERSION_MAJOR.$LIBRCC_VERSION_MINOR.$LIBRCC_VERSION_SUBMINOR
 
9
VERSION=$LIBRCC_VERSION
 
10
LIBRCC_VERSION_INFO=`echo $LIBRCC_VERSION | awk -F. '{ printf "%d:%d:%d", $1+$2, $3, $2 }'`
 
11
 
 
12
AC_SUBST(LIBRCC_VERSION)
 
13
AC_SUBST(LIBRCC_VERSION_MAJOR)
 
14
AC_SUBST(LIBRCC_VERSION_MINOR)
 
15
AC_SUBST(LIBRCC_VERSION_SUBMINOR)
 
16
AC_SUBST(LIBRCC_VERSION_INFO)
 
17
 
 
18
AM_INIT_AUTOMAKE($PACKAGE, $VERSION)
 
19
 
 
20
AC_PROG_CC
 
21
AC_PROG_INSTALL
 
22
AM_PROG_LIBTOOL
 
23
 
 
24
AC_PATH_PROG(RM, rm, /bin/rm)
 
25
AC_PATH_PROG(MV, mv, /bin/mv)
 
26
AC_PATH_PROG(TAR, tar, /bin/tar)
 
27
 
 
28
dnl Checks for programs.
 
29
 
 
30
dnl Checks for libraries.
 
31
 
 
32
dnl Checks for header files.
 
33
 
 
34
dnl Checks for typedefs, structures, and compiler characteristics.
 
35
AC_C_CONST
 
36
 
 
37
dnl Checks for library functions.
 
38
 
 
39
AC_OUTPUT(src/Makefile Makefile librcc.spec)