[go: up one dir, main page]

Menu

[ca27df]: / config.h.in  Maximize  Restore  History

Download this file

30 lines (25 with data), 965 Bytes

// This file is part of the loginx project
//
// Copyright (c) 2013 by Mike Sharov <msharov@users.sourceforge.net>
// This file is free software, distributed under the ISC license.
//
// config.h generated by configure
#pragma once

// Define to the one symbol short name of this package.
#define @pkg_uname@_NAME		"@pkg_name@"
// Define to the version of this package.
#define @pkg_uname@_VERSION		@pkg_version@
// Define to the version string of this package.
#define @pkg_uname@_VERSTRING	"@pkg_verstr@"
// Define to the address where bug reports for this package should be sent.
#define @pkg_uname@_BUGREPORT	"@pkg_bugreport@"

// Define to appropirate UI string values
#define USERNAME_PROMPT		"Username:"
#define PASSWORD_PROMPT		"Password:"
#define PASSWORD_MASKSTR	"***************"

// Time in seconds to wait between SIGTERM and SIGKILL
enum { KILL_TIMEOUT = 1 };

// Using GNU-specific glibc features
#ifndef _GNU_SOURCE
    #define _GNU_SOURCE 1
#endif