File: acconfig.h

package info (click to toggle)
libglade 0.11-2
  • links: PTS
  • area: main
  • in suites: potato
  • size: 1,748 kB
  • ctags: 660
  • sloc: ansic: 8,107; sh: 7,135; makefile: 420; python: 152; sed: 93
file content (32 lines) | stat: -rw-r--r-- 457 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#ifndef CONFIG_H
#define CONFIG_H

@TOP@
/* The package name */
#undef PACKAGE

/* The package version */
#undef VERSION

/* extra debugging output */
#undef DEBUG

/* If true, include GNOME support */
#undef ENABLE_GNOME

/* for gettext ... */
#undef HAVE_LC_MESSAGES
#undef HAVE_STPCPY
#undef ENABLE_NLS
#undef HAVE_CATGETS
#undef HAVE_GETTEXT

@BOTTOM@

#ifdef DEBUG
#  define debug(stmnt) stmnt
#else
#  define debug(stmnt) /* nothing */
#endif

#endif