Sponsored Content
Full Discussion: ncurses/Darwin
Top Forums Programming ncurses/Darwin Post 11144 by parmenides on Thursday 29th of November 2001 03:07:09 PM
Old 11-29-2001
ncurses/Darwin

I am using Darwin on Mac OS X.I.I (new to both Unix and C++).

I downloaded the ncurses library from http://prdownloads.sourceforge.net/g...urses-5.2.tgz,
but I don't know what to do with it now. Stuffit has expanded the archive, but I still have the original .tgz as well (if that's necessary). Can anyone tell me what I'm supposed to do next? Thanks.

P.
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

ADSL with Darwin 1.41

Hey everyone, just to let you all know "I'm an uber n00b" I'm connected to Telstra Bigpond's (Australian ISP) ADSL network, now I;m running Darwin 1.41 on an Apple Macintosh PPC computer. I don't know how to set up ADSL on this system, can someone please guide me. (3 Replies)
Discussion started by: Syphor
3 Replies

2. UNIX for Dummies Questions & Answers

Darwin x86

so, what's everyone's opinion on Darwin (x86 rendition)? is it worth installing at the moment? pros? cons? comments? (5 Replies)
Discussion started by: Karma
5 Replies

3. OS X (Apple)

GNU-Darwin

Did anyone here about GNU-Darwin? http://gnu-darwin.org/ Read Bout it! And Darwin can be found here: http://www.opendarwin.org Tell me what U think (4 Replies)
Discussion started by: RedVenim
4 Replies

4. BSD

How is Darwin as a base For a Server

Does anyone have any Benchmarks for OS X Server in DB Serving. in comparison to Linux How bout Darwin? And How bout Darwin as a Base for a Server? How bout Ease of Environment Crossplatforms and Various Implementations? And Finally how bout Develoment? (1 Reply)
Discussion started by: RedVenim
1 Replies

5. Shell Programming and Scripting

Problem with Darwin typeset -i

From the bash manpage: typeset ] What I'm trying to do is add two values in hexadecimal and have the resulting number display in hexadecimal. What I get is the result displayed in decimal. For instance: a=0x10 b=0x30 ((c=a+b)) echo $c ...displays 64. The arithmatic is correct, but the... (2 Replies)
Discussion started by: Loriel
2 Replies

6. BSD

Darwin via PearPC

How can I send Ctrl+Alt+Del for Darwin running in PearPC for Linux? (1 Reply)
Discussion started by: eugrus
1 Replies

7. Linux

Darwin x86 kernel only

Is there a link somewhere someone knows about? KW (1 Reply)
Discussion started by: kwa71
1 Replies

8. OS X (Apple)

Darwin 10.4 - Gnome

Hello, I was curious about how one would go about installing gnome on darwin. As far as I know it must be harder than FreeBSD because there doesn't seem to be any ports for it. Would you have to first set up a build environment (GCC etc...) and then compile it from scratch? or is there an... (3 Replies)
Discussion started by: kpedersen
3 Replies

9. UNIX for Dummies Questions & Answers

sed -i on Darwin

This is the first time I've come across this issue sed -i 's/"//g' iscrmireturns sed: 1: "iscrmi": command i expects \ followed by textApparently the -i option is non-standard FreeBSD extensions - does that mean it's not available on Darwin? Strange (1 Reply)
Discussion started by: platz
1 Replies

10. OS X (Apple)

Darwin ports

Hi there. I have an MacBookPro and I want to install Darwin ports. I downloaded & installed MacPorts-1.7.0.pkg and now I don't know what to do. I tried: # port -d selfupdate .... error 1 Command output: checking build system type... i686-apple-darwin9.7.0 checking host system type...... (7 Replies)
Discussion started by: hirohitosan
7 Replies
memleaks(3NCURSES)														memleaks(3NCURSES)

NAME
_nc_freeall _nc_free_and_exit - curses memory-leak checking SYNOPSIS
#include <curses.h> void _nc_freeall(void); void _nc_free_and_exit(int); DESCRIPTION
These functions are used to simplify analysis of memory leaks in the ncurses library. They are normally not available; they must be con- figured into the library at build time using the --disable-leaks option. That compiles-in code that frees memory that normally would not be freed. Any implementation of curses must not free the memory associated with a screen, since (even after calling endwin), it must be available for use in the next call to refresh. There are also chunks of memory held for performance reasons. That makes it hard to analyze curses ap- plications for memory leaks. To work around this, one can build a debugging version of the ncurses library which frees those chunks which it can, and provides these functions to free all of the memory allocated by the ncurses library. The _nc_free_and_exit function is the preferred one since some of the memory which is freed may be required for the application to continue running. Its parameter is the code to pass to the exit routine. RETURN VALUE
These functions do not return a value. PORTABILITY
These functions are not part of the XSI interface. SEE ALSO
ncurses(3NCURSES). memleaks(3NCURSES)
All times are GMT -4. The time now is 01:55 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy