summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorJosh Coalson <jcoalson@users.sourceforce.net>2004-12-30 01:09:53 +0000
committerJosh Coalson <jcoalson@users.sourceforce.net>2004-12-30 01:09:53 +0000
commit81b3cae6d5e00cef9e7450934ae07b4dc63a8aaf (patch)
treeef1148e332550847cbe200ed49faccc1b1a1f395 /configure.in
parentd56ac5951826231816102a4b95fab9760d046cc8 (diff)
downloadflac-81b3cae6d5e00cef9e7450934ae07b4dc63a8aaf.tar.gz
revamp plugin_common to use utf-8 instead of wchar_t as the internal comment format
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in6
1 files changed, 0 insertions, 6 deletions
diff --git a/configure.in b/configure.in
index 29cad22d..ad35ae80 100644
--- a/configure.in
+++ b/configure.in
@@ -21,9 +21,6 @@
AC_INIT(src/flac/main.c)
AM_INIT_AUTOMAKE(flac, 1.1.1)
-dnl In order to have access to any available wcsdup() and wcscasecmp()
-AC_GNU_SOURCE
-
# Don't automagically regenerate autoconf/automake generated files unless
# explicitly requested. Eases autobuilding -mdz
AM_MAINTAINER_MODE
@@ -43,9 +40,6 @@ dnl check for getopt in standard library
dnl AC_CHECK_FUNCS(getopt_long , , [LIBOBJS="$LIBOBJS getopt.o getopt1.o"] )
AC_CHECK_FUNCS(getopt_long, [], [])
-dnl Check for uncommon wide char functions
-AC_CHECK_FUNCS(wcsdup, wcscasecmp, [], [])
-
AC_CANONICAL_HOST
case "$host_cpu" in
i*86) cpu_ia32=true ; AC_DEFINE(FLAC__CPU_IA32) ;;