Skip to content

Instantly share code, notes, and snippets.

View raku-cat's full-sized avatar
🦊

Raku raku-cat

🦊
View GitHub Profile
Killed old client process
Internet Systems Consortium DHCP Client 4.3.5
Copyright 2004-2016 Internet Systems Consortium.
All rights reserved.
For info, please visit https://www.isc.org/software/dhcp/
Listening on LPF/eth1/00:30:48:32:d9:9f
Sending on LPF/eth1/00:30:48:32:d9:9f
Sending on Socket/fallback
DHCPRELEASE on eth1 to 192.168.1.50 port 67
Internet Systems Consortium DHCP Client 4.3.5
Copyright 2004-2016 Internet Systems Consortium.
All rights reserved.
For info, please visit https://www.isc.org/software/dhcp/
Listening on LPF/eth1/00:30:48:32:d9:9f
Sending on LPF/eth1/00:30:48:32:d9:9f
Sending on Socket/fallback
DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 8
DHCPREQUEST of 192.168.1.36 on eth1 to 255.255.255.255 port 67
# Maintainer: Raku <raku@raku.party>
# Original compton-git PKGBUILD and aur package maintained by WorMzy Tykashi <wormzy.tykashi@gmail.com>
# Based of compton-blackcapcoder-git PKGBUILD by VerruckteFuchs <derverrucktefuchs@gmail.com>
pkgname=glendale-develop-gl3.2
_gitname=compton
pkgver=0.1_beta2.166.g057a194
pkgrel=1
pkgdesc="Compton fork by DelusionalLogic, renamed to glendale so they can coexist for the time being."
arch=(i686 x86_64)
url="https://github.com/DelusionalLogic/compton"
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
source /etc/network/interfaces.d/*
auto eth1
allow-hotplug eth1
iface eth1 inet dhcp
iface eth1 inet6 dhcp
Building dependency packages/libandroid-support if necessary...
libandroid-support@22 built - skipping (rm /data/data/.built-packages/libandroid-support to force rebuild)
Building dependency packages/ndk-sysroot if necessary...
ndk-sysroot@16-8 built - skipping (rm /data/data/.built-packages/ndk-sysroot to force rebuild)
Building dependency packages/libbthread if necessary...
libbthread@0.2 built - skipping (rm /data/data/.built-packages/libbthread to force rebuild)
Building dependency packages/libicu if necessary...
libicu@61.1 built - skipping (rm /data/data/.built-packages/libicu to force rebuild)
Building dependency packages/ca-certificates if necessary...
ca-certificates@20180307 built - skipping (rm /data/data/.built-packages/ca-certificates to force rebuild)
Building dependency packages/libandroid-support if necessary...
libandroid-support@22 built - skipping (rm /data/data/.built-packages/libandroid-support to force rebuild)
Building dependency packages/ndk-sysroot if necessary...
ndk-sysroot@16-8 built - skipping (rm /data/data/.built-packages/ndk-sysroot to force rebuild)
Building dependency packages/libbthread if necessary...
libbthread@0.2 built - skipping (rm /data/data/.built-packages/libbthread to force rebuild)
Building dependency packages/libicu if necessary...
libicu@61.1 built - skipping (rm /data/data/.built-packages/libicu to force rebuild)
Building dependency packages/ca-certificates if necessary...
ca-certificates@20180307 built - skipping (rm /data/data/.built-packages/ca-certificates to force rebuild)
$ strings /data/data/com.termux/files/usr/lib/libbthread.so
Android
4442984
__cxa_finalize
__cxa_atexit
__pthread_do_cancel
pthread_cancel
pthread_init
pthread_mutex_lock
pthread_mutex_unlock
$ strings /data/data/com.termux/files/usr/include/bthread.h
#include <pthread.h>
# define PTHREAD_CANCEL_ENABLE 0x00000010
# define PTHREAD_CANCEL_DISABLE 0x00000000
# define PTHREAD_CANCEL_ASYNCHRONOUS 0x00000020
# define PTHREAD_CANCEL_DEFERRED 0x00000000
#define PTHREAD_CANCELED ((void *) -1)
int pthread_setcancelstate (int , int *);
int pthread_setcanceltype (int , int *);
void pthread_testcancel (void);
#include <pthread.h>
# define PTHREAD_CANCEL_ENABLE 0x00000010
# define PTHREAD_CANCEL_DISABLE 0x00000000
# define PTHREAD_CANCEL_ASYNCHRONOUS 0x00000020
# define PTHREAD_CANCEL_DEFERRED 0x00000000
#define PTHREAD_CANCELED ((void *) -1)
int pthread_setcancelstate (int , int *);
int pthread_setcanceltype (int , int *);
void pthread_testcancel (void);
int pthread_cancel (pthread_t t);
diff --git a/configure.ac b/configure.ac
index 2d58b398..6dce3ea1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -307,8 +307,6 @@ AC_SEARCH_LIBS([dlopen], [dl], [],
AX_PTHREAD([
AC_DEFINE([HAVE_PTHREAD], [1], [Define if you have POSIX threads libraries and header files.])
- appendCXX "$PTHREAD_CFLAGS"
- appendLib "$PTHREAD_LIBS"