~audio-recorder/audio-recorder/trunk

« back to all changes in this revision

Viewing changes to configure.in

  • Committer: Osmo Antero
  • Date: 2011-09-18 09:13:24 UTC
  • Revision ID: osmoma@gmail.com-20110918091324-wosqw4bzzhhyqz6m
VersionĀ 0.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# ================= initialization =================== #
2
 
AC_INIT([Audio Recorder], [0.4], [https://bugs.launchpad.net/audio-recorder/+filebug], [audio-recorder])
 
2
AC_INIT([Audio Recorder], [0.5], [https://bugs.launchpad.net/audio-recorder/+filebug], [audio-recorder])
3
3
 
4
4
AM_INIT_AUTOMAKE
5
5
AC_CONFIG_SRCDIR([src/main.c])
28
28
CFLAGS="$CFLAGS -Wall"
29
29
 
30
30
# ---- lib math (-lm) -----
31
 
LDFLAGS="$LDFLAGS -lm"
 
31
# LDFLAGS="$LDFLAGS -lm"
32
32
 
33
33
# ============== look for dependencies =============== #
34
34
# check for headers needed for standard interfaces
123
123
AC_CHECK_FUNCS([exp pow])
124
124
 
125
125
# *************************
126
 
# Add languages which your application supports here.
 
126
# Add code for supported languages here.
127
127
# *************************
128
 
ALL_LINGUAS="de en_AU en_GB es fi fr hu nb pl pt_BR pt ru uk"
 
128
ALL_LINGUAS="cs de en_AU en_GB es fi fr hr hu it nb pl pt_BR pt ru sk sr tr uk vi"
129
129
 
130
130
GETTEXT_PACKAGE=audio-recorder
131
131
 
132
132
AC_SUBST(GETTEXT_PACKAGE)
133
133
AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE", [Gettext package.])
134
134
 
135
 
AM_GLIB_GNU_GETTEXT
 
135
#AM_GLIB_GNU_GETTEXT
136
136
 
137
137
AC_PROG_INTLTOOL
138
138
 
140
140
AC_PREFIX_DEFAULT(/usr)
141
141
 
142
142
AC_CONFIG_FILES([Makefile
143
 
                 src/Makefile
144
 
                 pixmaps/Makefile
145
 
                 pixmaps/48x48/Makefile
146
 
                 data/Makefile
147
 
                 po/Makefile.in])
 
143
        src/Makefile
 
144
        pixmaps/Makefile
 
145
                icons/Makefile
 
146
                icons/hicolor/Makefile
 
147
                icons/hicolor/16x16/Makefile
 
148
                icons/hicolor/16x16/apps/Makefile
 
149
                icons/hicolor/22x22/Makefile
 
150
                icons/hicolor/22x22/apps/Makefile
 
151
                icons/hicolor/24x24/Makefile
 
152
                icons/hicolor/24x24/apps/Makefile
 
153
                icons/hicolor/32x32/Makefile
 
154
                icons/hicolor/32x32/apps/Makefile
 
155
                icons/hicolor/48x48/Makefile
 
156
                icons/hicolor/48x48/apps/Makefile
 
157
                icons/hicolor/64x64/Makefile
 
158
                icons/hicolor/64x64/apps/Makefile
 
159
                icons/hicolor/256x256/Makefile
 
160
                icons/hicolor/256x256/apps/Makefile
 
161
        data/Makefile
 
162
        po/Makefile.in])
148
163
 
149
164
AC_OUTPUT
150
165