Skip to content

Commit e05d483

Browse files
committed
Merge branch 'stable-3.2'
2 parents 363d464 + f91e9d0 commit e05d483

File tree

7 files changed

+15
-8
lines changed

7 files changed

+15
-8
lines changed

lib-src/ChangeLog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2011-09-09 Paolo Bonzini <[email protected]>
2+
3+
* lib-src/socketx.h: Fix previous commit.
4+
15
2011-03-22 Paolo Bonzini <[email protected]>
26

37
* lib-src/socketx.h: Define shutdown arguments for the sake of Windows.

lib-src/socketx.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,14 +135,14 @@ typedef int SOCKET;
135135
#endif
136136
#endif
137137

138+
#endif /* !__MSVCRT__ */
139+
138140
#ifndef SHUT_RDWR
139141
#define SHUT_RD 0
140142
#define SHUT_WR 1
141143
#define SHUT_RDWR 2
142144
#endif
143145

144-
#endif /* !__MSVCRT__ */
145-
146146
#include "getaddrinfo.h"
147147

148148
#endif /* HAVE_SOCKETS */

libgst/Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ libgst_la_LIBADD=$(top_builddir)/lib-src/library.la $(SOCKET_LIBS) \
2727
libgst_la_DEPENDENCIES=$(top_builddir)/lib-src/library.la $(LIBSNPRINTFV)
2828

2929
libgst_la_LDFLAGS = -version-info $(VERSION_INFO) -no-undefined \
30-
-export-symbols-regex "^gst_.*"
30+
-export-symbols-regex "^gst_.*" -bindir $(bindir)
3131

3232
libgst_la_SOURCES = \
3333
gstpub.c files.c gst-parse.c lex.c \

makesetup.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,8 +159,8 @@ cd $DESTDIR/nonexistent
159159
# not distributed
160160
rm -f smalltalk/VFSAddOns.star
161161

162-
# libtool stupidity
163-
ln -sf bin/libgst*.dll .
162+
# no need to manually load dependencies
163+
find . -name "*.la" | xargs sed -i "s/^dependency_libs=.*/dependency_libs=''/"
164164

165165
# --------------------------------------------------------------------------
166166
# Shell functions to build installation sections

packages/glib/Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ALL_LIBS = $(GLIB_LIBS) $(GTHREAD_LIBS)
88
include_HEADERS = gst-gobject.h
99
lib_LTLIBRARIES = libgst-gobject.la
1010
libgst_gobject_la_SOURCES = gst-gobject.c
11-
libgst_gobject_la_LDFLAGS = -version-info 1:0:0 -no-undefined
11+
libgst_gobject_la_LDFLAGS = -version-info 1:0:0 -no-undefined -bindir $(bindir)
1212
libgst_gobject_la_LIBADD = $(ALL_LIBS) ../../libgst/libgst.la
1313

1414
moduleexec_LTLIBRARIES = gst-glib.la

packages/net/ChangeLog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2011-09-09 Paolo Bonzini <[email protected]>
2+
3+
* gnutls-wrapper.c: More Win32 fixes. Reported by Gwenael Casaccio.
4+
15
2011-03-29 Paolo Bonzini <[email protected]>
26

37
* MIME.st: Do not fail on empty fields like "Expires: \r\n".

packages/net/gnutls-wrapper.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -240,8 +240,7 @@ main (int argc, char **argv)
240240
gnutls_deinit (session);
241241

242242
out:
243-
shutdown (fd, SHUT_RDWR); /* no more receptions */
244-
close (fd);
243+
shutdown (fd, SHUT_RDWR); /* shutdown now, close on exit */
245244
gnutls_anon_free_client_credentials (anon_cred);
246245
gnutls_certificate_free_credentials (xcred);
247246
gnutls_global_deinit ();

0 commit comments

Comments
 (0)