File: configure.in

package info (click to toggle)
wmakerconf-data 0.61.1-1
  • links: PTS
  • area: main
  • in suites: potato
  • size: 284 kB
  • ctags: 4
  • sloc: sh: 274; makefile: 133; perl: 46
file content (24 lines) | stat: -rw-r--r-- 719 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Configure template for wmakerconf
# Copyright (C) 1998 Ullrich Hafner <hafner@bigfoot.de>
#
# $Id: configure.in,v 1.13 1999/12/03 15:34:22 hafner Exp $
# $Revision: 1.13 $, $State: Exp $, $Date: 1999/12/03 15:34:22 $
# 
# Process this file with autoconf to produce a configure script.

AC_INIT(WMWmakerconf)
AM_INIT_AUTOMAKE(wmakerconf-data, 0.61.1)

wmakerconfdir=$datadir/wmakerconf

AC_ARG_ENABLE(nls, [  --disable-nls           do not use Native Language Support], USE_NLS=$enableval, USE_NLS=yes)
AC_SUBST(USE_NLS)

AC_PATH_PROG(MSGFMT, msgfmt)
AC_SUBST(MSGFMT)
if test -z "$MSGFMT"; then
	USE_NLS=no
fi

AC_SUBST(wmakerconfdir)
AC_OUTPUT(Makefile po/Makefile, echo "$VERSION" >wmaker-version, VERSION=$VERSION)