~audio-recorder/audio-recorder/trunk

« back to all changes in this revision

Viewing changes to configure.in

  • Committer: Osmo Antero
  • Date: 2012-09-29 18:12:44 UTC
  • Revision ID: osmoma@gmail.com-20120929181244-gmrxd5xww9pua60a
Support new systems; Ubuntu 12.10, Fedora 18. Improved timer and VAD-modules. Better gst-pipeline.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# ================= initialization =================== #
2
2
AC_INIT([Audio Recorder], [0.9.1], [https://bugs.launchpad.net/audio-recorder/+filebug], [audio-recorder])
3
3
 
 
4
AC_USE_SYSTEM_EXTENSIONS
4
5
AM_INIT_AUTOMAKE
5
6
AC_CONFIG_SRCDIR([src/main.c])
6
7
#AC_CONFIG_HEADER([src/config.h])
128
129
# *************************
129
130
# Add code for supported languages here. See audio-recorder/po/*.po files.
130
131
# *************************
131
 
ALL_LINGUAS="cs de en_AU en_GB es eu fi fr hr hu it nb nl pl pt pt_BR ru sk sr tr uk vi"
 
132
ALL_LINGUAS="cs de en_AU en_GB es eu fi fr hr hu it ms nb nl pl pt_BR pt ru sk sr sv tr uk vi zh_CN"
132
133
 
133
134
GETTEXT_PACKAGE=audio-recorder
134
135
 
140
141
top_builddir=`pwd`
141
142
AC_SUBST(top_builddir)
142
143
 
143
 
#AM_GLIB_GNU_GETTEXT
144
 
#AC_PROG_INTLTOOL
145
 
AM_GNU_GETTEXT
 
144
IT_PROG_INTLTOOL
146
145
 
147
146
# Support for GSetting schemas
148
147
GLIB_GSETTINGS
151
150
AC_PREFIX_DEFAULT(/usr)
152
151
 
153
152
AC_CONFIG_FILES([
154
 
        Makefile
155
 
        src/Makefile
156
 
        pixmaps/Makefile
157
 
                icons/Makefile
158
 
                icons/hicolor/Makefile
159
 
                icons/hicolor/16x16/Makefile
160
 
                icons/hicolor/16x16/apps/Makefile
161
 
                icons/hicolor/22x22/Makefile
162
 
                icons/hicolor/22x22/apps/Makefile
163
 
                icons/hicolor/24x24/Makefile
164
 
                icons/hicolor/24x24/apps/Makefile
165
 
                icons/hicolor/32x32/Makefile
166
 
                icons/hicolor/32x32/apps/Makefile
167
 
                icons/hicolor/48x48/Makefile
168
 
                icons/hicolor/48x48/apps/Makefile
169
 
                icons/hicolor/64x64/Makefile
170
 
                icons/hicolor/64x64/apps/Makefile
171
 
                icons/hicolor/256x256/Makefile
172
 
                icons/hicolor/256x256/apps/Makefile
173
 
        data/Makefile
174
 
        po/Makefile.in
175
 
        po/Makefile])
 
153
    Makefile
 
154
    src/Makefile
 
155
    pixmaps/Makefile
 
156
    icons/Makefile
 
157
    icons/hicolor/Makefile
 
158
    icons/hicolor/16x16/Makefile
 
159
    icons/hicolor/16x16/apps/Makefile
 
160
    icons/hicolor/22x22/Makefile
 
161
    icons/hicolor/22x22/apps/Makefile
 
162
    icons/hicolor/24x24/Makefile
 
163
    icons/hicolor/24x24/apps/Makefile
 
164
    icons/hicolor/32x32/Makefile
 
165
    icons/hicolor/32x32/apps/Makefile
 
166
    icons/hicolor/48x48/Makefile
 
167
    icons/hicolor/48x48/apps/Makefile
 
168
    icons/hicolor/64x64/Makefile
 
169
    icons/hicolor/64x64/apps/Makefile
 
170
    icons/hicolor/256x256/Makefile
 
171
    icons/hicolor/256x256/apps/Makefile
 
172
    data/Makefile
 
173
    po/Makefile.in
 
174
    po/Makefile])
176
175
 
177
176
AC_OUTPUT
178
177