diff --git a/configure.in b/configure.in index 5b37c5c3..40d10feb 100644 --- a/configure.in +++ b/configure.in @@ -66,9 +66,6 @@ AC_ARG_ENABLE(sqlite3,[ --enable-sqlite3 Enable sqlite3 db backend], *) AC_MSG_ERROR(bad value ${enableval} for --enable-sqlite3);; esac ]) -AC_ARG_ENABLE(nslu2,[ --enable-nslu2 Build for NSLU2/uNSLUng], - CFLAGS="${CFLAGS} -DNSLU2") - AC_ARG_ENABLE(oggvorbis,[ --enable-oggvorbis Enable Ogg/Vorbis support], [ case "${enableval}" in yes) use_oggvorbis=true; diff --git a/src/configfile.c b/src/configfile.c index da91a615..edc3707f 100644 --- a/src/configfile.c +++ b/src/configfile.c @@ -1123,8 +1123,4 @@ void config_emit_flags(WS_CONNINFO *pwsc, void *value, char *arg) { #ifdef MUSEPACK ws_writefd(pwsc,"%s ","--enable-musepack"); #endif - -#ifdef NSLU2 - ws_writefd(pwsc,"%s ","--enable-nslu2"); -#endif }