diff options
author | C. Davis <cd.rattan@gmail.com> | 2012-07-10 06:16:35 -0700 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2013-04-29 13:05:44 +0200 |
commit | dc0029c9463612d9fce6e19f04cf5d9aeed1b2d6 (patch) | |
tree | a4af2727d419d34e3f0856e6d068080bc4d06222 /source3/utils | |
parent | 6c881e285b4a130bddd15f7d740e4c64a33e0de3 (diff) | |
download | samba-dc0029c9463612d9fce6e19f04cf5d9aeed1b2d6.tar.gz samba-dc0029c9463612d9fce6e19f04cf5d9aeed1b2d6.tar.bz2 samba-dc0029c9463612d9fce6e19f04cf5d9aeed1b2d6.zip |
regedit: First crack at linking to ncurses.
First attempt of editing build scripts to link to ncurses
libraries. It seems to work, though checks may need to be
expanded upon.
Reviewed-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Michael Adam <obnox@samba.org>
Diffstat (limited to 'source3/utils')
-rw-r--r-- | source3/utils/regedit.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/source3/utils/regedit.c b/source3/utils/regedit.c index 9c117e346e..5ae21201fb 100644 --- a/source3/utils/regedit.c +++ b/source3/utils/regedit.c @@ -22,6 +22,8 @@ #include "lib/util/data_blob.h" #include "lib/registry/registry.h" #include "regedit.h" +#include <ncurses.h> +#include <menu.h> int main(int argc, char **argv) { @@ -43,6 +45,9 @@ int main(int argc, char **argv) uint32_t n; WERROR rv; + initscr(); + endwin(); + frame = talloc_stackframe(); setup_logging("regedit", DEBUG_DEFAULT_STDERR); |