Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
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
videolan
vlc-2-2
Commits
e47fb7cd
Commit
e47fb7cd
authored
Nov 26, 2011
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
contrib: detect XCode > 3
We need -arch to specify which arch to be built, else we have no idea
parent
5f8906ff
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
3 deletions
+11
-3
contrib/src/bghudappkit/rules.mak
contrib/src/bghudappkit/rules.mak
+1
-1
contrib/src/growl/rules.mak
contrib/src/growl/rules.mak
+1
-1
contrib/src/main.mak
contrib/src/main.mak
+8
-0
contrib/src/sparkle/rules.mak
contrib/src/sparkle/rules.mak
+1
-1
No files found.
contrib/src/bghudappkit/rules.mak
View file @
e47fb7cd
...
...
@@ -20,7 +20,7 @@ bghudappkit: bghudappkit-git.tar.xz .sum-bghudappkit
$(MOVE)
.bghudappkit
:
bghudappkit
cd
$<
&&
xcodebuild
-sdk
macosx
$(OSX_VERSION
)
cd
$<
&&
xcodebuild
$(XCODE_FLAGS
)
install_name_tool
-change
@loader_path/../../../../../../../BGHUDAppKit.framework/Versions/A/BGHUDAppKit
\
@loader_path/../../../../Versions/A/BGHUDAppKit
\
$<
/build/Release/BGHUDAppKit.framework/Resources/BGHUDAppKitPlugin.ibplugin/Contents/MacOS/BGHUDAppKitPlugin
...
...
contrib/src/growl/rules.mak
View file @
e47fb7cd
...
...
@@ -23,6 +23,6 @@ growl: growl-$(GROWL_VERSION).tar.bz2 .sum-growl
touch
$@
.growl
:
growl
cd
$<
&&
xcodebuild
-target
Growl.framework
-configuration
Release
cd
$<
&&
xcodebuild
$(XCODE_FLAGS)
-target
Growl.framework
-configuration
Release
cd
$<
&&
cp
-R
-L
build/Release/Growl.framework
"
$(PREFIX)
"
touch
$@
contrib/src/main.mak
View file @
e47fb7cd
...
...
@@ -108,6 +108,14 @@ else
EXTRA_CFLAGS
+=
-m32
EXTRA_LDFLAGS
+=
-m32
endif
XCODE_FLAGS
=
-sdk
macosx
$(OSX_VERSION)
ifeq
($(xcodebuild -version 2>/dev/null | tee /dev/null|head -1|cut -d\ -f2|cut -d. -f1), 3)
# XCode 3 doesn't support -arch
else
XCODE_FLAGS
+=
-arch
$(ARCH)
endif
endif
...
...
contrib/src/sparkle/rules.mak
View file @
e47fb7cd
...
...
@@ -21,6 +21,6 @@ sparkle: sparkle-$(SPARKLE_VERSION).zip .sum-sparkle
touch
$@
.sparkle
:
sparkle
cd
$<
/Extras/Source
\
Code
&&
$(MAKE)
&&
xcodebuild
cd
$<
/Extras/Source
\
Code
&&
$(MAKE)
&&
xcodebuild
$(XCODE_FLAGS)
cd
$<
&&
cp
-R
-L
Extras/Source
\
Code/build/release/Sparkle.framework
"
$(PREFIX)
"
touch
$@
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