Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
M
magicseteditor
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
MyCard
magicseteditor
Commits
26563eb7
Commit
26563eb7
authored
Jan 20, 2010
by
coppro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More updates to build system
parent
19094cdf
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
7 additions
and
6 deletions
+7
-6
MakeAM.sh
MakeAM.sh
+2
-1
Makefile.am
Makefile.am
+2
-1
Makefile.in
Makefile.in
+2
-1
configure
configure
+0
-1
configure.ac
configure.ac
+0
-1
src/gui/control/item_list.cpp
src/gui/control/item_list.cpp
+1
-1
No files found.
MakeAM.sh
View file @
26563eb7
...
...
@@ -25,7 +25,7 @@ AM_LDFLAGS = @WX_LIBS@ $(BOOST_LDFLAGS)
gcc -x c - -c -o $@ <<<""
magicseteditor_LDADD = $(BOOST_REGEX_LIB)
magicseteditor_CXXFLAGS =
-fpch-deps
$(AM_CXXFLAGS)
magicseteditor_CXXFLAGS = $(AM_CXXFLAGS)
magicseteditor_SOURCES =
if GLIBCPP_BUILD_PCH
...
...
@@ -34,6 +34,7 @@ clean-local:
rm -f ./src/util/prec.gch
include ./src/util/$(DEPDIR)/prec.Pch
magicseteditor_SOURCES += ./src/util/prec.gch
magicseteditor_CXXFLAGS += -fpch-deps
endif
# The script used to generate is MakeAM.sh'
>
Makefile.am
;
...
...
Makefile.am
View file @
26563eb7
...
...
@@ -24,7 +24,7 @@ AM_LDFLAGS = @WX_LIBS@ $(BOOST_LDFLAGS)
gcc
-x
c -
-c
-o
$@
<<<
""
magicseteditor_LDADD
=
$(BOOST_REGEX_LIB)
magicseteditor_CXXFLAGS
=
-fpch-deps
$(AM_CXXFLAGS)
magicseteditor_CXXFLAGS
=
$(AM_CXXFLAGS)
magicseteditor_SOURCES
=
if
GLIBCPP_BUILD_PCH
...
...
@@ -33,6 +33,7 @@ clean-local:
rm
-f
./src/util/prec.gch
include
./src/util/$(DEPDIR)/prec.Pch
magicseteditor_SOURCES
+=
./src/util/prec.gch
magicseteditor_CXXFLAGS
+=
-fpch-deps
endif
# The script used to generate is MakeAM.sh
...
...
Makefile.in
View file @
26563eb7
...
...
@@ -42,6 +42,7 @@ PRE_UNINSTALL = :
POST_UNINSTALL
=
:
bin_PROGRAMS
=
magicseteditor
$(EXEEXT)
@GLIBCPP_BUILD_PCH_TRUE@
am__append_1
=
./src/util/prec.gch
@GLIBCPP_BUILD_PCH_TRUE@
am__append_2
=
-fpch-deps
subdir
=
.
DIST_COMMON
=
$(am__configure_deps)
$(srcdir)
/Makefile.am
\
$(srcdir)
/Makefile.in
$(top_srcdir)
/configure
\
...
...
@@ -471,7 +472,7 @@ AUTOMAKE_OPTIONS = subdir-objects
AM_CXXFLAGS
=
@WX_CXXFLAGS@
$(BOOST_CXXFLAGS)
-I
.
-Wall
AM_LDFLAGS
=
@WX_LIBS@
$(BOOST_LDFLAGS)
magicseteditor_LDADD
=
$(BOOST_REGEX_LIB)
magicseteditor_CXXFLAGS
=
-fpch-deps
$(AM_CXXFLAGS
)
magicseteditor_CXXFLAGS
=
$(AM_CXXFLAGS)
$(am__append_2
)
# The script used to generate is MakeAM.sh
magicseteditor_SOURCES
=
$(am__append_1)
./src/code_template.cpp
\
...
...
configure
View file @
26563eb7
...
...
@@ -4637,7 +4637,6 @@ fi
LDFLAGS
=
"
$LDFLAGS_SAVED
"
fi
BOOST_REGEX_LIB
=
"-Wl,-Bstatic
$BOOST_REGEX_LIB
-Wl,-Bdynamic"
# Check for wxWidgets
...
...
configure.ac
View file @
26563eb7
...
...
@@ -38,7 +38,6 @@ AC_CHECK_LIB([hunspell],[Hunspell_create])
# Check for Boost
AX_BOOST_BASE([1.37.0])
AX_BOOST_REGEX
BOOST_REGEX_LIB="-Wl,-Bstatic $BOOST_REGEX_LIB -Wl,-Bdynamic"
# Check for wxWidgets
AM_OPTIONS_WXCONFIG
...
...
src/gui/control/item_list.cpp
View file @
26563eb7
...
...
@@ -154,7 +154,7 @@ void ItemList::refreshList(bool refresh_current_only) {
getItems
(
sorted_list
);
// Sort the list
if
(
sort_by_column
>=
0
)
{
sort
(
sorted_list
.
begin
(),
sorted_list
.
end
(),
ItemComparer
(
*
this
));
s
table_s
ort
(
sorted_list
.
begin
(),
sorted_list
.
end
(),
ItemComparer
(
*
this
));
}
// Has the entire list changed?
if
(
refresh_current_only
&&
sorted_list
==
old_sorted_list
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment