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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
|
/* $Id: acconfig.h,v 1.8 2000/04/18 17:01:13 kahn Exp kahn $ */
/* general */
#define PACKAGE "gnp"
#define VERSION "x.x"
/* for runtime debugging */
#undef APP_DEBUG
/* if no runtime debugging, don't enable g_assert's */
#undef G_DISABLE_ASSERT
/* use gnome */
#undef USE_GNOME
/* use libglade */
#undef USE_LIBGLADE
/* load/unload unchanged docs */
#undef WANT_DOCUNLOAD
/* splash screen */
#undef WANT_SPLASH
/* session saving/restoring */
#undef WANT_SESSION
/* enable clipboard */
#undef USE_CLIPBOARD
/* enable unlimited undo/redo */
#undef USE_UNDOREDO
/* enable search and replace */
#undef USE_SEARCH
/* enable regular expression searches */
#undef USE_REGEX_SEARCH
/* enable opening recent documents */
#undef USE_RECENT
/* enable autosave */
#undef USE_AUTOSAVE
/* enable file backup */
#undef USE_BACKUP
/* enable inserting shell output */
#undef USE_SHELL_INSERT
/* enable toolbars */
#undef USE_TOOLBARS
/* enable doclist */
#undef USE_DOCLIST
/* enable fileinfo */
#undef USE_FILEINFO
/* enable winlist */
#undef USE_WINLIST
/* show random tips */
#undef USE_RANDOMTIPS
/* message box for logging */
#undef WANT_MSGBOX
/* include html tag insertion features */
#undef USE_HTMLTAGS
/* include source code control options */
#undef USE_SOURCE_CTRL
/* use enhanced file selection dialog */
#undef USE_ENHANCED_FSEL
/* for file locking */
#undef USE_FCNTL
#undef USE_FLOCK
/* for project/ide features (experimental) */
#undef WANT_PROJECT
/* use gtk-xmhtml to view html */
#undef USE_GTKXMHTML
/* use gtkhtml to view html */
#undef USE_GTKHTML
/* for gnotepad+ ! */
#define APP_GNP 1
/* i18n stuff */
#undef ENABLE_NLS
#undef HAVE_CATGETS
#undef HAVE_GETTEXT
#undef HAVE_LC_MESSAGES
#undef HAVE_STPCPY
|