IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 12875


Ignore:
Timestamp:
Apr 18, 2007, 9:21:46 AM (19 years ago)
Author:
eugene
Message:

dropping non-standard includes

Location:
trunk/Ohana
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Ohana/configure.tcsh

    r12874 r12875  
    186186set needincs = "$needincs glob.h"
    187187set needincs = "$needincs jpeglib.h"
    188 set needincs = "$needincs malloc.h"
    189188set needincs = "$needincs math.h"
    190 set needincs = "$needincs memory.h"
    191189set needincs = "$needincs netdb.h"
    192190set needincs = "$needincs netinet/ip.h"
     
    211209set needincs = "$needincs time.h"
    212210set needincs = "$needincs unistd.h"
    213 set needincs = "$needincs values.h"
    214211set needincs = "$needincs zlib.h"
    215212
     
    220217# set needincs = "$needincs stdarg.h" - from std includes (in gcc path)
    221218# set needincs = "$needincs varargs.h" - from std includes (in gcc path)
     219
     220# XXX I was probing for these before, but RHL claims we don't need them.
     221# I suspect they may be needed on older systems a la CFHT.
     222# set needincs = "$needincs malloc.h"
     223# set needincs = "$needincs memory.h"
     224# set needincs = "$needincs values.h"
    222225
    223226# check the hardware architecture:
     
    258261   endif
    259262   set syslibpath = "$syslibpath /sw/lib /usr/local/lib/mysql"
    260    set sysincpath = "$sysincpath /sw/include /usr/include/sys"
     263   set sysincpath = "$sysincpath /sw/include"
    261264   set dlltype = dylib
    262265   breaksw;
  • trunk/Ohana/src/libohana/include/ohana.h

    r10842 r12875  
    11# include <stdio.h>
    22# include <fcntl.h>
    3 # include <malloc.h>
    43# include <math.h>
    54# include <errno.h>
    65# include <time.h>
    7 # include <memory.h>
    86# include <stdlib.h>
    97# include <string.h>
     
    1816# include <readline/history.h>
    1917# include <readline/readline.h>
     18
     19// XXX I was including these before, but RHL claims they are not needed
     20// # include <malloc.h>
     21// # include <memory.h>
    2022
    2123/* OHANA included stuff */
  • trunk/Ohana/src/misc/include/missing_protos.h

    r2417 r12875  
    1313 *                    which depends on this file every time we need to add
    1414 *                    a new prototype for the SunOS machines.
    15  * $Id: missing_protos.h,v 1.1.1.1 2004-11-24 04:39:33 eugene Exp $
     15 * $Id: missing_protos.h,v 1.2 2007-04-18 19:21:46 eugene Exp $
    1616 * $Locker:  $
    1717 *
    1818 * $Log: not supported by cvs2svn $
     19 * Revision 1.1.1.1  2004/11/24 04:39:33  eugene
     20 * importing elixir components
     21 *
    1922 * Revision 1.1.1.1  2001/07/25 02:59:23  eugene
    2023 * import Ohana
     
    146149#include <float.h>             /* for DBL_MIN and DBL_MAX */
    147150#else
    148 #include <values.h>
     151/* XXX RHL claims values.h is not needed
     152 * #include <values.h> */
    149153#ifndef DBL_MIN
    150154#define DBL_MIN MINDOUBLE
  • trunk/Ohana/src/opihi/dimm/sbig/sp_ccdcontrol.c

    r7917 r12875  
    66#include <time.h>
    77#include <fcntl.h>
    8 #include <values.h>
    98#include <sys/stat.h>
    109#include <sys/types.h>
    1110#include "sbig.h"
    1211#include "fh/fh.h" /* CFHT FITS Handling library */
     12
     13// XXX RHL claims this is not needed
     14// #include <values.h>
    1315
    1416#define N_FITS_ENTRIES 33
Note: See TracChangeset for help on using the changeset viewer.