GithubHelp home page GithubHelp logo

sidnioulz / sandboxlibxfce4util Goto Github PK

View Code? Open in Web Editor NEW
0.0 3.0 1.0 1.22 MB

A fork of the Xfce Utilities library with utility functions for Firejail profiles

License: Other

Makefile 2.34% Shell 1.30% C 94.82% Perl 1.55%

sandboxlibxfce4util's Introduction

	$Id$


Basic utility library for Xfce4.


Installation:
-------------

	Simply run

		./configure
		make
		make install
	
	For a list of available configure options, see the list as returned
	by

		./configure --help


Notes to cross-compilers:
-------------------------

	The check for "broken putenv" will fail for cross-compiling. Therefore
	you'll need to supply the --with-broken-putenv option to configure
	with a parameter of either yes or no (see the ./configure --help
	output). To determine if your plattform's putenv() is ok or
	broken, you can use the following test program:

  		#include <stdlib.h>
		#include <string.h>
		int main(int argc, char *argv[])
		{
		    char *buffer = (char *)malloc(8);
		    strcpy(buffer, "foo=bar");
		    putenv(buffer);
		    strcpy(buffer, "foo=rab");
		    return(strcmp(getenv("foo"), "bar") == 0 ? 0 : 1);
		}

	Just compile the program and run it. If it returns 0, then your
	plattform's putenv() is ok, and you should add --with-broken-putenv=no
	to ./configure, else you need --with-broken-putenv=yes.

	All glibc based plattforms (nearly all GNU/Linux systems, and GNU/Hurd,
	etc.) and Solaris plattforms are known to have the putenv() problem.

sandboxlibxfce4util's People

Contributors

aalam avatar alexandertoresson avatar alyoshin avatar azol avatar bmeurer avatar crayxt avatar darkcircle avatar eren avatar itsjamil avatar jotarandom avatar karim88 avatar kassemz avatar kelemeng avatar kelnos avatar landryb avatar m8t avatar majklvi avatar maximilian1st avatar nschermer avatar piarres avatar pjotr123 avatar pkon avatar rprieditis avatar sidnioulz avatar smarquespt avatar stavrs avatar stephanarts avatar unho avatar zerng07 avatar zvacet avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.