Search
lxdream.org :: lxdream/configure.in
lxdream 0.9.1
released Jun 29
Download Now
filename configure.in
changeset 471:826c89a6f12c
prev426:8a7a752f1174
next482:42da008cd8bf
author nkeynes
date Wed Oct 31 09:05:13 2007 +0000 (16 years ago)
permissions -rw-r--r--
last change Use the higher of 0x28 and 0x29 for volume until we figure out how it really
works
view annotate diff log raw
     1 dnl Process this file with autoconf to produce a configure script.
     3 AC_INIT(configure.in)
     4 AM_INIT_AUTOMAKE(dream, 0.1)
     5 AM_MAINTAINER_MODE
     6 AM_CONFIG_HEADER(config.h)
     8 AC_ISC_POSIX
     9 AC_PROG_CC
    10 AM_PROG_CC_STDC
    11 AC_HEADER_STDC
    13 PKG_CHECK_MODULES(PACKAGE, 
    14    [ libgnomeui-2.0 dnl
    15      esound dnl
    16      libpng ])
    17 AC_SUBST(PACKAGE_CFLAGS)
    18 AC_SUBST(PACKAGE_LIBS)
    20 AC_CHECK_LIB(z, ucompress)
    21 AC_CHECK_LIB(GL, glXQueryVersion)
    23 GETTEXT_PACKAGE=dream
    24 AC_SUBST(GETTEXT_PACKAGE)
    25 AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE")
    27 dnl Add the languages which your application supports here.
    28 ALL_LINGUAS=""
    29 AM_GLIB_GNU_GETTEXT
    31 AC_OUTPUT([
    32 Makefile
    33 src/Makefile
    34 po/Makefile.in
    35 ])
.