Ask a Question related to PERL Miscellaneous, Design and Development.
-
Pacman #1
Compiling Curses in OS X for Perl
A note to anyone wanting to get Curses to compile under OS X 10.2.6.
I had to make some changes to the standard c-config.h hints file, the
old 'darwin' one does not work due to conflicts between some perl
definitions and curses.h definitions namely:
instr
bool
FIELD
here's the c-config.h file I altered:
/* Hint file for the darwin platform.
*
* If this configuration doesn't work, look at the file "c-none.h"
* for how to set the configuration options.
*/
#include <curses.h>
#ifdef C_PANELSUPPORT
#include <panel.h>
#endif
#ifdef C_MENUSUPPORT
#include <menu.h>
#endif
/* OK this is hackish, but it solves the problem. */
#ifdef C_FORMSUPPORT
#include "/usr/include/form.h"
#endif
/* FIX: OS X longname only takes 0 args now */
#define C_LONGNAME
#define C_LONG0ARGS
#undef C_LONG2ARGS
/* FIX: OS X touchline is now 3 args */
#define C_TOUCHLINE
#define C_TOUCH3ARGS
#undef C_TOUCH4ARGS
/* These both get defined in curses.h and then redefined later in
Perl.h */
#undef instr
#undef bool
P-
--
#############
Imagination is more important than knowledge - A. Einstein
Pacman Guest
-
Problem compiling Perl 5.6.1
I'm trying to install perl-5.6.1 on an i386 box running FreeBSD 5.1-RELEASE, It fails, and I don't know what to do next. Here's the error: ... -
Problems compiling Perl 5.6.1
When I try to compile Perl 5.6.1 (can't find any RPMs and, yes, I need 5.6.1), I get the following error: make: Leaving directory... -
Compiling a perl script
From: Dan Anderson <dan@mathjunkies.com> Perl doesn't parse line by line or anything like that. It more or less compiles the whole script+modules... -
compiling Perl code
hi all, I know little about Perl, so I ask the following question. when you compile Perl code, can a PDB(symbols file) be created the way you can... -
Compiling and Installing Perl 5.8.0 on FreeBSD
This is my first post here, so go easy! :-) I get an error when attempting to install Perl 5.8.0 on FreeBSD that leaves me completely clueless. ...



Reply With Quote

