This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8"?> | |
| <android.support.v4.widget.DrawerLayout | |
| xmlns:android="http://schemas.android.com/apk/res/android" | |
| android:layout_width="match_parent" | |
| android:layout_height="match_parent" | |
| android:id="@+id/drawer_layout"> | |
| <FrameLayout android:id="@+id/content_frame" | |
| android:layout_width="match_parent" | |
| android:layout_height="match_parent" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| string(REGEX REPLACE "\\.(dll|exe)$" ".pdb" FNAME "${FNAME}") | |
| if(CONFIG STREQUAL Debug OR CONFIG STREQUAL RelWithDebInfo) | |
| file(COPY "${INPUT}/${FNAME}" DESTINATION "${OUTPUT}") | |
| elseif(EXISTS "${OUTPUT}/${FNAME}") | |
| file(REMOVE "${OUTPUT}/${FNAME}") | |
| endif() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| cd "${HOME}" | |
| if [ -z "$VNCDESKTOP" ]; then | |
| echo "yes" > ~/.restart_xbmc | |
| while [ -f ~/.restart_xbmc ]; do | |
| sleep 5 | |
| xbmc | |
| done | |
| fi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| cd "$(dirname "$0")" | |
| source .qstr.bash | |
| echo -ne "Content-Type: video/x-matroska\r\n\r\n" | |
| if [ -f /tmp/tv.pid ]; then | |
| if kill -0 $(cat /tmp/tv.pid) >/dev/null 2>&1; then | |
| exit | |
| fi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* compile with | |
| gcc -ggdb -O0 -lssl -lcrypto -ldl -pthread -o ssltest error_test.cpp | |
| */ | |
| #include <openssl/ssl.h> | |
| #include <dlfcn.h> | |
| #include <pthread.h> | |
| static void *lib = 0; | |
| static int (*initfunc)(int,char**,char**); | |
| static void (*endfunc)(void); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| test |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/dev-qt/qtwidgets/qtwidgets-5.3.1-r2.ebuild b/dev-qt/qtwidgets/qtwidgets-5.3.1-r2.ebuild | |
| index 208edc0..c080ff7 100644 | |
| --- a/dev-qt/qtwidgets/qtwidgets-5.3.1-r2.ebuild | |
| +++ b/dev-qt/qtwidgets/qtwidgets-5.3.1-r2.ebuild | |
| @@ -16,14 +16,14 @@ else | |
| KEYWORDS="~amd64 ~x86" | |
| fi | |
| -IUSE="gles2 +opengl +png" | |
| +IUSE="gles2 +opengl +png xcb" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/dev-qt/qtwidgets/qtwidgets-5.3.1-r2.ebuild b/dev-qt/qtwidgets/qtwidgets-5.3.1-r2.ebuild | |
| index 208edc0..c080ff7 100644 | |
| --- a/dev-qt/qtwidgets/qtwidgets-5.3.1-r2.ebuild | |
| +++ b/dev-qt/qtwidgets/qtwidgets-5.3.1-r2.ebuild | |
| @@ -16,14 +16,14 @@ else | |
| KEYWORDS="~amd64 ~x86" | |
| fi | |
| -IUSE="gles2 +opengl +png" | |
| +IUSE="gles2 +opengl +png xcb" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/configure b/configure | |
| index b4f2247..8b0bb26 100755 | |
| --- a/configure | |
| +++ b/configure | |
| @@ -20732,6 +20732,13 @@ $as_echo "not found" >&6; } | |
| as_fn_error $? "MySQL was not found in any of $mysqldirs; use --with-dlz-mysql=/path" "$LINENO" 5 | |
| fi | |
| +if $use_threads | |
| +then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| interface=br0 | |
| enable-ra | |
| dhcp-range=::1,::ffff,constructor:br0,2h | |
| dhcp-option=option6:dns-server,[fe80::222:4dff:fea5:db05] |