Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Synchronet
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Main
Synchronet
Commits
207376af
Commit
207376af
authored
13 years ago
by
deuce
Browse files
Options
Downloads
Patches
Plain Diff
Eliminated spurious "wx-config not found" messages.
parent
f2fb7e02
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/build/wxWidgets.gmake
+4
-4
4 additions, 4 deletions
src/build/wxWidgets.gmake
with
4 additions
and
4 deletions
src/build/wxWidgets.gmake
+
4
−
4
View file @
207376af
ifndef WX_CONFIG
ifeq ($(shell wx-config --cflags > /dev/null 2>&1 && echo YES),YES)
ifeq ($(shell
sh -c '
wx-config --cflags
'
> /dev/null 2>&1 && echo YES),YES)
WX_CONFIG := wx-config
WITH_WX := 1
else
ifeq ($(shell wxgtk2u-2.8-config --cflags > /dev/null 2>&1 && echo YES),YES)
WX_CONFIG := wx
13
-config
ifeq ($(shell
sh -c '
wxgtk2u-2.8-config --cflags
'
> /dev/null 2>&1 && echo YES),YES)
WX_CONFIG := wx
gtk2u-2.8
-config
WITH_WX := 1
endif
endif
endif
ifdef WX_CONFIG
ifeq ($(shell $(WX_CONFIG) --version=2.8 --query-version),2.8)
ifeq ($(shell $(WX_CONFIG) --version=2.8 --query-version
2>&1
),2.8)
WITH_WX := 1
endif
endif
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment