Gert van den Berg
Gert van den Berg
If it gets changed, I would prefer that the same `-N` prompt parameter which controls prompting for deletes gets used. (Unless it is somehow possible to delete and link at...
It is currently functional
Hi, The Solaris sh man page is here: http://docs.oracle.com/cd/E19963-01/html/821-1461/sh-1.html (There is a POSIX-compliant option in /usr/xpg4/bin, but it is not the default) (/bin is a symlink to /usr/bin on Solaris)...
Just some notes on shells: bash / ksh93 / dash / zsh works for get-version.sh (That is what my Linux PC had installed to test with)
I pasted the preprocessor output here: https://gist.github.com/1604902 Looks like stream.h might be the culprit...
The relevant man page: http://docs.oracle.com/cd/E19683-01/816-0226/6m6nqfv66/index.html
Defining _XPG_4_2 gets rid of the stream.h header (for STREAMS), but it results in some IPv6 related things breaking: ``` $ C_INCLUDE_PATH=/usr/sfw/include/openssl gcc -O -pipe -Wall -D_XPG4_2 -DDMA_VERSION='"v0.7"' -DLIBEXEC_PATH='"/usr/local/lib"' -DCONF_PATH='"/etc/dma"'...
This fixes the queue issue: for file in *.y *.c *.h; do mv "$file" "$file.bak" sed "s/struct queue /struct dma_queue /g" "$file.bak" > "$file" done paths.h is also missing. It...
Not defining _XPG_4_2 and renaming the "queue" type (my script above renames it to dma_queue) gets rid of the conflict and allows the IPv6 stuff.
We have an issue where we have these: ``` NAME READY SECRET AGE certificate.cert-manager.io/app1-auth-cert True app1-auth-tls 7d21h certificate.cert-manager.io/namespace-root-ca-cert True namespace-root-ca-cert 7d21h NAME READY AGE issuer.cert-manager.io/namespace-issuer True 7d21h issuer.cert-manager.io/namespace-root-ca-issuer True 7d21h...