Purge MINGW_WINSOCK_LIBS config variable.
authorErik de Castro Lopo <erikd@mega-nerd.com>
Sun, 5 Feb 2012 05:25:22 +0000 (16:25 +1100)
committerErik de Castro Lopo <erikd@mega-nerd.com>
Sun, 5 Feb 2012 05:25:22 +0000 (16:25 +1100)
This was only needed for ntohl() function which has already been removed.

configure.ac
examples/c/decode/file/Makefile.am
examples/c/encode/file/Makefile.am
examples/cpp/decode/file/Makefile.am
examples/cpp/encode/file/Makefile.am
src/flac/Makefile.am
src/libFLAC/Makefile.am
src/metaflac/Makefile.am
src/test_libFLAC++/Makefile.am
src/test_libFLAC/Makefile.am
src/test_seeking/Makefile.am

index 3d875c1..12fb910 100644 (file)
@@ -107,16 +107,12 @@ case "$host" in
        *-*-cygwin|*mingw*)
                # define this variable for enabling strict exports with libtool; for now, it's only supported by Win32
                LT_NO_UNDEFINED="-no-undefined"
-               # -lwsock32 only needed because of ntohl() usage, can get rid of after that's gone:
-               MINGW_WINSOCK_LIBS=-lwsock32
                ;;
        *)
                LT_NO_UNDEFINED=
-               MINGW_WINSOCK_LIBS=
                ;;
 esac
 AC_SUBST(LT_NO_UNDEFINED)
-AC_SUBST(MINGW_WINSOCK_LIBS)
 
 case "$host" in
        *-pc-linux-gnu)
index abde0c7..11a48bf 100644 (file)
@@ -1,16 +1,16 @@
 #  example_c_decode_file - Simple FLAC file decoder using libFLAC
 #  Copyright (C) 2007,2008,2009  Josh Coalson
-# 
+#
 #  This program is free software; you can redistribute it and/or
 #  modify it under the terms of the GNU General Public License
 #  as published by the Free Software Foundation; either version 2
 #  of the License, or (at your option) any later version.
-# 
+#
 #  This program is distributed in the hope that it will be useful,
 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 #  GNU General Public License for more details.
-# 
+#
 #  You should have received a copy of the GNU General Public License
 #  along with this program; if not, write to the Free Software
 #  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
@@ -24,6 +24,6 @@ noinst_PROGRAMS = example_c_decode_file
 example_c_decode_file_LDADD = \
        $(top_builddir)/src/libFLAC/libFLAC.la \
        @OGG_LIBS@ \
-       @MINGW_WINSOCK_LIBS@ \
        -lm
+
 example_c_decode_file_SOURCES = main.c
index 9540d05..5ae7a63 100644 (file)
@@ -1,16 +1,16 @@
 #  example_c_encode_file - Simple FLAC file encoder using libFLAC
 #  Copyright (C) 2007,2008,2009  Josh Coalson
-# 
+#
 #  This program is free software; you can redistribute it and/or
 #  modify it under the terms of the GNU General Public License
 #  as published by the Free Software Foundation; either version 2
 #  of the License, or (at your option) any later version.
-# 
+#
 #  This program is distributed in the hope that it will be useful,
 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 #  GNU General Public License for more details.
-# 
+#
 #  You should have received a copy of the GNU General Public License
 #  along with this program; if not, write to the Free Software
 #  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
@@ -24,6 +24,6 @@ noinst_PROGRAMS = example_c_encode_file
 example_c_encode_file_LDADD = \
        $(top_builddir)/src/libFLAC/libFLAC.la \
        @OGG_LIBS@ \
-       @MINGW_WINSOCK_LIBS@ \
        -lm
+
 example_c_encode_file_SOURCES = main.c
index 441ea92..7b807e6 100644 (file)
@@ -1,16 +1,16 @@
 #  example_cpp_decode_file - Simple FLAC file decoder using libFLAC
 #  Copyright (C) 2007,2008,2009  Josh Coalson
-# 
+#
 #  This program is free software; you can redistribute it and/or
 #  modify it under the terms of the GNU General Public License
 #  as published by the Free Software Foundation; either version 2
 #  of the License, or (at your option) any later version.
-# 
+#
 #  This program is distributed in the hope that it will be useful,
 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 #  GNU General Public License for more details.
-# 
+#
 #  You should have received a copy of the GNU General Public License
 #  along with this program; if not, write to the Free Software
 #  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
