-
Notifications
You must be signed in to change notification settings - Fork 25
Update gdial-plat-util.c #184
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: develop
Are you sure you want to change the base?
Changes from all commits
fa72660
05aa004
252d5b3
9ba446f
16870c5
581e87e
01f9586
ed02046
6460dda
4408d1f
03e596e
d04556e
e7d9e39
eaed86f
7ce476c
4802e56
6d4b9d5
c269f7e
b87c35b
33225f8
61f79cb
bbc259c
639afb0
6abd04c
ab18d4e
7312111
6575849
b18ebba
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -1,130 +1,118 @@ | ||||||
| #!/bin/bash | ||||||
| set -x | ||||||
| set -e | ||||||
| set -x | ||||||
|
|
||||||
| ############################## | ||||||
| # Paths | ||||||
| GITHUB_WORKSPACE="${PWD}" | ||||||
| INSTALL_PREFIX="$GITHUB_WORKSPACE/install/usr" | ||||||
|
|
||||||
| cd ${GITHUB_WORKSPACE} | ||||||
| mkdir -p "$INSTALL_PREFIX" | ||||||
|
|
||||||
| # # ############################# | ||||||
| #1. Install Dependencies and packages | ||||||
| ############################## | ||||||
| # System dependencies (sudo REQUIRED in GitHub Actions) | ||||||
| sudo apt update | ||||||
| sudo apt install -y \ | ||||||
| ninja-build meson cmake curl libcurl4-openssl-dev \ | ||||||
|
||||||
| libsoup2.4-dev libxml2-dev libglib2.0-dev \ | ||||||
| gobject-introspection libgirepository1.0-dev \ | ||||||
| libgtk-3-dev libcunit1-dev valac pandoc | ||||||
|
||||||
| libgtk-3-dev libcunit1-dev valac pandoc | |
| libgtk-3-dev valac pandoc |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,16 +1,33 @@ | ||
| #!/bin/bash | ||
| set -x | ||
| set -e | ||
| set -x | ||
|
|
||
| ############################## | ||
| # Paths | ||
| GITHUB_WORKSPACE="${PWD}" | ||
| ls -la ${GITHUB_WORKSPACE} | ||
| ############################ | ||
| # Build xdialserver | ||
| echo "buliding xdialserver" | ||
| INSTALL_PREFIX="$GITHUB_WORKSPACE/install/usr" | ||
|
|
||
| cd ${GITHUB_WORKSPACE} | ||
| ############################## | ||
| # Environment | ||
| export CMAKE_PREFIX_PATH="$INSTALL_PREFIX" | ||
| export PKG_CONFIG_PATH="$INSTALL_PREFIX/lib/pkgconfig:$INSTALL_PREFIX/lib/x86_64-linux-gnu/pkgconfig" | ||
| export LD_LIBRARY_PATH="$INSTALL_PREFIX/lib:$INSTALL_PREFIX/lib/x86_64-linux-gnu" | ||
|
|
||
| make | ||
| ############################## | ||
| # Build xdialserver (out-of-source) | ||
| cmake -G Ninja \ | ||
| -S "$GITHUB_WORKSPACE/server" \ | ||
| -B build/xdialserver \ | ||
| -DCMAKE_INSTALL_PREFIX="$INSTALL_PREFIX" \ | ||
| -DCMAKE_MODULE_PATH="$GITHUB_WORKSPACE/install/tools/cmake" \ | ||
|
||
| -DCMAKE_CXX_FLAGS="\ | ||
| -I$INSTALL_PREFIX/include/WPEFramework \ | ||
| -I$INSTALL_PREFIX/include/WPEFramework/core \ | ||
| -I$INSTALL_PREFIX/include/WPEFramework/plugins \ | ||
| -I$INSTALL_PREFIX/include/WPEFramework/interfaces" \ | ||
| -DCMAKE_SHARED_LINKER_FLAGS="-L$INSTALL_PREFIX/lib" \ | ||
| -DCMAKE_EXE_LINKER_FLAGS="-L$INSTALL_PREFIX/lib" \ | ||
| -DCMAKE_BUILD_RPATH="$INSTALL_PREFIX/lib" \ | ||
| -DCMAKE_INSTALL_RPATH="$INSTALL_PREFIX/lib" | ||
|
|
||
| echo "======================================================================================" | ||
| exit 0 | ||
| cmake --build build/xdialserver | ||
| Original file line number | Diff line number | Diff line change | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -14,7 +14,7 @@ | |||||||||||||
| * distributed under the License is distributed on an "AS IS" BASIS, | ||||||||||||||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||||||||||||||
| * See the License for the specific language governing permissions and | ||||||||||||||
| * limitations under the License. | ||||||||||||||
| * limitations un der the License. | ||||||||||||||
|
||||||||||||||
| * limitations un der the License. | |
| * limitations under the License. |
Copilot
AI
Jan 14, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This change introduces a typo in the Apache License 2.0 header. The text "limitations un der" has an incorrect space splitting "under" into two words. The correct text should be "limitations under the License" as it was before this change.
| * limitations un der the License. | |
| * limitations under the License. |
Copilot
AI
Jan 14, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Incorrect spacing in the word 'under'. Should be 'under' not 'un der'.
| * limitations un der the License. | |
| * limitations under the License. |
Uh oh!
There was an error while loading. Please reload this page.