Fix for incorrectly exported include files.
The files FreeList.h, LinkedList.h, ThreadPool.h and TimerThread.h
from the threautil library were being installed in the include
directory of the library, incorrectly exposing internal data structure
of the library.
(cherry picked from commit 0bbe9f62df
)
This commit is contained in:
@@ -255,6 +255,15 @@ Version 1.8.0
|
|||||||
Version 1.6.11
|
Version 1.6.11
|
||||||
*******************************************************************************
|
*******************************************************************************
|
||||||
|
|
||||||
|
2011-02-11 Marcelo Roberto Jimenez <mroberto(at)users.sourceforge.net>
|
||||||
|
|
||||||
|
Fix for incorrectly exported include files.
|
||||||
|
|
||||||
|
The files FreeList.h, LinkedList.h, ThreadPool.h and TimerThread.h
|
||||||
|
from the threautil library were being installed in the include
|
||||||
|
directory of the library, incorrectly exposing internal data structure
|
||||||
|
of the library.
|
||||||
|
|
||||||
2011-01-30 Chandra Penke <chandrapenke(at)mcntech.com>
|
2011-01-30 Chandra Penke <chandrapenke(at)mcntech.com>
|
||||||
|
|
||||||
Fix for compilation warnings of unused variables in upnpdebug.c in
|
Fix for compilation warnings of unused variables in upnpdebug.c in
|
||||||
|
@@ -1,8 +1,7 @@
|
|||||||
# $Id: Makefile.am,v 1.2 2006/02/27 21:38:56 r3mi Exp $
|
|
||||||
#
|
#
|
||||||
# "Makefile.am" for "libupnp/threadutil"
|
# "Makefile.am" for "libupnp/threadutil"
|
||||||
#
|
#
|
||||||
# (C) Copyright 2005 R<EFBFBD>mi Turboult <r3mi@users.sourceforge.net>
|
# (C) Copyright 2005 Remi Turboult <r3mi@users.sourceforge.net>
|
||||||
#
|
#
|
||||||
|
|
||||||
AM_CPPFLAGS = -I$(srcdir)/inc -I$(srcdir)/src/inc
|
AM_CPPFLAGS = -I$(srcdir)/inc -I$(srcdir)/src/inc
|
||||||
@@ -19,12 +18,16 @@ lib_LTLIBRARIES = libthreadutil.la
|
|||||||
libthreadutil_la_LDFLAGS = -version-info $(LT_VERSION_THREADUTIL)
|
libthreadutil_la_LDFLAGS = -version-info $(LT_VERSION_THREADUTIL)
|
||||||
|
|
||||||
libthreadutil_la_SOURCES = \
|
libthreadutil_la_SOURCES = \
|
||||||
src/FreeList.c src/LinkedList.c \
|
inc/FreeList.h \
|
||||||
src/ThreadPool.c src/TimerThread.c
|
src/FreeList.c \
|
||||||
|
inc/LinkedList.h \
|
||||||
|
src/LinkedList.c \
|
||||||
|
inc/ThreadPool.h \
|
||||||
|
src/ThreadPool.c \
|
||||||
|
inc/TimerThread.h \
|
||||||
|
src/TimerThread.c
|
||||||
|
|
||||||
upnpincludedir = $(includedir)/upnp
|
upnpincludedir = $(includedir)/upnp
|
||||||
upnpinclude_HEADERS = \
|
upnpinclude_HEADERS = \
|
||||||
inc/FreeList.h inc/LinkedList.h \
|
|
||||||
inc/ThreadPool.h inc/TimerThread.h \
|
|
||||||
inc/ithread.h
|
inc/ithread.h
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user