@@ -25,6 +25,6 @@ example_cpp_decode_file_LDADD = \
        $(top_builddir)/src/libFLAC++/libFLAC++.la \
        $(top_builddir)/src/libFLAC/libFLAC.la \
        @OGG_LIBS@ \
-       @MINGW_WINSOCK_LIBS@ \
        -lm
+
 example_cpp_decode_file_SOURCES = main.cpp
index ec48ba0..42589f0 100644 (file)
@@ -1,16 +1,16 @@
 #  example_cpp_encode_file - Simple FLAC file encoder using libFLAC
 #  Copyright (C) 2007,2008,2009  Josh Coalson
-# 
+#
 #  This program is free software; you can redistribute it and/or
 #  modify it under the terms of the GNU General Public License
 #  as published by the Free Software Foundation; either version 2
 #  of the License, or (at your option) any later version.
-# 
+#
 #  This program is distributed in the hope that it will be useful,
 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 #  GNU General Public License for more details.
-# 
+#
 #  You should have received a copy of the GNU General Public License
 #  along with this program; if not, write to the Free Software
 #  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
@@ -25,6 +25,6 @@ example_cpp_encode_file_LDADD = \
        $(top_builddir)/src/libFLAC++/libFLAC++.la \
        $(top_builddir)/src/libFLAC/libFLAC.la \
        @OGG_LIBS@ \
-       @MINGW_WINSOCK_LIBS@ \
        -lm
+
 example_cpp_encode_file_SOURCES = main.cpp
index 55aca3a..17cfcce 100644 (file)
@@ -54,5 +54,4 @@ flac_LDADD = \
        $(top_builddir)/src/libFLAC/libFLAC.la \
        @OGG_LIBS@ \
        @LIBICONV@ \
-       @MINGW_WINSOCK_LIBS@ \
        -lm
index 1653381..636d4ab 100644 (file)
@@ -69,7 +69,7 @@ endif
 endif
 endif
 
-libFLAC_la_LIBADD = $(LOCAL_EXTRA_LIBADD) @OGG_LIBS@ @MINGW_WINSOCK_LIBS@
+libFLAC_la_LIBADD = $(LOCAL_EXTRA_LIBADD) @OGG_LIBS@
 
 SUBDIRS = $(ARCH_SUBDIRS) include .
 
index b36675b..76feb38 100644 (file)
@@ -40,7 +40,7 @@ metaflac_SOURCES = \
        options.h \
        usage.h \
        utils.h
-metaflac_LDFLAGS = 
+metaflac_LDFLAGS =
 
 metaflac_LDADD = \
        $(top_builddir)/src/share/grabbag/libgrabbag.la \
@@ -50,5 +50,4 @@ metaflac_LDADD = \
        $(top_builddir)/src/libFLAC/libFLAC.la \
        @OGG_LIBS@ \
        @LIBICONV@ \
-       @MINGW_WINSOCK_LIBS@ \
        -lm
index 27b924a..0713221 100644 (file)
@@ -28,8 +28,8 @@ test_libFLAC___LDADD = \
        $(top_builddir)/src/libFLAC++/libFLAC++.la \
        $(top_builddir)/src/libFLAC/libFLAC.la \
        @OGG_LIBS@ \
-       @MINGW_WINSOCK_LIBS@ \
        -lm
+
 test_libFLAC___SOURCES = \
        decoders.cpp \
        encoders.cpp \
index 8f04b7f..8eb9cfa 100644 (file)
@@ -29,8 +29,8 @@ test_libFLAC_LDADD = \
        $(top_builddir)/src/test_libs_common/libtest_libs_common.la \
        $(top_builddir)/src/libFLAC/libFLAC.la \
        @OGG_LIBS@ \
-       @MINGW_WINSOCK_LIBS@ \
        -lm
+
 test_libFLAC_SOURCES = \
        bitwriter.c \
        decoders.c \
index daea205..8be7579 100644 (file)
@@ -22,13 +22,13 @@ EXTRA_DIST = \
 
 AM_CFLAGS = @OGG_CFLAGS@
 
-INCLUDES = 
+INCLUDES =
 
 noinst_PROGRAMS = test_seeking
 test_seeking_LDADD = \
        $(top_builddir)/src/libFLAC/libFLAC.la \
        @OGG_LIBS@ \
-       @MINGW_WINSOCK_LIBS@ \
        -lm
+
 test_seeking_SOURCES = \
        main.c