Changeset b71c90 in git for Singular


Ignore:
Timestamp:
Oct 31, 2013, 11:13:19 AM (10 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
394d507dbd806dc1daaca716b6fb11f1172881c1
Parents:
11cbc45221745560c0c7ce183091d7e2709cc6a5
Message:
drop support for HPUX9/10: no test machine
Location:
Singular
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • Singular/extra.cc

    r11cbc4 rb71c90  
    121121#include <kernel/spectrum.h>
    122122#endif
    123 
    124 #if defined(HPUX_10) || defined(HPUX_9)
    125 extern "C" int setenv(const char *name, const char *value, int overwrite);
    126 #endif
    127 
    128123
    129124#ifdef HAVE_PLURAL
  • Singular/fereadl.c

    r11cbc4 rb71c90  
    760760  loop
    761761  {
    762     #if defined(HPUX_9) || defined(HPUX_10)
    763     fe_rl_hdl=dynl_open("libreadline.sl");
    764     if (fe_rl_hdl==NULL)
    765       fe_rl_hdl=dynl_open("/lib/libreadline.sl");
    766     if (fe_rl_hdl==NULL)
    767       fe_rl_hdl=dynl_open("/usr/lib/libreadline.sl");
    768     #else
    769762    fe_rl_hdl=dynl_open("libreadline.so");
    770763    if (fe_rl_hdl==NULL) fe_rl_hdl=dynl_open("libreadline.so.2");
     
    774767    if (fe_rl_hdl==NULL) fe_rl_hdl=dynl_open("libreadline.so.6");
    775768    if (fe_rl_hdl==NULL) fe_rl_hdl=dynl_open("libreadline.so.7");
    776     #endif
    777769    if (fe_rl_hdl==NULL) { return 1;}
    778770
Note: See TracChangeset for help on using the changeset viewer.