Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Alchemy Viewer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Silent mode is enabled
All outbound communications are blocked.
Learn more
.
Show more breadcrumbs
Alchemy Viewer
Alchemy Viewer
Commits
53bfc13a
Commit
53bfc13a
authored
14 years ago
by
Tofu Linden
Browse files
Options
Downloads
Plain Diff
merge STORM-282
parents
f7be3518
c438e8a1
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
doc/contributions.txt
+2
-0
2 additions, 0 deletions
doc/contributions.txt
indra/cmake/PulseAudio.cmake
+19
-19
19 additions, 19 deletions
indra/cmake/PulseAudio.cmake
indra/media_plugins/webkit/CMakeLists.txt
+2
-3
2 additions, 3 deletions
indra/media_plugins/webkit/CMakeLists.txt
with
23 additions
and
22 deletions
doc/contributions.txt
+
2
−
0
View file @
53bfc13a
...
...
@@ -557,6 +557,8 @@ Robin Cornelius
SNOW-514
SNOW-520
SNOW-585
SNOW-599
SNOW-747
VWR-2488
VWR-9557
VWR-11128
...
...
This diff is collapsed.
Click to expand it.
indra/cmake/PulseAudio.cmake
+
19
−
19
View file @
53bfc13a
# -*- cmake -*-
include
(
Prebuilt
)
if
(
STANDALONE
)
include
(
FindPkgConfig
)
set
(
PULSEAUDIO ON CACHE BOOL
"Build with PulseAudio support, if available."
)
pkg_check_modules
(
PULSEAUDIO REQUIRED libpulse-mainloop-glib
)
if
(
PULSEAUDIO
)
if
(
STANDALONE
)
include
(
FindPkgConfig
)
pkg_check_modules
(
PULSEAUDIO libpulse
)
elseif
(
LINUX
)
use_prebuilt_binary
(
pulseaudio
)
set
(
PULSEAUDIO_FOUND ON FORCE BOOL
)
set
(
PULSEAUDIO_INCLUDE_DIRS
${
LIBS_PREBUILT_DIR
}
/include
elseif
(
LINUX
)
use_prebuilt_binary
(
pulseaudio
)
set
(
PULSEAUDIO_FOUND ON FORCE BOOL
)
set
(
PULSEAUDIO_INCLUDE_DIRS
${
LIBS_PREBUILT_DIR
}
/include
)
# We don't need to explicitly link against pulseaudio itself, because
# the viewer probes for the system's copy at runtime.
set
(
PULSEAUDIO_LIBRARIES
# none needed!
)
# We don't need to explicitly link against pulseaudio itself, because
# the viewer probes for the system's copy at runtime.
set
(
PULSEAUDIO_LIBRARIES
# none needed!
)
endif
(
STANDALONE
)
endif
(
STANDALONE
)
endif
(
PULSEAUDIO
)
if
(
PULSEAUDIO_FOUND
)
set
(
PULSEAUDIO ON CACHE BOOL
"Build with PulseAudio support, if available."
)
endif
(
PULSEAUDIO_FOUND
)
if
(
PULSEAUDIO
)
add_definitions
(
-DLL_PULSEAUDIO_ENABLED=1
)
endif
(
PULSEAUDIO
)
endif
(
PULSEAUDIO
_FOUND
)
This diff is collapsed.
Click to expand it.
indra/media_plugins/webkit/CMakeLists.txt
+
2
−
3
View file @
53bfc13a
...
...
@@ -53,6 +53,8 @@ set(media_plugin_webkit_LINK_LIBRARIES
if
(
LINUX
)
if
(
PULSEAUDIO_FOUND
)
list
(
APPEND media_plugin_webkit_SOURCE_FILES linux_volume_catcher.cpp
)
else
(
PULSEAUDIO_FOUND
)
list
(
APPEND media_plugin_webkit_SOURCE_FILES dummy_volume_catcher.cpp
)
endif
(
PULSEAUDIO_FOUND
)
list
(
APPEND media_plugin_webkit_LINK_LIBRARIES
${
UI_LIBRARIES
}
# for glib/GTK
...
...
@@ -67,9 +69,6 @@ elseif (DARWIN)
)
elseif
(
WINDOWS
)
list
(
APPEND media_plugin_webkit_SOURCE_FILES windows_volume_catcher.cpp
)
else
(
LINUX
)
# All other platforms use the dummy volume catcher for now.
list
(
APPEND media_plugin_webkit_SOURCE_FILES dummy_volume_catcher.cpp
)
endif
(
LINUX
)
set_source_files_properties
(
${
media_plugin_webkit_HEADER_FILES
}
...
...
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