mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 01:59:02 +00:00
rename boost libs, add some boost variables for automake, and use them
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9343 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
855a20adb9
commit
7ef4c4070c
@ -1,3 +1,15 @@
|
||||
2004-12-05 Lars Gullik Bjønnes <larsbj@lyx.org>
|
||||
|
||||
* libs/signals/src/.cvsignore: libboostsignals -> libboost_signals
|
||||
* libs/signals/src/Makefile.am: ditto
|
||||
|
||||
* libs/regex/src/.cvsignore: libboostregex -> libboost_regex
|
||||
* libs/regex/src/Makefile.am: ditto
|
||||
|
||||
* libs/filesystem/src/.cvsignore: libboostfilesystem ->
|
||||
libboost_filesystem
|
||||
* libs/filesystem/src/Makefile.am: ditto
|
||||
|
||||
2004-12-04 Lars Gullik Bjonnes <larsbj@gullik.net>
|
||||
|
||||
* boost/config/compiler/gcc.hpp: all to compile with gcc 4.0
|
||||
|
@ -1,6 +1,6 @@
|
||||
Makefile
|
||||
Makefile.in
|
||||
libboostfilesystem.la
|
||||
libboost_filesystem.la
|
||||
*.lo
|
||||
.libs
|
||||
.deps
|
||||
|
@ -1,13 +1,13 @@
|
||||
include $(top_srcdir)/config/common.am
|
||||
|
||||
noinst_LTLIBRARIES = libboostfilesystem.la
|
||||
noinst_LTLIBRARIES = libboost_filesystem.la
|
||||
|
||||
AM_CPPFLAGS = \
|
||||
$(PCH_FLAGS) \
|
||||
-DBOOST_USER_CONFIG="<config.h>" \
|
||||
$(BOOST_INCLUDES)
|
||||
|
||||
libboostfilesystem_la_SOURCES = \
|
||||
libboost_filesystem_la_SOURCES = \
|
||||
convenience.cpp \
|
||||
exception.cpp \
|
||||
Makefile.am \
|
||||
|
@ -1,6 +1,6 @@
|
||||
Makefile
|
||||
Makefile.in
|
||||
libboostregex.la
|
||||
libboost_regex.la
|
||||
*.lo
|
||||
.deps
|
||||
.libs
|
||||
|
@ -1,13 +1,13 @@
|
||||
include $(top_srcdir)/config/common.am
|
||||
|
||||
noinst_LTLIBRARIES = libboostregex.la
|
||||
noinst_LTLIBRARIES = libboost_regex.la
|
||||
|
||||
AM_CPPFLAGS = \
|
||||
$(PCH_FLAGS) \
|
||||
-DBOOST_USER_CONFIG="<config.h>" \
|
||||
$(BOOST_INCLUDES)
|
||||
|
||||
libboostregex_la_SOURCES = \
|
||||
libboost_regex_la_SOURCES = \
|
||||
cpp_regex_traits.cpp \
|
||||
c_regex_traits_common.cpp \
|
||||
c_regex_traits.cpp \
|
||||
|
@ -1,6 +1,6 @@
|
||||
Makefile
|
||||
Makefile.in
|
||||
libboostsignals.la
|
||||
libboost_signals.la
|
||||
*.lo
|
||||
.deps
|
||||
.libs
|
||||
|
@ -1,13 +1,13 @@
|
||||
include $(top_srcdir)/config/common.am
|
||||
|
||||
noinst_LTLIBRARIES = libboostsignals.la
|
||||
noinst_LTLIBRARIES = libboost_signals.la
|
||||
|
||||
AM_CPPFLAGS = \
|
||||
$(PCH_FLAGS) \
|
||||
-DBOOST_USER_CONFIG="<config.h>" \
|
||||
$(BOOST_INCLUDES)
|
||||
|
||||
libboostsignals_la_SOURCES = \
|
||||
libboost_signals_la_SOURCES = \
|
||||
connection.cpp \
|
||||
named_slot_map.cpp \
|
||||
signal_base.cpp \
|
||||
|
@ -1,3 +1,7 @@
|
||||
2004-12-05 Lars Gullik Bjønnes <larsbj@lyx.org>
|
||||
|
||||
* common.am: setup variables for boost
|
||||
|
||||
2004-12-04 Lars Gullik Bjonnes <larsbj@gullik.net>
|
||||
|
||||
* lyxinclude.m4 (lyx_pch_comp): next gcc version is 4.0 not 3.5
|
||||
|
@ -31,6 +31,14 @@ SUFFIXES = .gch
|
||||
|
||||
if USE_INCLUDED_BOOST
|
||||
BOOST_INCLUDES = -I$(top_srcdir)/boost
|
||||
BOOST_FILESYSTEM = $(top_builddir)/boost/libs/filesystem/src/libboost_filesystem.la
|
||||
BOOST_REGEX = $(top_builddir)/boost/libs/regex/src/libboost_regex.la
|
||||
BOOST_SIGNALS = $(top_builddir)/boost/libs/signals/src/libboost_signals.la
|
||||
else
|
||||
BOOST_INCLUDES =
|
||||
BOOST_FILESYSTEM = -lboost_filesystem
|
||||
BOOST_REGEX = -lboost_regex
|
||||
BOOST_SIGNALS = -lboost_signals
|
||||
endif
|
||||
|
||||
LIBS =
|
||||
|
@ -1,3 +1,7 @@
|
||||
2004-12-05 Lars Gullik Bjønnes <larsbj@lyx.org>
|
||||
|
||||
* Makefile.am (BOOST_LIBS): use boost variables
|
||||
|
||||
2004-12-03 José Matos <jamatos@lyx.org>
|
||||
|
||||
* buffer.C: format up to 238.
|
||||
|
@ -20,12 +20,7 @@ LYX_POST_LIBS = frontends/controllers/libcontrollers.la \
|
||||
graphics/libgraphics.la \
|
||||
support/libsupport.la
|
||||
|
||||
if USE_INCLUDED_BOOST
|
||||
BOOST_LIBS = $(top_builddir)/boost/libs/regex/src/libboostregex.la \
|
||||
$(top_builddir)/boost/libs/signals/src/libboostsignals.la
|
||||
else
|
||||
BOOST_LIBS = -lboost_regex -lboost_signals
|
||||
endif
|
||||
BOOST_LIBS = $(BOOST_REGEX) $(BOOST_SIGNALS)
|
||||
|
||||
OTHERLIBS = $(BOOST_LIBS) $(INTLLIBS) $(AIKSAURUS_LIBS) @LIBS@
|
||||
|
||||
|
@ -1,3 +1,7 @@
|
||||
2004-12-05 Lars Gullik Bjønnes <larsbj@lyx.org>
|
||||
|
||||
* Makefile.am (BOOST_LIBS): use boost variables
|
||||
|
||||
2004-11-09 Georg Baum <Georg.Baum@post.rwth-aachen.de>
|
||||
|
||||
* client.C: remove format hack
|
||||
|
@ -8,12 +8,7 @@ bin_PROGRAMS = lyxclient
|
||||
|
||||
AM_CPPFLAGS = $(PCH_FLAGS) -I$(srcdir)/../ $(BOOST_INCLUDES)
|
||||
|
||||
if USE_INCLUDED_BOOST
|
||||
BOOST_LIBS = $(top_builddir)/boost/libs/filesystem/src/libboostfilesystem.la \
|
||||
$(top_builddir)/boost/libs/regex/src/libboostregex.la
|
||||
else
|
||||
BOOST_LIBS = -lboost_regex -lboost_filesystem
|
||||
endif
|
||||
BOOST_LIBS = $(BOOST_REGEX) $(BOOST_FILESYSTEM)
|
||||
|
||||
lyxclient_LDADD = \
|
||||
$(top_builddir)/src/support/libsupport.la \
|
||||
|
@ -1,3 +1,7 @@
|
||||
2004-12-05 Lars Gullik Bjønnes <larsbj@lyx.org>
|
||||
|
||||
* Makefile.am (AM_CPPFLAGS): reformat slightly
|
||||
|
||||
2004-12-03 Lars Gullik Bjonnes <larsbj@gullik.net>
|
||||
|
||||
* Makefile.am, ui/Makefile.am (AM_CPPFLAGS): fix typo
|
||||
|
@ -14,7 +14,8 @@ AM_CPPFLAGS = \
|
||||
-DQT_CLEAN_NAMESPACE \
|
||||
-DQT_GENUINE_STR \
|
||||
$(PCH_FLAGS) \
|
||||
-I$(top_srcdir)/src/ -I$(top_srcdir)/src/frontends/ \
|
||||
-I$(top_srcdir)/src/ \
|
||||
-I$(top_srcdir)/src/frontends/ \
|
||||
-I$(top_srcdir)/images \
|
||||
$(QT_INCLUDES) $(BOOST_INCLUDES) \
|
||||
-I$(top_srcdir)/src/frontends/controllers
|
||||
|
@ -1,3 +1,7 @@
|
||||
2004-12-05 Lars Gullik Bjønnes <larsbj@lyx.org>
|
||||
|
||||
* Makefile.am (tex2lyx_LDADD): use boost variables
|
||||
|
||||
2004-11-27 Georg Baum <Georg.Baum@post.rwth-aachen.de>
|
||||
|
||||
* table.C (handle_colalign): handle comments
|
||||
|
@ -47,8 +47,8 @@ tex2lyx_SOURCES = \
|
||||
text.C
|
||||
|
||||
tex2lyx_LDADD = \
|
||||
../support/libsupport.la \
|
||||
../../boost/libs/regex/src/libboostregex.la -lz
|
||||
$(top_builddir)/src/support/libsupport.la \
|
||||
$(BOOST_REGEX) -lz
|
||||
|
||||
$(BUILT_SOURCES) :
|
||||
@rm -f $@ ; \
|
||||
|
Loading…
Reference in New Issue
Block a user