[go: up one dir, main page]

Menu

[3dc168]: / config.h.in  Maximize  Restore  History

Download this file

32 lines (27 with data), 1.0 kB

// 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	"***************"

enum {
    KILL_TIMEOUT = 1,	// Seconds to wait between SIGTERM and SIGKILL
    X_TIMEOUT = 7	// Seconds to wait for X to start
};

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